@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: #111;
    overflow-x: hidden;
}

/* Scrollbar */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#ff008c, #7a00ff);
    border-radius: 20px;
}

/* Navbar */

.navbar {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
    font-size: 34px;
    font-weight: 800;
    background: linear-gradient(to right, #ff008c, #7a00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: #111 !important;
    margin-left: 25px;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #ff008c;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.4s;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-main {
    background: linear-gradient(45deg, #ff008c, #7a00ff);
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: 0.4s;
}

.btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 140, 0.35);
}

/* search */

.search-header {
    margin-top: 95px;
    /* navbar ni niche */
    margin-bottom: 20px;
}

.search-input {
    width: 400px;
    height: 50px;
    border: 3px solid #000;
    border-radius: 50px;
    padding: 0 20px;
}

.search-btn {
    width: 55px;
    height: 50px;
    margin-left: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, #ff008c, #7a00ff);
    color: white;
}

.offcanvas {
    width: 280px;
    background: #fff;
}

.offcanvas .nav-link {
    color: #111 !important;
    font-size: 18px;
    font-weight: 600;
    padding: 12px;
    border-radius: 15px;
    transition: .3s;
}

.offcanvas .nav-link:hover {
    background: linear-gradient(45deg, #ff008c, #7a00ff);
    color: white !important;
}

/* Hero */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.blur1 {
    width: 350px;
    height: 350px;
    background: #ff008c;
    position: absolute;
    border-radius: 50%;
    filter: blur(180px);
    top: -100px;
    left: -100px;
    opacity: 0.25;
}

.blur2 {
    width: 350px;
    height: 350px;
    background: #6f00ff;
    position: absolute;
    border-radius: 50%;
    filter: blur(180px);
    bottom: -120px;
    right: -100px;
    opacity: 0.25;
}

.hero h1 {
    font-size: 85px;
    font-weight: 800;
    line-height: 95px;
}

.gradient-text {
    background: linear-gradient(to right, #ff008c, #7a00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    margin-top: 25px;
    font-size: 20px;
    line-height: 35px;
    color: #555;
}

.hero-image {
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    border-radius: 35px;
    box-shadow: 0 20px 80px rgba(255, 0, 140, 0.18);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Stats */

.stats {
    margin-top: 50px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stats h2 {
    font-size: 40px;
    font-weight: 800;
}

.stats p {
    margin: 0;
    color: #666;
}

/* Section */

section {
    padding: 100px 0;
}

.section-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-sub {
    color: #666;
    max-width: 700px;
    margin: auto;
    line-height: 30px;
}

/* Category */

.category-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 35px;
    padding: 40px;
    height: 100%;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: #ff008c;
    filter: blur(90px);
    top: -50px;
    right: -50px;
    opacity: 0;
    transition: 0.4s;
}

.category-card:hover::before {
    opacity: 0.3;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 140, 0.15);
}

.category-card i {
    font-size: 65px;
    color: #ff008c;
}

.category-card h3 {
    margin-top: 25px;
    font-size: 30px;
    font-weight: 700;
}

/* wishlist*/

.product-card {
    position: relative;
}

.wishlist-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    z-index: 100;
}

.wishlist-btn i {
    font-size: 22px;
    color: #555;
}

.text-danger {
    color: red !important;
}

/* Products */

.product-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    transition: 0.4s;
    position: relative;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 140, 0.15);
}

.product-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

.price {
    color: #ff008c;
    font-size: 28px;
    font-weight: 700;
}

/* Banner */

.big-banner {
    background: linear-gradient(45deg, #ff008c, #6a00ff);
    border-radius: 40px;
    padding: 80px 50px;
    position: relative;
    overflow: hidden;
    color: white;
}

.big-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: white;
    opacity: 0.1;
    border-radius: 50%;
    top: -180px;
    right: -100px;
}

.big-banner h1 {
    font-size: 70px;
    font-weight: 800;
}

/* Features */

.feature-box {
    background: #fff;
    padding: 35px;
    border-radius: 30px;
    text-align: center;
    transition: 0.4s;
    height: 100%;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 0, 140, 0.15);
}

.feature-box i {
    font-size: 55px;
    color: #ff008c;
}

/* trending products */

.product-info .d-flex {
    margin-top: 15px;
}

.product-info .btn {
    padding: 12px 0;
    font-weight: 600;
}

.btn-main {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Testimonials */

.testimonial {
    background: #fff;
    padding: 35px;
    border-radius: 30px;
    height: 100%;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}


/* Footer */

/* Footer */

footer {
    padding: 90px 0 30px;
    background: linear-gradient(135deg, #ff008c, #7a00ff);
    color: white;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

footer::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -120px;
    left: -80px;
}

footer h2,
footer h5 {
    color: white;
    font-weight: 700;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-top: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

footer p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.social i {
    font-size: 24px;
    margin-right: 18px;
    cursor: pointer;
    transition: 0.3s;
    color: white;
}

.social i:hover {
    transform: translateY(-5px) scale(1.1);
    color: #ffd6f3;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

footer .gradient-text {
    background: linear-gradient(to right, #ffffff, #ffe0f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive */

@media(max-width:991px) {

    .hero h1 {
        font-size: 55px;
        line-height: 70px;
    }

    .section-title {
        font-size: 45px;
    }

    .big-banner h1 {
        font-size: 45px;
    }

}

/* Brands */

.brands {
    padding: 70px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
}

.brand-slider {
    overflow: hidden;
    white-space: nowrap;
}

.brand-track {
    display: inline-block;
    animation: scroll 18s linear infinite;
}

.brand-track span {
    font-size: 38px;
    font-weight: 700;
    margin-right: 100px;
    color: #777;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.navbar-brand img {
    border-radius: 50%;
    object-fit: cover;
}