* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, serif;
    background: #fff;
    color: #1d1d1d;
    overflow-x: hidden;
}

/* LOGO */

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #111;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text span {
    display: block;
    color: #111;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 4px;
    line-height: 1;
}

.logo-text p {
    margin: 4px 0 0;
    color: #9b7a2d;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* DARK HEADER */

.dark-header .logo-text span {
    color: white;
}

.dark-header .logo-text p {
    color: #d8b35a;
}

/* HEADER */

.main-header {
    width: 100%;
    min-height: 76px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 12px 55px;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1;
}

    .nav-menu a {
        text-decoration: none;
        color: #111;
        font-size: 12px;
        letter-spacing: 2px;
        transition: 0.3s;
        text-transform: uppercase;
        white-space: nowrap;
    }

        .nav-menu a:hover {
            color: #b8860b;
        }

.header-icons {
    display: flex;
    align-items: center;
    gap: 17px;
}

    .header-icons a {
        color: #111;
        font-size: 17px;
        text-decoration: none;
        transition: 0.3s;
    }

        .header-icons a:hover {
            color: #b8860b;
        }

/* HERO IMAGE - works with common hero class names */

.hero,
.home-hero,
.fashion-hero,
.hero-section,
.banner-section {
    width: 100%;
    height: 78vh;
    position: relative;
    overflow: hidden;
}

    .hero img,
    .home-hero img,
    .fashion-hero img,
    .hero-section img,
    .banner-section img {
        width: 100%;
        height: 78vh;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

.hero-divider {
    width: 100%;
    height: 58px;
    background: #f7f7f7;
    position: relative;
    display: flex;
    justify-content: center;
}

.divider-circle {
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: -26px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
}

    .divider-circle i {
        font-size: 17px;
        color: #555;
    }

@media (max-width: 768px) {

    .hero,
    .home-hero,
    .fashion-hero,
    .hero-section,
    .banner-section {
        height: 55vh;
    }

        .hero img,
        .home-hero img,
        .fashion-hero img,
        .hero-section img,
        .banner-section img {
            height: 55vh;
        }
}

/* SECTIONS */

.section {
    width: 100%;
    padding: 55px 30px;
    text-align: center;
    background: #fff;
    position: relative;
}

    .section h2,
    .brands h2 {
        font-size: 24px;
        font-weight: 400;
        letter-spacing: 6px;
        color: #111;
        margin-bottom: 38px;
        position: relative;
        display: inline-block;
        text-transform: uppercase;
    }

        .section h2::after,
        .brands h2::after {
            content: "";
            width: 75px;
            height: 1px;
            background: #c9a46c;
            display: block;
            margin: 15px auto 0;
        }

    .section:nth-child(even) {
        background: #faf8f5;
    }

/* PRODUCTS */

.product-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.product-card {
    overflow: hidden;
    position: relative;
    background: #fff;
}

    .product-card img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: 0.4s ease;
    }

    .product-card:hover img {
        transform: scale(1.03);
    }

    .product-card h4 {
        margin-top: 18px;
        font-size: 12px;
        letter-spacing: 3px;
        font-weight: 500;
        text-transform: uppercase;
    }

    .product-card p {
        margin-top: 8px;
        font-size: 12px;
        letter-spacing: 2px;
    }

    .product-card h5 {
        margin-top: 10px;
        font-size: 12px;
        letter-spacing: 2px;
        font-weight: 400;
        margin-bottom: 8px;
    }

/* DESIGNERS / EDITS */

.designer-grid,
.edit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1240px;
    margin: 0 auto;
}

.designer-card,
.edit-card,
.style-card {
    position: relative;
    overflow: hidden;
    background: #111;
}

    .designer-card img,
    .edit-card img,
    .style-card img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        object-position: center;
        filter: brightness(75%);
        transition: 0.4s;
    }

    .designer-card:hover img,
    .edit-card:hover img,
    .style-card:hover img {
        transform: scale(1.06);
    }

    .designer-info,
    .edit-info,
    .style-card div {
        position: absolute;
        bottom: 38px;
        left: 0;
        width: 100%;
        text-align: center;
        color: #fff;
        padding: 0 15px;
    }

        .designer-info h3,
        .edit-info h3,
        .style-card h3 {
            font-size: 16px;
            letter-spacing: 3px;
            font-weight: 400;
            margin-bottom: 14px;
            text-transform: uppercase;
        }

/* BUTTONS */

button {
    background: #fff;
    border: none;
    padding: 11px 32px;
    font-size: 11px;
    letter-spacing: 3px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

    button:hover {
        background: #111;
        color: #fff;
    }

.view-btn {
    margin-top: 28px;
    background: #111;
    color: #fff;
}

    .view-btn:hover {
        background: #9b7a2d;
    }
.explore-btn {
    display: inline-block;
    padding: 12px 34px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 13px;
    transition: .4s ease;
}

    .explore-btn:hover {
        background: #fff;
        color: #000;
    }
/* SHOP BY STYLE */

.style-section {
    display: grid;
    grid-template-columns: 1fr repeat(3, 1fr);
    padding: 55px 45px;
    align-items: stretch;
    gap: 18px;
    max-width: 1320px;
    margin: 0 auto;
}

.style-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px 22px;
    background: #faf8f5;
}

    .style-text h2 {
        font-size: 24px;
        letter-spacing: 6px;
        font-weight: 400;
        text-transform: uppercase;
    }

    .style-text p {
        font-size: 13px;
        margin-top: 12px;
        line-height: 1.7;
    }

/* BRANDS */

.brands {
    text-align: center;
    padding: 55px 45px;
}

.brand-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 55px;
    flex-wrap: wrap;
    padding: 20px 0;
    font-size: 17px;
    font-style: italic;
}

/* CLIENTS */

.client-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1240px;
    margin: 0 auto;
}

    .client-grid img {
        width: 100%;
        height: 390px;
        object-fit: cover;
        object-position: center;
    }

/* FOOTER */

.main-footer {
    background: #2a1407;
    color: #fff;
    margin-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 55px;
    padding: 70px 70px 55px;
    max-width: 1250px;
    margin: 0 auto;
}

.footer-box h3 {
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.footer-box p {
    color: #ccc;
    line-height: 1.8;
    max-width: 360px;
}

.footer-box a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

    .footer-box a:hover {
        color: #fff;
        padding-left: 4px;
    }

.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 15px;
}

    .social-icons a {
        font-size: 19px;
        color: #fff;
        text-decoration: none;
    }

.footer-bottom {
    border-top: 1px solid #3f2617;
    text-align: center;
    padding: 22px;
    color: #aaa;
    font-size: 13px;
    letter-spacing: 1px;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .main-header {
        padding: 12px 30px;
    }

    .nav-menu {
        gap: 18px;
    }

    .product-card img {
        height: 380px;
    }
}

@media (max-width: 992px) {
    .main-header {
        flex-direction: column;
        gap: 16px;
        padding: 18px 20px;
        position: relative;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        flex: unset;
    }

    .hero,
    .home-hero,
    .fashion-hero,
    .hero-section,
    .banner-section {
        min-height: auto;
    }

        .hero img,
        .home-hero img,
        .fashion-hero img,
        .hero-section img,
        .banner-section img {
            height: 520px;
            min-height: 520px;
        }

    .product-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .designer-grid,
    .edit-grid,
    .client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .style-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 45px 25px;
    }

    .style-text {
        grid-column: 1 / -1;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 55px 35px 45px;
        text-align: center;
    }

    .footer-box p {
        margin: 0 auto;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .logo-img {
        width: 42px;
        height: 42px;
    }

    .logo-text span {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .logo-text p {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .nav-menu a {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .header-icons {
        gap: 14px;
    }

    .hero img,
    .home-hero img,
    .fashion-hero img,
    .hero-section img,
    .banner-section img {
        height: 420px;
        min-height: 420px;
    }

    .section {
        padding: 42px 16px;
    }

        .section h2,
        .brands h2 {
            font-size: 20px;
            letter-spacing: 4px;
            margin-bottom: 30px;
        }

    .product-row,
    .designer-grid,
    .edit-grid,
    .client-grid,
    .style-section {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-card img {
        height: 360px;
    }

    .designer-card img,
    .edit-card img,
    .style-card img,
    .client-grid img {
        height: 330px;
    }

    .brand-row {
        gap: 22px;
        font-size: 15px;
    }

    .footer-container {
        padding: 45px 25px 38px;
    }
}

/* New ARRIVEL */
.page - banner {
    text - align: center;
    padding: 45px 20px 30px;
    background: #fff;
}

.page - banner h1 {
        font - size: 26px;
        letter - spacing: 8px;
        font - weight: 400;
        color: #2b1a10;
        margin - bottom: 14px;
    }

    .page - banner p {
        font - size: 11px;
        letter - spacing: 5px;
        color: #777;
    }

.arrival - page {
    padding: 30px 45px 80px;
    background: #fff;
}

.arrival - top {
    display: flex;
    justify - content: space - between;
    align - items: center;
    margin - bottom: 28px;
}

.grid - icons {
    display: flex;
    gap: 14px;
    color: #777;
    font - size: 14px;
}

.arrival - top p {
    font - size: 12px;
    letter - spacing: 5px;
    color: #333;
}

.arrival - top select {
    border: none;
    background: transparent;
    font - size: 11px;
    letter - spacing: 4px;
    color: #555;
    outline: none;
}

.product - grid {
    display: grid;
    grid - template - columns: repeat(6, 1fr);
    gap: 16px;
}

.product - card {
    position: relative;
    text - align: center;
    overflow: hidden;
    background: #fff;
}

    .product - card img {
        width: 100 %;
        height: 260px;
        object - fit: cover;
        display: block;
        transition: 0.4s ease;
    }

    .product - card:hover img {
        transform: scale(1.05);
    }

.discount {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #b52b2b;
    color: white;
    font - size: 9px;
    letter - spacing: 2px;
    padding: 4px 8px;
    z - index: 2;
}

.product - card h4 {
    margin - top: 10px;
    font - size: 13px;
    letter - spacing: 2px;
    font - weight: 400;
}

.product - card p {
    font - size: 13px;
    color: #5b3a26;
}

.pagination {
    margin - top: 70px;
    display: flex;
    justify - content: center;
    gap: 25px;
    font - size: 12px;
    letter - spacing: 3px;
}

    .pagination span {
        padding: 8px 12px;
        cursor: pointer;
    }

    .pagination.active {
        border - bottom: 1px solid #000;
    }

@media(max - width: 1200px) {
    .product - grid {
        grid - template - columns: repeat(4, 1fr);
    }
}

@media(max - width: 768px) {
    .arrival - page {
        padding: 25px 15px;
    }

    .arrival - top {
        flex - direction: column;
        gap: 18px;
    }

    .product - grid {
        grid - template - columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product - card img {
        height: 220px;
    }

    .page - banner h1 {
        font - size: 22px;
        letter - spacing: 5px;
    }
}

/* NEW ARRIVELS PAGE */
.luxury-arrival {
    display: grid;
    grid-template-columns: 34% 66%;
    min-height: 100vh;
    background: #f7f1e6;
}

/* LEFT PREMIUM PANEL */

.arrival-editorial {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 90px 60px;
    color: #fff;
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.85)), url('/images/new-arrival-banner.jpg');
    background-size: cover;
    background-position: center;
}

    .arrival-editorial .label {
        color: #d6b45f;
        letter-spacing: 6px;
        font-size: 12px;
    }

    .arrival-editorial h1 {
        font-size: 64px;
        line-height: .95;
        letter-spacing: 8px;
        font-weight: 300;
        margin: 35px 0;
    }

    .arrival-editorial p {
        color: #eee;
        line-height: 1.9;
        font-size: 15px;
    }

.editorial-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 38px;
    border: 1px solid #d6b45f;
    color: #fff;
    text-decoration: none;
    letter-spacing: 4px;
    font-size: 12px;
    transition: .3s;
}

    .editorial-btn:hover {
        background: #d6b45f;
        color: #111;
    }

/* RIGHT AREA */

.arrival-products {
    padding: 55px;
}

.arrival-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .arrival-header span {
        color: #9a7a2d;
        letter-spacing: 5px;
        font-size: 12px;
    }

    .arrival-header h2 {
        font-size: 34px;
        font-weight: 300;
        letter-spacing: 4px;
        text-transform: uppercase;
    }

    .arrival-header select {
        background: transparent;
        border: 1px solid #b99b48;
        padding: 13px 24px;
        letter-spacing: 2px;
    }

/* TABS */

.arrival-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 30px 0 40px;
}

    .arrival-tabs button {
        border: 1px solid #c8aa58;
        background: transparent;
        padding: 10px 24px;
        letter-spacing: 2px;
        font-size: 11px;
        cursor: pointer;
        transition: .3s;
    }

        .arrival-tabs button.active,
        .arrival-tabs button:hover {
            background: #111;
            color: #fff;
            border-color: #111;
        }

/* PRODUCT GRID */

.premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.premium-card {
    position: relative;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    transition: .4s;
}

    .premium-card:hover {
        transform: translateY(-8px);
    }

    .premium-card.tall {
        grid-row: span 2;
    }

    .premium-card.wide {
        grid-column: span 2;
    }

    .premium-card img {
        width: 100%;
        height: 390px;
        object-fit: cover;
        transition: .6s;
    }

    .premium-card.tall img {
        height: 720px;
    }

    .premium-card.wide img {
        height: 390px;
    }

    .premium-card:hover img {
        transform: scale(1.08);
    }

.badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #111;
    color: #fff;
    padding: 8px 16px;
    font-size: 10px;
    letter-spacing: 2px;
    z-index: 5;
}

    .badge.gold {
        background: #d6b45f;
        color: #111;
    }

.icon-box {
    position: absolute;
    right: 18px;
    top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 5;
    opacity: 0;
    transform: translateX(20px);
    transition: .4s;
}

.premium-card:hover .icon-box {
    opacity: 1;
    transform: translateX(0);
}

.icon-box i {
    width: 38px;
    height: 38px;
    background: white;
    color: #111;
    display: grid;
    place-items: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.premium-info {
    padding: 26px;
    text-align: center;
}

    .premium-info p {
        color: #9a7a2d;
        letter-spacing: 4px;
        font-size: 11px;
    }

    .premium-info h3 {
        font-size: 17px;
        font-weight: 400;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .premium-info h4 {
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 2px;
    }

    .premium-info del {
        color: #999;
        margin-left: 8px;
    }

    .premium-info a {
        display: inline-block;
        margin-top: 14px;
        padding: 11px 30px;
        background: #111;
        color: white;
        text-decoration: none;
        letter-spacing: 3px;
        font-size: 11px;
        transition: .3s;
    }

        .premium-info a:hover {
            background: #d6b45f;
            color: #111;
        }

/* RESPONSIVE */

@media(max-width: 992px) {
    .luxury-arrival {
        grid-template-columns: 1fr;
    }

    .arrival-editorial {
        position: relative;
        height: auto;
    }
}

@media(max-width: 576px) {
    .arrival-editorial {
        padding: 60px 25px;
    }

        .arrival-editorial h1 {
            font-size: 42px;
        }

    .arrival-products {
        padding: 30px 18px;
    }

    .arrival-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .premium-grid {
        grid-template-columns: 1fr;
    }

    .premium-card.wide {
        grid-column: span 1;
    }

        .premium-card.tall img,
        .premium-card img,
        .premium-card.wide img {
            height: 360px;
        }
}


/* COLLECTION */
.collection-hero {
    height: 420px;
    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.55)), url('/images/collection-banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

    .collection-hero span {
        letter-spacing: 7px;
        font-size: 12px;
        color: #d8b35a;
    }

    .collection-hero h1 {
        font-size: 52px;
        letter-spacing: 12px;
        font-weight: 300;
        margin: 18px 0;
    }

    .collection-hero p {
        letter-spacing: 4px;
        font-size: 14px;
    }

.collections-wrap {
    background: #fbf8f1;
    padding: 70px 70px;
}

.collection-title {
    text-align: center;
    margin-bottom: 45px;
}

    .collection-title span {
        color: #9b7a2d;
        letter-spacing: 5px;
        font-size: 12px;
    }

    .collection-title h2 {
        font-size: 34px;
        font-weight: 300;
        letter-spacing: 5px;
        margin-top: 12px;
        text-transform: uppercase;
    }

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.collection-box {
    height: 360px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

    .collection-box.big {
        grid-column: span 2;
    }

    .collection-box::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.05));
        z-index: 1;
    }

    .collection-box::after {
        content: "";
        position: absolute;
        inset: 18px;
        border: 1px solid rgba(216,179,90,.7);
        opacity: 0;
        transform: scale(.95);
        transition: .4s;
        z-index: 2;
    }

    .collection-box:hover::after {
        opacity: 1;
        transform: scale(1);
    }

    .collection-box:hover {
        background-size: 115%;
    }

.collection-info {
    position: absolute;
    left: 35px;
    bottom: 35px;
    z-index: 3;
    color: white;
    max-width: 420px;
}

    .collection-info span {
        color: #d8b35a;
        font-size: 11px;
        letter-spacing: 4px;
        text-transform: uppercase;
    }

    .collection-info h3 {
        font-size: 28px;
        letter-spacing: 4px;
        font-weight: 300;
        text-transform: uppercase;
        margin: 10px 0;
    }

    .collection-info p {
        font-size: 14px;
        margin-bottom: 22px;
        color: #eee;
    }

    .collection-info a {
        display: inline-block;
        padding: 10px 28px;
        border: 1px solid #d8b35a;
        color: #fff;
        text-decoration: none;
        letter-spacing: 3px;
        font-size: 12px;
        text-transform: uppercase;
        transition: .3s;
    }

        .collection-info a:hover {
            background: #d8b35a;
            color: #111;
        }

.wedding {
    background-image: url('/images/wedding.jpg');
}

.navratri {
    background-image: url('/images/navratri.jpg');
}

.festive {
    background-image: url('/images/festive.jpg');
}

.bridal {
    background-image: url('/images/bridal.jpg');
}

.saree {
    background-image: url('/images/saree.jpg');
}

.ready {
    background-image: url('/images/ready.jpg');
}

@media(max-width: 992px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-box.big {
        grid-column: span 1;
    }
}

@media(max-width: 576px) {
    .collections-wrap {
        padding: 45px 18px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .collection-hero h1 {
        font-size: 30px;
        letter-spacing: 6px;
    }

    .collection-hero {
        height: 300px;
    }

    .collection-box {
        height: 320px;
    }
}

/* SHOP PAGE */
.shop-hero {
    height: 330px;
    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.65)), url('/images/shop-banner.jpg');
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
    text-align: center;
    color: white;
}

    .shop-hero span {
        color: #d8b35a;
        letter-spacing: 7px;
        font-size: 12px;
    }

    .shop-hero h1 {
        font-size: 46px;
        letter-spacing: 10px;
        font-weight: 300;
        margin: 15px 0;
    }

    .shop-hero p {
        letter-spacing: 4px;
        font-size: 13px;
    }

.shop-page {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 35px;
    background: #fbf8f1;
    padding: 55px;
}

.shop-filter {
    background: #111;
    color: white;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 90px;
}

    .shop-filter h3 {
        color: #d8b35a;
        letter-spacing: 4px;
        font-size: 14px;
        margin-bottom: 30px;
    }

.filter-box {
    border-top: 1px solid rgba(255,255,255,.18);
    padding: 22px 0;
}

    .filter-box h4 {
        font-size: 13px;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }

    .filter-box label {
        display: block;
        color: #ddd;
        font-size: 13px;
        margin-bottom: 12px;
    }

.shop-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

    .shop-top p {
        letter-spacing: 4px;
        font-size: 12px;
    }

    .shop-top select {
        padding: 12px 22px;
        border: 1px solid #b99b48;
        background: transparent;
        letter-spacing: 2px;
    }

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.shop-card {
    background: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(0,0,0,.08);
    transition: .4s;
}

    .shop-card:hover {
        transform: translateY(-8px);
    }

.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #111;
    color: white;
    padding: 7px 15px;
    font-size: 10px;
    letter-spacing: 2px;
    z-index: 3;
}

.shop-img {
    height: 390px;
    overflow: hidden;
    position: relative;
}

    .shop-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

.shop-card:hover img {
    transform: scale(1.08);
}

.shop-actions {
    position: absolute;
    right: 15px;
    top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: .4s;
}

.shop-card:hover .shop-actions {
    opacity: 1;
    transform: translateX(0);
}

.shop-actions button {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0,0,0,.2);
}

.shop-info {
    padding: 24px;
    text-align: center;
}

    .shop-info p {
        color: #9b7a2d;
        letter-spacing: 4px;
        font-size: 11px;
    }

    .shop-info h3 {
        font-size: 16px;
        letter-spacing: 2px;
        font-weight: 400;
        text-transform: uppercase;
    }

    .shop-info h4 {
        font-size: 13px;
        letter-spacing: 2px;
        font-weight: 400;
    }

    .shop-info del {
        color: #999;
        margin-left: 8px;
    }

    .shop-info a {
        display: inline-block;
        margin-top: 14px;
        padding: 11px 28px;
        background: #111;
        color: white;
        text-decoration: none;
        letter-spacing: 3px;
        font-size: 11px;
        transition: .3s;
    }

        .shop-info a:hover {
            background: #d8b35a;
            color: #111;
        }

@media(max-width: 992px) {
    .shop-page {
        grid-template-columns: 1fr;
    }

    .shop-filter {
        position: relative;
        top: 0;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px) {
    .shop-page {
        padding: 30px 18px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }

    .shop-hero h1 {
        font-size: 28px;
        letter-spacing: 6px;
    }

    .shop-img {
        height: 340px;
    }
}


/* ADD TO CART PAGE */
.cart-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 65% 35%;
    background: #fbf8f1;
    padding: 60px;
    gap: 35px;
}

.cart-title span,
.summary-card > span {
    color: #9b7a2d;
    letter-spacing: 5px;
    font-size: 12px;
}

.cart-title h1 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 10px 0;
}

.cart-title p {
    color: #555;
    margin-bottom: 35px;
}

.cart-item {
    display: grid;
    grid-template-columns: 150px 1fr 130px;
    gap: 25px;
    background: white;
    padding: 22px;
    margin-bottom: 24px;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    position: relative;
    overflow: hidden;
}

    .cart-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 5px;
        height: 100%;
        background: #d8b35a;
    }

    .cart-item img {
        width: 150px;
        height: 190px;
        object-fit: cover;
    }

.cart-info span {
    color: #9b7a2d;
    font-size: 11px;
    letter-spacing: 4px;
}

.cart-info h3 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 12px 0;
}

.cart-info p {
    color: #777;
    font-size: 14px;
}

.qty-box {
    display: flex;
    width: 130px;
    border: 1px solid #d8b35a;
    margin-top: 22px;
}

    .qty-box button {
        width: 38px;
        border: none;
        background: #111;
        color: white;
        font-size: 18px;
        cursor: pointer;
    }

    .qty-box input {
        width: 54px;
        border: none;
        text-align: center;
        outline: none;
    }

.cart-price {
    text-align: right;
}

    .cart-price h4 {
        font-size: 18px;
        font-weight: 400;
        letter-spacing: 2px;
    }

    .cart-price del {
        color: #999;
        font-size: 13px;
    }

    .cart-price a {
        display: block;
        margin-top: 35px;
        color: #9b1c1c;
        font-size: 13px;
        text-decoration: none;
    }

.summary-card {
    background: #111;
    color: white;
    padding: 38px;
    position: sticky;
    top: 90px;
    box-shadow: 0 25px 55px rgba(0,0,0,.25);
}

    .summary-card h2 {
        font-size: 30px;
        font-weight: 300;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin: 12px 0 30px;
    }

.summary-row,
.total-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.15);
    padding: 15px 0;
}

    .summary-row p,
    .total-row p {
        color: #ddd;
    }

.green {
    color: #69d18b;
}

.coupon-box {
    display: flex;
    margin: 25px 0;
    border: 1px solid #d8b35a;
}

    .coupon-box input {
        flex: 1;
        padding: 14px;
        background: transparent;
        border: none;
        color: white;
        outline: none;
    }

        .coupon-box input::placeholder {
            color: #bbb;
        }

    .coupon-box button {
        background: #d8b35a;
        border: none;
        padding: 0 18px;
        cursor: pointer;
        letter-spacing: 2px;
    }

.total-row h3 {
    color: #d8b35a;
    font-size: 26px;
    font-weight: 400;
}

.checkout-btn {
    display: block;
    text-align: center;
    background: #d8b35a;
    color: #111;
    padding: 16px;
    margin-top: 30px;
    text-decoration: none;
    letter-spacing: 4px;
    font-weight: 600;
    transition: .3s;
}

    .checkout-btn:hover {
        background: white;
    }

.continue-btn {
    display: block;
    text-align: center;
    color: white;
    margin-top: 18px;
    letter-spacing: 3px;
    font-size: 12px;
    text-decoration: none;
}

.trust-box {
    margin-top: 28px;
    display: grid;
    gap: 10px;
    color: #ddd;
    font-size: 13px;
}

@media(max-width: 992px) {
    .cart-page {
        grid-template-columns: 1fr;
    }

    .summary-card {
        position: relative;
        top: 0;
    }
}

@media(max-width: 576px) {
    .cart-page {
        padding: 30px 18px;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

        .cart-item img {
            width: 100%;
            height: 330px;
        }

    .cart-price {
        text-align: left;
    }
}

/* ADD TO CART PAGE VIEW */
* {
    box-sizing: border-box;
}

.cart-page {
    min-height: 100vh;
    padding: 60px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 35px;
    background: radial-gradient(circle at top left, rgba(216,179,90,.22), transparent 35%), linear-gradient(135deg, #fbf8f1, #efe2c8);
    font-family: 'Poppins', sans-serif;
}

/* LEFT */

.cart-head {
    margin-bottom: 35px;
}

    .cart-head span,
    .summary-box > span {
        color: #9b7a2d;
        font-size: 12px;
        letter-spacing: 5px;
        text-transform: uppercase;
    }

    .cart-head h1 {
        margin: 12px 0 8px;
        font-size: 44px;
        font-weight: 300;
        letter-spacing: 5px;
        text-transform: uppercase;
        color: #111;
    }

    .cart-head p {
        color: #666;
        font-size: 15px;
    }

.cart-card {
    position: relative;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 135px;
    gap: 30px;
    padding: 28px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(216,179,90,.55);
    box-shadow: 0 30px 80px rgba(0,0,0,.13);
    overflow: hidden;
}

    .cart-card::before {
        content: "";
        position: absolute;
        inset: 15px;
        border: 1px solid rgba(216,179,90,.28);
        pointer-events: none;
    }

.cart-image,
.cart-content,
.price-box {
    position: relative;
    z-index: 2;
}

.cart-image {
    position: relative;
    overflow: hidden;
}

    .cart-image img {
        width: 220px;
        height: 330px;
        object-fit: cover;
        display: block;
        transition: .5s;
    }

.cart-card:hover .cart-image img {
    transform: scale(1.06);
}

.cart-image span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: #111;
    color: #fff;
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 2px;
}

.brand {
    color: #9b7a2d;
    font-size: 11px;
    letter-spacing: 4px;
}

.cart-content h2 {
    margin: 10px 0;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111;
}

.desc {
    color: #666;
    font-size: 14px;
}

/* CUSTOMIZATION */

.custom-box {
    margin-top: 24px;
    padding: 24px;
    background: #fbf8f1;
    border-left: 4px solid #d8b35a;
}

    .custom-box h3 {
        margin-bottom: 18px;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

.form-grid,
.measure-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

    .form-grid select,
    .measure-grid input,
    .custom-box textarea {
        width: 100%;
        padding: 13px 14px;
        border: 1px solid #d8b35a;
        background: #fff;
        color: #111;
        outline: none;
        font-size: 13px;
        transition: .25s;
    }

        .form-grid select:focus,
        .measure-grid input:focus,
        .custom-box textarea:focus {
            border-color: #111;
            box-shadow: 0 0 0 3px rgba(216,179,90,.18);
        }

.measure-title {
    margin: 18px 0 10px;
    color: #9b7a2d;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.custom-box textarea {
    height: 95px;
    resize: none;
    margin-top: 14px;
}

/* QTY */

.cart-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin-top: 24px;
}

.qty {
    display: flex;
    align-items: center;
    height: 46px;
    border: 1px solid #d8b35a;
    background: #fff;
}

    .qty button {
        width: 46px;
        height: 46px;
        border: none;
        background: #111;
        color: #fff;
        font-size: 22px;
        line-height: 1;
        cursor: pointer;
    }

    .qty input {
        width: 58px;
        height: 46px;
        border: none;
        outline: none;
        text-align: center;
        font-size: 15px;
        font-weight: 500;
        background: #fff;
    }

.wishlist {
    height: 46px;
    padding: 0 28px;
    border: 1px solid #111;
    background: transparent;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s;
}

    .wishlist:hover {
        background: #111;
        color: #fff;
    }

@media(max-width: 576px) {
    .cart-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .qty,
    .wishlist {
        width: 100%;
    }

        .qty input {
            flex: 1;
        }
}
/* PRICE */

.price-box {
    text-align: right;
}

    .price-box h3 {
        font-size: 22px;
        font-weight: 400;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .price-box del {
        color: #999;
        font-size: 13px;
    }

    .price-box p {
        margin-top: 8px;
        color: #258a42;
        font-size: 13px;
    }

    .price-box a {
        display: inline-block;
        margin-top: 45px;
        color: #9b1c1c;
        font-size: 13px;
        text-decoration: none;
    }

/* SUMMARY */

.summary-box {
    position: sticky;
    top: 90px;
    height: fit-content;
    padding: 40px;
    color: #fff;
    background: linear-gradient(rgba(0,0,0,.88), rgba(0,0,0,.94)), url('/images/checkout-bg.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

    .summary-box h2 {
        margin: 14px 0 30px;
        font-size: 31px;
        font-weight: 300;
        letter-spacing: 4px;
        text-transform: uppercase;
    }

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

    .summary-row p {
        color: #ddd;
        margin: 0;
    }

    .summary-row strong {
        font-weight: 400;
    }

.green {
    color: #6ee58d;
}

.coupon {
    display: flex;
    margin: 25px 0;
    border: 1px solid #d8b35a;
}

    .coupon input {
        min-width: 0;
        flex: 1;
        padding: 14px;
        background: transparent;
        border: none;
        color: #fff;
        outline: none;
    }

        .coupon input::placeholder {
            color: #bbb;
        }

    .coupon button {
        border: none;
        background: #d8b35a;
        color: #111;
        padding: 0 18px;
        letter-spacing: 2px;
        cursor: pointer;
    }

.total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
}

    .total p {
        color: #ddd;
        margin: 0;
    }

    .total h3 {
        color: #d8b35a;
        font-size: 28px;
        font-weight: 400;
        margin: 0;
    }

.buy-btn {
    display: block;
    padding: 17px;
    background: #d8b35a;
    color: #111;
    text-align: center;
    text-decoration: none;
    letter-spacing: 4px;
    font-weight: 600;
    transition: .3s;
}

    .buy-btn:hover {
        background: #fff;
    }

.continue-btn {
    display: block;
    margin-top: 18px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 12px;
}

.trust {
    margin-top: 30px;
    display: grid;
    gap: 9px;
}

    .trust p {
        margin: 0;
        color: #ddd;
        font-size: 13px;
    }

/* RESPONSIVE */

@media (max-width: 1100px) {
    .cart-page {
        grid-template-columns: 1fr;
    }

    .summary-box {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .cart-page {
        padding: 35px 20px;
    }

    .cart-card {
        grid-template-columns: 190px 1fr;
    }

    .price-box {
        grid-column: span 2;
        text-align: left;
    }

    .cart-image img {
        width: 190px;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .cart-head h1 {
        font-size: 30px;
        letter-spacing: 3px;
    }

    .cart-card {
        grid-template-columns: 1fr;
        padding: 20px;
    }

        .cart-card::before {
            inset: 10px;
        }

    .cart-image img {
        width: 100%;
        height: 370px;
    }

    .form-grid,
    .measure-grid {
        grid-template-columns: 1fr;
    }

    .price-box {
        grid-column: span 1;
    }

    .summary-box {
        padding: 30px 22px;
    }

        .summary-box h2 {
            font-size: 25px;
        }
}
/* RELATED PRODUCTS */
.related-products {
    margin-top: 80px;
    position: relative;
}

.related-heading {
    text-align: center;
    margin-bottom: 45px;
}

    .related-heading span {
        color: #9b7a2d;
        letter-spacing: 5px;
        font-size: 12px;
        text-transform: uppercase;
    }

    .related-heading h2 {
        margin-top: 10px;
        font-size: 38px;
        font-weight: 300;
        letter-spacing: 5px;
        text-transform: uppercase;
    }

/* SLIDER */

.slider-wrapper {
    position: relative;
}

.related-slider {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 25px;
    scrollbar-width: none;
}

    .related-slider::-webkit-scrollbar {
        display: none;
    }

/* CARD */

.related-card {
    min-width: 270px;
    max-width: 270px;
    background: white;
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
    transition: .4s;
    border-radius: 4px;
}

    .related-card:hover {
        transform: translateY(-8px);
    }

.related-img {
    position: relative;
    overflow: hidden;
}

    .related-img img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        transition: .6s;
    }

.related-card:hover .related-img img {
    transform: scale(1.08);
}

.related-img span {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #111;
    color: white;
    padding: 8px 15px;
    font-size: 10px;
    letter-spacing: 2px;
    z-index: 3;
}

/* ICONS */

.related-icons {
    position: absolute;
    right: 14px;
    top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: .4s;
}

.related-card:hover .related-icons {
    opacity: 1;
    transform: translateX(0);
}

.related-icons i {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0,0,0,.18);
    transition: .3s;
}

    .related-icons i:hover {
        background: #111;
        color: white;
    }

/* INFO */

.related-info {
    padding: 24px;
    text-align: center;
}

    .related-info p {
        color: #9b7a2d;
        letter-spacing: 4px;
        font-size: 11px;
    }

    .related-info h3 {
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin: 12px 0;
        line-height: 1.5;
    }

    .related-info h4 {
        font-size: 13px;
        letter-spacing: 2px;
        font-weight: 400;
    }

    .related-info del {
        color: #999;
        margin-left: 8px;
    }

    .related-info a {
        display: inline-block;
        margin-top: 18px;
        padding: 12px 28px;
        background: #111;
        color: white;
        text-decoration: none;
        font-size: 11px;
        letter-spacing: 3px;
        transition: .3s;
    }

        .related-info a:hover {
            background: #d8b35a;
            color: #111;
        }

/* SLIDER BUTTONS */

.slider-btn {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #111;
    color: white;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(0,0,0,.25);
    transition: .3s;
}

    .slider-btn:hover {
        background: #d8b35a;
        color: #111;
    }

    .slider-btn.prev {
        left: -18px;
    }

    .slider-btn.next {
        right: -18px;
    }

/* MOBILE */

@media(max-width:576px) {

    .related-heading h2 {
        font-size: 28px;
    }

    .related-card {
        min-width: 82%;
        max-width: 82%;
    }

    .related-img img {
        height: 340px;
    }

    .slider-btn.prev {
        left: 5px;
    }

    .slider-btn.next {
        right: 5px;
    }
}

/* ABOUT US  */

.about-hero {
    height: 350px;
    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.65)), url('/images/about-banner.jpg');
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
    text-align: center;
    color: white;
}

    .about-hero span {
        color: #d8b35a;
        letter-spacing: 7px;
        font-size: 12px;
    }

    .about-hero h1 {
        font-size: 52px;
        letter-spacing: 12px;
        font-weight: 300;
        margin: 15px 0;
    }

.about-section {
    padding: 70px;
    background: #fbf8f1;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 55px;
    align-items: center;
}

.about-img img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
}

.about-content span {
    color: #9b7a2d;
    letter-spacing: 5px;
    font-size: 12px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 18px 0;
}

.about-content p {
    color: #666;
    line-height: 1.9;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
    margin: 30px 0;
}

    .about-points div {
        background: white;
        padding: 16px;
        border-left: 3px solid #d8b35a;
    }

.about-content a {
    display: inline-block;
    background: #111;
    color: white;
    padding: 14px 35px;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 12px;
}

    .about-content a:hover {
        background: #d8b35a;
        color: #111;
    }

.about-stats {
    background: #111;
    color: white;
    padding: 45px 70px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    text-align: center;
}

    .about-stats h3 {
        color: #d8b35a;
        font-size: 34px;
        font-weight: 300;
    }

    .about-stats p {
        letter-spacing: 2px;
        font-size: 13px;
    }

@media(max-width:768px) {
    .about-section,
    .about-stats {
        grid-template-columns: 1fr;
        padding: 40px 22px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 34px;
    }
}

/* MOBILE */

@media(max-width:992px) {

    .related-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px) {

    .related-grid {
        grid-template-columns: 1fr;
    }

    .related-img img {
        height: 340px;
    }

    .related-heading h2 {
        font-size: 28px;
    }
}

/* CONTACT */
.contact-hero {
    height: 350px;
    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.65)), url('/images/contact-banner.jpg');
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
    text-align: center;
    color: white;
}

    .contact-hero span,
    .contact-info span {
        color: #d8b35a;
        letter-spacing: 6px;
        font-size: 12px;
    }

    .contact-hero h1 {
        font-size: 52px;
        letter-spacing: 12px;
        font-weight: 300;
        margin: 15px 0;
    }

.contact-page {
    padding: 70px;
    background: #fbf8f1;
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 45px;
}

.contact-info {
    background: #111;
    color: white;
    padding: 45px;
}

    .contact-info h2 {
        font-size: 38px;
        font-weight: 300;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin: 18px 0;
    }

    .contact-info > p {
        color: #ddd;
        line-height: 1.8;
        margin-bottom: 35px;
    }

.info-box {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

    .info-box i {
        color: #d8b35a;
        font-size: 22px;
    }

    .info-box h4 {
        letter-spacing: 3px;
        font-size: 13px;
        text-transform: uppercase;
    }

    .info-box p {
        color: #ddd;
        margin: 5px 0 0;
    }

.contact-form {
    background: white;
    padding: 45px;
    box-shadow: 0 25px 60px rgba(0,0,0,.1);
}

    .contact-form h3 {
        font-size: 30px;
        font-weight: 300;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-bottom: 28px;
    }

.form-row {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-bottom: 16px;
    padding: 15px;
    border: 1px solid #d8b35a;
    outline: none;
    background: #fbf8f1;
}

.contact-form textarea {
    height: 140px;
    resize: none;
}

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
        border-color: #111;
    }

.contact-form button {
    background: #111;
    color: white;
    border: none;
    padding: 15px 38px;
    letter-spacing: 3px;
    cursor: pointer;
}

    .contact-form button:hover {
        background: #d8b35a;
        color: #111;
    }

@media(max-width:768px) {
    .contact-page {
        grid-template-columns: 1fr;
        padding: 40px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 34px;
    }
}

/* LUXURY PROFILE */

.lux-profile {
    background: #f7f3ee;
    min-height: 100vh;
    padding-bottom: 80px;
}

.profile-banner {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
}

    .profile-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
}

.profile-wrapper {
    width: 92%;
    margin: auto;
    margin-top: -120px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 30px;
}

.profile-sidebar {
    background: #fff;
    border-radius: 30px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
}

.profile-image {
    position: relative;
    width: 140px;
    height: 140px;
    margin: auto;
    margin-bottom: 20px;
}

    .profile-image img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 6px solid #fff;
        box-shadow: 0 10px 30px rgba(0,0,0,.12);
    }

.vip-badge {
    position: absolute;
    bottom: 0;
    right: -10px;
    background: #b58a3c;
    color: white;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 10px;
    letter-spacing: 2px;
}

.profile-sidebar h2 {
    font-size: 28px;
    letter-spacing: 2px;
    color: #2b1a10;
    margin-bottom: 10px;
}

.profile-sidebar p {
    color: #777;
    font-size: 14px;
    margin-bottom: 6px;
}

.membership-box,
.reward-box {
    margin-top: 25px;
    padding: 18px;
    border-radius: 20px;
    background: #faf7f2;
}

    .membership-box h4,
    .reward-box h4 {
        font-size: 12px;
        letter-spacing: 3px;
        color: #888;
        margin-bottom: 10px;
    }

    .membership-box span,
    .reward-box span {
        font-size: 18px;
        color: #b58a3c;
        font-weight: 600;
    }

.profile-buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .profile-buttons a {
        text-decoration: none;
        padding: 14px;
        border-radius: 50px;
        background: #2b1a10;
        color: white;
        letter-spacing: 2px;
        font-size: 11px;
        transition: .3s;
    }

        .profile-buttons a:hover {
            transform: translateY(-4px);
            background: #b58a3c;
        }

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.stat-card {
    background: white;
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: .3s;
}

    .stat-card:hover {
        transform: translateY(-6px);
    }

    .stat-card h3 {
        font-size: 34px;
        color: #b58a3c;
        margin-bottom: 10px;
    }

    .stat-card span {
        letter-spacing: 3px;
        font-size: 11px;
        color: #666;
    }

.feature-section {
    background: white;
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

    .feature-section h3 {
        margin-bottom: 30px;
        letter-spacing: 4px;
        font-size: 16px;
        color: #2b1a10;
    }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.feature-card {
    background: #faf7f2;
    padding: 30px 20px;
    border-radius: 25px;
    text-align: center;
    transition: .3s;
}

    .feature-card:hover {
        background: #b58a3c;
        color: white;
        transform: translateY(-5px);
    }

    .feature-card i {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .feature-card span {
        display: block;
        letter-spacing: 2px;
        font-size: 11px;
    }

.fashion-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.fashion-card {
    border-radius: 25px;
    overflow: hidden;
    background: #faf7f2;
    transition: .4s;
}

    .fashion-card:hover {
        transform: translateY(-8px);
    }

    .fashion-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    .fashion-card span {
        display: block;
        padding: 20px 20px 5px;
        font-size: 10px;
        letter-spacing: 3px;
        color: #999;
    }

    .fashion-card h4 {
        padding: 0 20px 25px;
        font-size: 18px;
        color: #2b1a10;
    }

@media(max-width:992px) {

    .profile-wrapper {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .fashion-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .profile-sidebar {
        padding: 25px;
    }
}

/* PROFILE INNER PAGES */

.profile-inner-page {
    background: #f7f3ee;
    padding: 70px 45px;
    min-height: 85vh;
}

.profile-page-head {
    text-align: center;
    margin-bottom: 45px;
}

    .profile-page-head span {
        color: #b58a3c;
        letter-spacing: 5px;
        font-size: 12px;
    }

    .profile-page-head h1 {
        margin-top: 12px;
        font-size: 34px;
        letter-spacing: 6px;
        font-weight: 400;
        color: #2b1a10;
    }

.lux-card {
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 15px 45px rgba(0,0,0,.07);
}

.lux-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.lux-input {
    width: 100%;
    height: 55px;
    border: 1px solid #e2ddd5;
    border-radius: 15px;
    padding: 0 18px;
    margin-bottom: 18px;
    outline: none;
}

.lux-btn {
    background: #2b1a10;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 40px;
    letter-spacing: 3px;
    font-size: 12px;
    transition: .3s;
}

    .lux-btn:hover {
        background: #b58a3c;
        transform: translateY(-3px);
    }

.item-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,.07);
    transition: .4s;
}

    .item-card:hover {
        transform: translateY(-7px);
    }

    .item-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

.item-info {
    padding: 22px;
}

    .item-info span {
        color: #b58a3c;
        font-size: 11px;
        letter-spacing: 3px;
    }

    .item-info h3 {
        font-size: 18px;
        margin: 10px 0;
        color: #2b1a10;
    }

    .item-info p {
        color: #777;
        font-size: 14px;
    }

.order-box,
.address-box,
.payment-box,
.coupon-box,
.track-box {
    background: #fff;
    border-radius: 25px;
    padding: 28px;
    margin-bottom: 22px;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
    border-left: 5px solid #b58a3c;
}

.status {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 30px;
    background: #f1e6d3;
    color: #8a5d12;
    font-size: 11px;
    letter-spacing: 2px;
}

.profile-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.small-btn {
    border: 1px solid #2b1a10;
    color: #2b1a10;
    background: transparent;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: 2px;
    transition: .3s;
}

    .small-btn:hover {
        background: #2b1a10;
        color: #fff;
    }

@media(max-width:992px) {
    .lux-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px) {
    .profile-inner-page {
        padding: 45px 18px;
    }

    .lux-grid {
        grid-template-columns: 1fr;
    }

    .profile-page-head h1 {
        font-size: 25px;
        letter-spacing: 4px;
    }
}
.stat-card,
.feature-card,
.fashion-card {
    text-decoration: none;
    color: inherit;
}