/* =====================================================
   FASHION CIRCLE
   PREMIUM FASHION E-COMMERCE DESIGN
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #111111;
    --dark: #191919;
    --cream: #f8f5ef;
    --white: #ffffff;
    --gold: #c7a15a;
    --gold-dark: #a9823f;
    --gray: #777777;
    --light-gray: #eeeeea;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cream);
    color: var(--black);
}


/* =====================================================
   NAVBAR
===================================================== */

.fashion-navbar {
    background: rgba(17, 17, 17, 0.98);
    padding: 18px 0;
    border-bottom: 1px solid rgba(199, 161, 90, 0.25);
}

.navbar-brand {
    color: white !important;
    font-size: 25px;
    letter-spacing: 4px;
    font-weight: 700;
}

.nav-link {
    color: #ffffff !important;
    font-size: 14px;
    letter-spacing: 1px;
    margin-left: 18px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.4);
}


/* =====================================================
   HERO
===================================================== */

.premium-hero {
    min-height: 650px;

    background-image:
        url("assets/images/hero.png");
    background-size: cover;
    background-position: center;

    position: relative;

    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.78),
            rgba(0,0,0,0.42),
            rgba(0,0,0,0.18)
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;

    margin: auto;

    padding: 80px 30px;

    color: white;
}

.hero-small-title {
    color: var(--gold);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 4px;
}

.hero-content h1 {
    font-size: 76px;
    line-height: 1.05;

    font-weight: 700;

    margin: 20px 0;
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-content p {
    max-width: 550px;

    font-size: 18px;
    line-height: 1.8;

    color: #eeeeee;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn,
.hero-outline-btn {
    display: inline-block;

    padding: 15px 30px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.5px;

    transition: 0.3s;
}

.hero-btn {
    background: var(--gold);
    color: var(--black);
}

.hero-btn:hover {
    background: white;
    color: black;
}

.hero-outline-btn {
    border: 1px solid white;
    color: white;
}

.hero-outline-btn:hover {
    background: white;
    color: black;
}


/* =====================================================
   SECTION TITLES
===================================================== */

.premium-section-title {
    text-align: center;

    max-width: 700px;

    margin: 0 auto 45px;
}

.premium-section-title span {
    color: var(--gold-dark);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
}

.premium-section-title h2 {
    font-size: 42px;

    font-weight: 700;

    margin: 10px 0 12px;
}

.premium-section-title p {
    color: var(--gray);

    font-size: 15px;
}


/* =====================================================
   CATEGORY SECTION
===================================================== */

.categories-section {
    padding: 90px 0;
    background: var(--cream);
}

.category-image-card {
    display: block;

    height: 420px;

    position: relative;

    overflow: hidden;

    text-decoration: none;

    background: #ddd;
}

.category-image-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.category-image-card:hover img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 28px;

    color: white;

    background:
        linear-gradient(
            transparent 25%,
            rgba(0,0,0,0.8)
        );
}

.category-overlay span {
    color: var(--gold);

    font-size: 10px;
    letter-spacing: 3px;
    font-weight: bold;
}

.category-overlay h3 {
    font-size: 30px;

    margin: 5px 0;
}

.category-overlay p {
    color: #eeeeee;

    margin-bottom: 15px;

    font-size: 13px;
}

.category-overlay strong {
    font-size: 11px;
    letter-spacing: 1.5px;

    color: white;
}

.category-image-card:hover .category-overlay strong {
    color: var(--gold);
}


/* =====================================================
   COLLECTION BANNER
===================================================== */

.collection-banner {
    min-height: 500px;

    position: relative;

    background-image:
        url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;
    background-position: center;
}

.collection-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.48);
}

.collection-content {
    position: relative;
    z-index: 2;

    padding: 110px 0;

    color: white;

    max-width: 580px;
}

.collection-content span {
    color: var(--gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
}

.collection-content h2 {
    font-size: 52px;
    line-height: 1.1;

    margin: 18px 0;
}

.collection-content p {
    color: #eeeeee;

    font-size: 16px;
    line-height: 1.8;

    margin-bottom: 30px;
}

.collection-content a {
    display: inline-block;

    background: var(--gold);
    color: var(--black);

    padding: 14px 28px;

    text-decoration: none;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 1.5px;

    transition: 0.3s;
}

.collection-content a:hover {
    background: white;
}


/* =====================================================
   PRODUCTS
===================================================== */

.products-section {
    padding: 90px 0;

    background: #ffffff;
}

.premium-product-card {
    background: white;

    border: 1px solid #e8e5df;

    height: 100%;

    transition: 0.4s;
}

.premium-product-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.12);
}

.product-image-wrapper {
    height: 330px;

    position: relative;

    overflow: hidden;

    background: #eeeeea;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.6s;
}

.premium-product-card:hover
.product-image-wrapper img {
    transform: scale(1.06);
}

.no-product-image {
    height: 100%;

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 55px;
}

.discount-label {
    position: absolute;

    top: 15px;
    left: 15px;

    background: var(--black);
    color: white;

    padding: 7px 11px;

    font-size: 10px;
    font-weight: bold;

    letter-spacing: 1px;
}

.product-hover {
    position: absolute;

    inset: 0;

    display: flex;

    justify-content: center;
    align-items: center;

    background: rgba(0,0,0,0.38);

    opacity: 0;

    transition: 0.4s;
}

.premium-product-card:hover .product-hover {
    opacity: 1;
}

.product-hover a {
    background: white;
    color: black;

    padding: 12px 20px;

    text-decoration: none;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 1px;
}

.product-hover a:hover {
    background: var(--gold);
}

.premium-product-info {
    padding: 22px;
}

.premium-product-info small {
    color: var(--gold-dark);

    text-transform: uppercase;

    font-size: 10px;

    letter-spacing: 1.5px;
}

.premium-product-info h3 {
    font-size: 18px;

    margin: 8px 0 18px;

    font-weight: 600;
}

.product-bottom {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 10px;
}

.product-price {
    font-size: 19px;

    font-weight: bold;
}

.stock-status {
    color: #36815a;

    font-size: 9px;
    font-weight: bold;

    letter-spacing: 1px;
}

.out-stock {
    color: #b33b3b;

    font-size: 9px;
    font-weight: bold;
}

.product-view-btn {
    display: block;

    text-align: center;

    margin-top: 18px;

    border: 1px solid #222;

    color: #222;

    padding: 11px;

    text-decoration: none;

    font-size: 10px;
    font-weight: bold;

    letter-spacing: 1.5px;

    transition: 0.3s;
}

.product-view-btn:hover {
    background: var(--black);
    color: white;
}

.view-all-wrapper {
    text-align: center;

    margin-top: 50px;
}

.premium-dark-btn {
    display: inline-block;

    padding: 15px 32px;

    background: var(--black);
    color: white;

    text-decoration: none;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 1.5px;

    transition: 0.3s;
}

.premium-dark-btn:hover {
    background: var(--gold);
    color: black;
}

.empty-products {
    text-align: center;

    padding: 60px;
}

.empty-products div {
    font-size: 60px;
    margin-bottom: 15px;
}

.empty-products h4 {
    margin-bottom: 10px;
}

.empty-products p {
    color: var(--gray);
}


/* =====================================================
   FEATURES
===================================================== */

.features-section {
    padding: 90px 0;

    background: var(--cream);
}

.feature-card {
    text-align: center;

    background: white;

    padding: 45px 30px;

    height: 100%;

    border: 1px solid #e8e4dc;

    transition: 0.4s;
}

.feature-card:hover {
    transform: translateY(-6px);

    border-color: var(--gold);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--gold);

    border-radius: 50%;

    font-size: 25px;
}

.feature-card h3 {
    font-size: 20px;

    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);

    font-size: 14px;

    line-height: 1.7;

    margin: 0;
}


/* =====================================================
   NEWSLETTER
===================================================== */

.newsletter-section {
    padding: 80px 0;

    background: white;
}

.newsletter-box {
    background: var(--black);

    color: white;

    text-align: center;

    padding: 70px 30px;
}

.newsletter-box span {
    color: var(--gold);

    font-size: 11px;

    letter-spacing: 3px;

    font-weight: bold;
}

.newsletter-box h2 {
    font-size: 44px;

    margin: 12px 0;
}

.newsletter-box p {
    color: #cccccc;

    max-width: 550px;

    margin: 0 auto 28px;

    line-height: 1.7;
}

.newsletter-box a {
    display: inline-block;

    background: var(--gold);

    color: black;

    padding: 14px 30px;

    text-decoration: none;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1.5px;
}

.newsletter-box a:hover {
    background: white;
}


/* =====================================================
   FOOTER
===================================================== */

.premium-footer {
    background: #111111;

    color: white;

    padding: 70px 0 25px;
}

.premium-footer h2 {
    font-size: 25px;

    letter-spacing: 4px;

    margin-bottom: 20px;
}

.premium-footer h4 {
    color: var(--gold);

    font-size: 12px;

    letter-spacing: 2px;

    margin-bottom: 20px;
}

.premium-footer p {
    color: #aaaaaa;

    max-width: 450px;

    line-height: 1.8;

    font-size: 14px;
}

.premium-footer a {
    display: block;

    color: #aaaaaa;

    text-decoration: none;

    margin-bottom: 12px;

    font-size: 13px;

    transition: 0.3s;
}

.premium-footer a:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 55px;

    padding-top: 22px;

    border-top: 1px solid #333;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #777;

    font-size: 11px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .hero-content h1 {
        font-size: 58px;
    }

    .premium-hero {
        min-height: 600px;
    }

    .category-image-card {
        height: 380px;
    }

    .collection-content h2 {
        font-size: 45px;
    }

}


@media (max-width: 768px) {

    .navbar-brand {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .premium-hero {
        min-height: 600px;

        background-position: center;
    }

    .hero-content {
        padding: 60px 25px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .premium-section-title h2 {
        font-size: 34px;
    }

    .category-image-card {
        height: 420px;
    }

    .collection-banner {
        min-height: 500px;
    }

    .collection-content {
        padding: 100px 20px;
    }

    .collection-content h2 {
        font-size: 40px;
    }

    .product-image-wrapper {
        height: 360px;
    }

    .newsletter-box h2 {
        font-size: 36px;
    }

    .footer-bottom {
        flex-direction: column;
    }

}


@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-small-title {
        font-size: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-btn,
    .hero-outline-btn {
        width: 100%;
        text-align: center;
    }

    .premium-section-title h2 {
        font-size: 30px;
    }

    .collection-content h2 {
        font-size: 34px;
    }

}