/* =====================================================
   GLOBAL
===================================================== */

:root {
    --brown: #5c2d1f;
    --dark-brown: #35160f;
    --gold: #b58a45;
    --light-gold: #d8bd86;
    --cream: #f8f3ea;
    --white: #ffffff;
    --text: #29211d;
    --muted: #766b65;
    --border: #e6ddd2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

.section {
    padding: 100px 7%;
}


/* =====================================================
   ANNOUNCEMENT
===================================================== */

.announcement {
    min-height: 38px;
    padding: 8px 5%;
    background: var(--dark-brown);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 11px;
    letter-spacing: 1px;
}

.announcement p {
    margin: 0;
}

.announcement i {
    margin-right: 6px;
    color: var(--light-gold);
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    width: 86%;
    max-width: 1400px;
    margin: auto;

    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* LOGO */

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: var(--brown);
}

.logo span {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 700;
}

.logo small {
    font-size: 8px;
    letter-spacing: 4px;
    text-align: center;
    margin-top: 6px;
}


/* NAV MENU */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-menu a {
    font-size: 12px;
    font-weight: 500;
    position: relative;
    padding: 34px 0;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 25px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: .3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}


/* NAV ICONS */

.nav-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-icons button,
.nav-icons a {
    border: 0;
    background: transparent;
    font-size: 17px;
    color: var(--text);
}

.cart-icon {
    position: relative;
}

.cart-icon span {
    position: absolute;

    top: -10px;
    right: -12px;

    width: 18px;
    height: 18px;

    background: var(--brown);
    color: #fff;

    border-radius: 50%;

    display: grid;
    place-items: center;

    font-size: 9px;
}

.mobile-menu {
    display: none;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;

    background-image:
        linear-gradient(
            90deg,
            rgba(20, 15, 8, 0.88) 0%,
            rgba(20, 15, 8, 0.65) 45%,
            rgba(20, 15, 8, 0.15) 100%
        ),
        url("img/background-desktop.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-content {
    width: 100%;
    max-width: 650px;
    padding: 80px 7%;
    color: #fff;
}

.hero h1 {
    margin: 20px 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 6vw, 88px);
    line-height: 0.95;
    font-weight: 600;
}

.hero h1 em,
.section-heading em,
.combo-content em,
.hamper-content em,
.story-content em,
.royal-content em {
    color: var(--light-gold);
    font-family: "Cormorant Garamond", serif;
}

.hero p {
    max-width: 550px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 25px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: var(--gold);
    color: #fff;
}

.btn-primary:hover {
    background: #967037;
    transform: translateY(-2px);
}

.btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: #fff;
    color: var(--brown);
}

.btn-dark {
    background: var(--dark-brown);
    color: #fff;
}

.btn-dark:hover {
    background: var(--brown);
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 45px;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
}

.hero-features i {
    color: var(--light-gold);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .hero {
        min-height: 85vh;
        background-position: center;
    }

    .hero-content {
        padding: 70px 6%;
    }

    .hero h1 {
        font-size: clamp(45px, 12vw, 65px);
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .hero-features {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 30px;
    }
}
/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 55px;
}

.section-heading > span {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 600;
}

.section-heading h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    line-height: 1.05;
    margin: 12px 0;
}

.section-heading h2 em {
    color: var(--brown);
}

.section-heading p {
    color: var(--muted);
    font-size: 13px;
}


/* =====================================================
   CATEGORIES
===================================================== */

.categories {
    background: var(--cream);
}

.category-grid {
    max-width: 1300px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: #fff;
    border: 1px solid var(--border);
    transition: .3s;
}

.category-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(50,30,20,.1);
}

.category-image {
    height: 260px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-size: 55px;
}

.category-image span {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    margin-top: 15px;
}

.floral {
    background: linear-gradient(145deg,#ead8cf,#caa69a);
}

.woody {
    background: linear-gradient(145deg,#d8c1a1,#9a714c);
}

.spiritual {
    background: linear-gradient(145deg,#ded5c5,#a89a7e);
}

.premium {
    background: linear-gradient(145deg,#d6c39c,#8f7040);
}

.category-info {
    padding: 20px;
}

.category-info h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
}

.category-info p {
    color: var(--muted);
    font-size: 11px;
}

.category-info span {
    display: block;
    margin-top: 10px;
    color: var(--gold);
    font-size: 11px;
}


/* =====================================================
   PRODUCTS
===================================================== */

.products-section {
    background: #fff;
}

.product-grid {
    max-width: 1300px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    border: 1px solid var(--border);
    background: #fff;
    transition: .3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(50,30,20,.08);
}

.product-image {
    height: 340px;
    position: relative;
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding-bottom: 35px;

    background:
        radial-gradient(
            circle at 50% 30%,
            #e4c4a2,
            #b07954 50%,
            #5a3022
        );

    color: #fff;

    font-family: "Cormorant Garamond", serif;
    font-size: 35px;
}

.product-placeholder.sandal {
    background:
        radial-gradient(circle,#dbc6a2,#9b724b,#4b2c20);
}

.product-placeholder.jasmine {
    background:
        radial-gradient(circle,#f1e5c8,#c6a66e,#66462e);
}

.product-placeholder.oud {
    background:
        radial-gradient(circle,#b49b78,#664c35,#281812);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;

    padding: 5px 10px;

    background: var(--brown);
    color: #fff;

    font-size: 8px;
    letter-spacing: 1px;
    z-index: 2;
}

.product-badge.new {
    background: var(--gold);
}

.wishlist {
    position: absolute;
    right: 15px;
    top: 15px;

    width: 35px;
    height: 35px;

    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,.9);

    z-index: 2;
}

.product-details {
    padding: 20px;
}

.product-category {
    font-size: 9px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-details h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    margin: 5px 0;
}

.rating {
    color: var(--gold);
    font-size: 11px;
}

.rating span {
    color: var(--muted);
    margin-left: 5px;
}

.price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
}

.price strong {
    font-size: 18px;
}

.price del {
    color: #aaa;
    font-size: 11px;
}

.price span {
    color: #5b7947;
    font-size: 9px;
    font-weight: 600;
}

.add-cart {
    width: 100%;

    border: 1px solid var(--brown);
    background: transparent;
    color: var(--brown);

    padding: 11px;

    font-size: 11px;
    font-weight: 600;

    transition: .3s;
}

.add-cart:hover {
    background: var(--brown);
    color: #fff;
}

.center-button {
    text-align: center;
    margin-top: 50px;
}


/* =====================================================
   COMBO
===================================================== */

.combo-section {
    padding: 100px 8%;

    background:
        linear-gradient(
            90deg,
            #3a1b13,
            #6a3d28
        );

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;
}

.combo-content {
    max-width: 550px;
}

.combo-content > span,
.hamper-content > span,
.story-content > span {
    color: var(--light-gold);
    font-size: 10px;
    letter-spacing: 3px;
}

.combo-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 60px;
    line-height: 1;
    margin: 15px 0;
}

.combo-content p {
    color: rgba(255,255,255,.7);
    font-size: 13px;
}

.combo-price {
    margin: 25px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.combo-price strong {
    font-size: 32px;
}

.combo-price del {
    color: rgba(255,255,255,.5);
}

.combo-price span {
    background: var(--gold);
    padding: 5px 9px;
    font-size: 9px;
}

.combo-products {
    display: flex;
    align-items: center;
    gap: 12px;
}

.combo-box {
    width: 145px;
    height: 220px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding-bottom: 20px;

    background:
        linear-gradient(
            160deg,
            #dfc09b,
            #6e422c
        );

    box-shadow: 0 15px 30px rgba(0,0,0,.2);

    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
}

.plus {
    color: var(--light-gold);
    font-size: 25px;
}


/* =====================================================
   HAMPER
===================================================== */

.hamper-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hamper-image {
    min-height: 500px;
}

.hamper-placeholder {
    height: 100%;

    min-height: 500px;

    background:
        radial-gradient(
            circle at center,
            #dfc49b,
            #9a704c,
            #3d2016
        );

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-family: "Cormorant Garamond", serif;
    font-size: 35px;
}

.hamper-placeholder i {
    font-size: 75px;
    margin-bottom: 20px;
}

.hamper-content h2,
.story-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    line-height: 1;
    margin: 15px 0 25px;
}

.hamper-content h2 em,
.story-content h2 em {
    color: var(--brown);
}

.hamper-content p,
.story-content p {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 20px;
}

.hamper-content ul {
    list-style: none;
    margin: 25px 0;
}

.hamper-content li {
    margin: 12px 0;
    font-size: 12px;
}

.hamper-content li i {
    color: var(--gold);
    margin-right: 10px;
}


/* =====================================================
   WHY US
===================================================== */

.why-section {
    padding: 100px 7%;
    background: var(--cream);
}

.why-grid {
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.why-card {
    text-align: center;
    padding: 35px 25px;

    border-right: 1px solid var(--border);
}

.why-card:last-child {
    border-right: 0;
}

.why-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: #fff;
    color: var(--gold);

    font-size: 22px;
}

.why-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
}

.why-card p {
    color: var(--muted);
    font-size: 11px;
    margin-top: 8px;
}


/* =====================================================
   STORY
===================================================== */

.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.story-content {
    max-width: 600px;
}

.text-link {
    display: inline-flex;
    gap: 10px;
    color: var(--brown);
    font-size: 12px;
    font-weight: 600;

    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
}

.story-statistics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.story-statistics div {
    min-height: 180px;

    padding: 30px;

    background: var(--cream);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-statistics strong {
    font-family: "Cormorant Garamond", serif;
    color: var(--brown);
    font-size: 50px;
    line-height: 1;
}

.story-statistics span {
    color: var(--muted);
    font-size: 11px;
    margin-top: 10px;
}


/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonials {
    background: #faf8f4;
}

.testimonial-grid {
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border: 1px solid var(--border);
}

.quote {
    font-family: Georgia, serif;
    font-size: 60px;
    color: var(--light-gold);
    line-height: .6;
}

.testimonial-card p {
    color: var(--muted);
    font-size: 12px;
    margin: 15px 0 25px;
}

.customer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customer-avatar {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: var(--brown);
    color: #fff;

    display: grid;
    place-items: center;

    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
}

.customer strong,
.customer span {
    display: block;
}

.customer strong {
    font-size: 11px;
}

.customer span {
    color: var(--muted);
    font-size: 9px;
}


/* =====================================================
   ROYAL CLUB
===================================================== */

.royal-section {
    padding: 110px 7%;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #35160f,
            #6d3e27
        );

    color: #fff;
}

.royal-content {
    max-width: 650px;
    margin: auto;
}

.royal-content > span {
    color: var(--light-gold);
    font-size: 10px;
    letter-spacing: 3px;
}

.royal-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 62px;
    margin: 15px 0;
}

.royal-content p {
    color: rgba(255,255,255,.7);
    font-size: 13px;
}

.email-box {
    max-width: 520px;

    margin: 30px auto 12px;

    display: flex;

    background: #fff;
    padding: 5px;
}

.email-box input {
    flex: 1;

    border: 0;
    outline: 0;

    padding: 13px 15px;

    font-size: 11px;
}

.email-box button {
    border: 0;

    background: var(--gold);
    color: #fff;

    padding: 0 20px;

    font-size: 11px;
}

.royal-content small {
    color: rgba(255,255,255,.5);
    font-size: 9px;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #21100c;
    color: #fff;
    padding: 70px 7% 0;
}

.footer-container {
    max-width: 1300px;
    margin: auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;

    gap: 60px;

    padding-bottom: 55px;
}

.footer .logo {
    color: #fff;
}

.footer-brand p {
    color: rgba(255,255,255,.55);
    max-width: 300px;
    font-size: 11px;
    margin: 20px 0;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;

    border: 1px solid rgba(255,255,255,.2);

    display: grid;
    place-items: center;

    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    color: var(--light-gold);
    margin-bottom: 8px;
}

.footer-column a,
.footer-column p {
    color: rgba(255,255,255,.55);
    font-size: 10px;
}

.footer-column a:hover {
    color: #fff;
}

.footer-column i {
    color: var(--gold);
    width: 20px;
}

.footer-bottom {
    max-width: 1300px;
    margin: auto;

    padding: 20px 0;

    border-top: 1px solid rgba(255,255,255,.1);

    display: flex;
    justify-content: space-between;

    color: rgba(255,255,255,.4);

    font-size: 9px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}


/* =====================================================
   CART TOAST
===================================================== */

.cart-toast {
    position: fixed;

    right: 25px;
    bottom: 25px;

    background: #fff;
    color: var(--text);

    padding: 15px 20px;

    box-shadow: 0 10px 35px rgba(0,0,0,.18);

    border-left: 3px solid var(--gold);

    transform: translateY(150px);
    opacity: 0;

    transition: .4s;

    z-index: 9999;

    font-size: 11px;
}

.cart-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.cart-toast i {
    color: #5b7947;
    margin-right: 8px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 10px;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .combo-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .combo-products {
        width: 100%;
        justify-content: center;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-card:nth-child(2) {
        border-right: 0;
    }

    .why-card {
        border-bottom: 1px solid var(--border);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 800px) {

    .announcement {
        display: none;
    }

    .nav-container {
        min-height: 75px;
    }

    .nav-menu {
        display: none;

        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        background: #fff;

        flex-direction: column;
        align-items: flex-start;

        padding: 25px 7%;

        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu a {
        padding: 8px 0;
    }

    .nav-menu a::after {
        bottom: 0;
    }

    .mobile-menu {
        display: block !important;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-features {
        flex-wrap: wrap;
    }

    .hamper-section,
    .story-section {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    .section {
        padding: 70px 5%;
    }

    .nav-container {
        width: 90%;
    }

    .logo span {
        font-size: 27px;
    }

    .nav-icons {
        gap: 12px;
    }

    .hero {
        padding: 70px 5%;
    }

    .hero h1 {
        font-size: 55px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-features {
        gap: 15px;
    }

    .section-heading h2 {
        font-size: 42px;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .category-image {
        height: 220px;
    }

    .combo-section {
        padding: 70px 5%;
    }

    .combo-content h2,
    .hamper-content h2,
    .story-content h2 {
        font-size: 46px;
    }

    .combo-products {
        gap: 5px;
    }

    .combo-box {
        width: 90px;
        height: 150px;
        font-size: 17px;
    }

    .plus {
        font-size: 18px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        border-right: 0;
    }

    .story-statistics {
        grid-template-columns: 1fr 1fr;
    }

    .story-statistics div {
        min-height: 130px;
    }

    .story-statistics strong {
        font-size: 38px;
    }

    .email-box {
        flex-direction: column;
        gap: 5px;
        background: transparent;
    }

    .email-box input,
    .email-box button {
        min-height: 48px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }

}


/* =====================================================
   ABOUT HERO
===================================================== */

.about-hero {

    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 80px 7%;

    color: #fff;

    background:
        linear-gradient(
            rgba(53,22,15,.88),
            rgba(53,22,15,.88)
        ),
        radial-gradient(
            circle at center,
            #c19a62,
            #70432d 50%,
            #35160f
        );
}


.about-hero-content {
    max-width: 750px;
}


.about-hero span {

    color: #d8bd86;

    font-size: 10px;

    letter-spacing: 4px;
}


.about-hero h1 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(55px, 7vw, 82px);

    line-height: .9;

    margin: 18px 0;
}


.about-hero h1 em {

    color: #d8bd86;

}


.about-hero p {

    max-width: 600px;

    margin: auto;

    color:
        rgba(255,255,255,.7);

    font-size: 13px;

}


/* =====================================================
   STORY SECTION
===================================================== */

.about-story {

    padding: 100px 7%;

    background: #fff;

}


.about-story-container {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;

}


/* STORY VISUAL */

.about-story-visual {

    min-height: 550px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #d7bd8e,
            #8a5d40 55%,
            #3c2015
        );

}


.about-story-card {

    width: 250px;

    height: 340px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    color: #fff;

    background:
        linear-gradient(
            150deg,
            #d5b47d,
            #70432d
        );

    box-shadow:
        0 25px 50px
        rgba(0,0,0,.25);

}


.about-story-card i {

    font-size: 65px;

    color: #f3dfb4;

    margin-bottom: 15px;

}


.about-story-card h3 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 35px;

    margin: 0;

}


.about-story-card small {

    letter-spacing: 3px;

    font-size: 8px;

}


/* DECORATION */

.story-circle {

    position: absolute;

    width: 130px;
    height: 130px;

    border:
        1px solid
        rgba(255,255,255,.35);

    border-radius: 50%;

    top: 40px;
    left: 40px;

}


.story-circle.two {

    width: 90px;
    height: 90px;

    top: auto;
    left: auto;

    right: 45px;
    bottom: 45px;

}


/* STORY CONTENT */

.about-story-content span {

    color: #b58a45;

    font-size: 10px;

    letter-spacing: 3px;
}


.about-story-content h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 58px;

    line-height: .95;

    margin: 15px 0 25px;

}


.about-story-content h2 em {

    color: #5c2d1f;

}


.about-story-content p {

    color: #766b65;

    font-size: 12px;

    line-height: 1.9;

    margin-bottom: 15px;

}


.story-signature {

    margin-top: 30px;

    display: flex;

    align-items: center;

    gap: 15px;

}


.story-signature-line {

    width: 55px;

    height: 1px;

    background: #b58a45;

}


.story-signature strong {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 20px;

}


/* =====================================================
   MISSION
===================================================== */

.about-mission {

    padding: 90px 7%;

    background: #faf8f4;

}


.about-section-heading {

    max-width: 650px;

    margin:
        0 auto 55px;

    text-align: center;

}


.about-section-heading span {

    color: #b58a45;

    font-size: 10px;

    letter-spacing: 3px;

}


.about-section-heading h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 54px;

    line-height: 1;

    margin: 12px 0;

}


.about-section-heading h2 em {

    color: #5c2d1f;

}


.about-section-heading p {

    color: #766b65;

    font-size: 12px;

}


/* MISSION CARDS */

.mission-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.mission-card {

    padding: 45px 30px;

    text-align: center;

    background: #fff;

    border:
        1px solid #e6ddd2;

    transition: .3s;

}


.mission-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 15px 35px
        rgba(50,30,20,.08);

}


.mission-icon {

    width: 70px;
    height: 70px;

    margin:
        0 auto 20px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #b58a45;

    border:
        1px solid #d8bd86;

    font-size: 25px;

}


.mission-card h3 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 27px;

    margin-bottom: 10px;

}


.mission-card p {

    color: #766b65;

    font-size: 10px;

    line-height: 1.8;

}


/* =====================================================
   VALUES SECTION
===================================================== */

.about-values {

    padding: 100px 7%;

    background: #fff;

}


.values-container {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;

}


.values-content span {

    color: #b58a45;

    font-size: 10px;

    letter-spacing: 3px;

}


.values-content h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 55px;

    line-height: 1;

    margin: 15px 0 30px;

}


.values-content h2 em {

    color: #5c2d1f;

}


.value-item {

    display: flex;

    gap: 20px;

    padding: 18px 0;

    border-bottom:
        1px solid #e6ddd2;

}


.value-number {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 25px;

    color: #b58a45;

}


.value-item h3 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 23px;

    margin: 0 0 5px;

}


.value-item p {

    color: #766b65;

    font-size: 10px;

    margin: 0;

}


/* VALUES VISUAL */

.values-visual {

    min-height: 500px;

    padding: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #35160f,
            #7b4d33
        );

    position: relative;

    overflow: hidden;

}


.values-visual::before {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border:
        1px solid
        rgba(216,189,134,.4);

    border-radius: 50%;

}


.values-visual-content {

    position: relative;

    text-align: center;

    color: #fff;

}


.values-visual-content i {

    font-size: 60px;

    color: #d8bd86;

    margin-bottom: 20px;

}


.values-visual-content h3 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 45px;

    margin: 0;

}


.values-visual-content p {

    color:
        rgba(255,255,255,.65);

    font-size: 11px;

}


/* =====================================================
   STATS
===================================================== */

.about-stats {

    padding: 65px 7%;

    background: #5c2d1f;

    color: #fff;

}


.stats-grid {

    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

}


.stat {

    text-align: center;

    padding: 15px;

    border-right:
        1px solid
        rgba(255,255,255,.15);

}


.stat:last-child {

    border-right: 0;

}


.stat strong {

    display: block;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 45px;

    color: #d8bd86;

}


.stat span {

    color:
        rgba(255,255,255,.65);

    font-size: 9px;

    letter-spacing: 1px;

    text-transform:
        uppercase;

}


/* =====================================================
   CTA
===================================================== */

.about-cta {

    padding: 100px 7%;

    text-align: center;

    background: #faf8f4;

}


.about-cta span {

    color: #b58a45;

    font-size: 10px;

    letter-spacing: 3px;

}


.about-cta h2 {

    max-width: 750px;

    margin:
        15px auto 20px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(45px, 6vw, 65px);

    line-height: 1;

}


.about-cta h2 em {

    color: #5c2d1f;

}


.about-cta p {

    max-width: 550px;

    margin:
        0 auto 30px;

    color: #766b65;

    font-size: 12px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:900px) {

    .about-story-container,
    .values-container {

        grid-template-columns: 1fr;

    }

    .mission-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

    .stats-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

    .stat {

        border-bottom:
            1px solid
            rgba(255,255,255,.15);

    }

}


@media(max-width:600px) {

    .about-story,
    .about-values {

        padding:
            70px 5%;

    }

    .about-story-visual {

        min-height: 430px;

    }

    .about-story-content h2,
    .values-content h2 {

        font-size: 45px;

    }

    .mission-grid {

        grid-template-columns: 1fr;

    }

    .stats-grid {

        grid-template-columns: 1fr 1fr;

    }

    .stat strong {

        font-size: 35px;

    }

    .values-visual {

        min-height: 400px;

    }

}

/* =====================================================
   ACCOUNT HERO
===================================================== */

.account-hero {

    min-height: 360px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 70px 7%;

    color: #fff;

    background:
        radial-gradient(
            circle at center,
            #8a5b3a,
            #5c2d1f 48%,
            #35160f
        );

}


.account-hero-content {

    max-width: 700px;

}


.account-hero-icon {

    color: #d8bd86;

    font-size: 30px;

    margin-bottom: 15px;

}


.account-hero span {

    color: #d8bd86;

    font-size: 10px;

    letter-spacing: 4px;

}


.account-hero h1 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(55px, 7vw, 80px);

    line-height: .9;

    margin: 15px 0;

}


.account-hero h1 em {

    color: #d8bd86;

}


.account-hero p {

    color:
        rgba(255,255,255,.65);

    font-size: 11px;

}


/* =====================================================
   ACCOUNT AREA
===================================================== */

.account-section {

    padding: 90px 7%;

    background: #faf8f4;

}


.account-container {

    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 55px;

    align-items: center;

}


/* =====================================================
   BENEFITS
===================================================== */

.account-benefits {

    padding-right: 20px;

}


.account-benefits > span {

    color: #b58a45;

    font-size: 10px;

    letter-spacing: 3px;

}


.account-benefits h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 52px;

    line-height: .95;

    margin: 15px 0 20px;

}


.account-benefits h2 em {

    color: #5c2d1f;

}


.account-benefits > p {

    color: #766b65;

    font-size: 11px;

    line-height: 1.8;

    margin-bottom: 30px;

}


.account-benefit {

    display: flex;

    gap: 15px;

    margin-bottom: 22px;

}


.account-benefit-icon {

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border-radius: 50%;

    border:
        1px solid #d8bd86;

    display: grid;

    place-items: center;

    color: #b58a45;

}


.account-benefit h3 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 21px;

    margin: 0 0 3px;

}


.account-benefit p {

    color: #766b65;

    font-size: 9px;

    margin: 0;

    line-height: 1.6;

}


/* =====================================================
   ACCOUNT CARD
===================================================== */

.account-card {

    background: #fff;

    border:
        1px solid #e5dbd0;

    padding: 45px;

    box-shadow:
        0 20px 50px
        rgba(50,30,20,.06);

}


.account-tabs {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    border-bottom:
        1px solid #e5dbd0;

    margin-bottom: 30px;

}


.account-tab {

    padding: 13px;

    border: 0;

    background: transparent;

    color: #766b65;

    cursor: pointer;

    font-family: Poppins, sans-serif;

    font-size: 10px;

    letter-spacing: 1px;

}


.account-tab.active {

    color: #5c2d1f;

    border-bottom:
        2px solid #b58a45;

}


/* FORM */

.account-form {

    display: none;

}


.account-form.active {

    display: block;

}


.account-form h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 38px;

    margin: 0 0 8px;

}


.account-form > p {

    color: #766b65;

    font-size: 9px;

    margin-bottom: 25px;

}


.form-group {

    margin-bottom: 17px;

}


.form-group label {

    display: block;

    margin-bottom: 7px;

    color: #3d302a;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.form-group input {

    width: 100%;

    box-sizing: border-box;

    padding: 13px;

    border:
        1px solid #ddd2c7;

    background: #fcfaf7;

    outline: none;

    font-family: Poppins, sans-serif;

    font-size: 10px;

}


.form-group input:focus {

    border-color: #b58a45;

    background: #fff;

}


/* PASSWORD */

.password-field {

    position: relative;

}


.password-field input {

    padding-right: 45px;

}


.password-toggle {

    position: absolute;

    right: 13px;

    top: 50%;

    transform:
        translateY(-50%);

    border: 0;

    background: transparent;

    color: #8d7b6d;

    cursor: pointer;

}


/* REMEMBER */

.form-options {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin: 8px 0 22px;

}


.remember {

    display: flex;

    align-items: center;

    gap: 6px;

    color: #766b65;

    font-size: 9px;

}


.remember input {

    accent-color: #5c2d1f;

}


.forgot {

    color: #9b713c;

    text-decoration: none;

    font-size: 9px;

}


/* BUTTON */

.account-submit {

    width: 100%;

    border: 0;

    padding: 14px;

    background: #5c2d1f;

    color: #fff;

    cursor: pointer;

    font-family: Poppins, sans-serif;

    font-size: 10px;

    letter-spacing: 1px;

    transition: .3s;

}


.account-submit:hover {

    background: #35160f;

}


/* DIVIDER */

.account-divider {

    display: flex;

    align-items: center;

    gap: 12px;

    margin: 25px 0;

    color: #a49385;

    font-size: 8px;

}


.account-divider::before,
.account-divider::after {

    content: "";

    height: 1px;

    background: #e5dbd0;

    flex: 1;

}


/* SOCIAL */

.social-login {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;

}


.social-login button {

    padding: 12px;

    border:
        1px solid #ddd2c7;

    background: #fff;

    color: #4d4039;

    cursor: pointer;

    font-family: Poppins, sans-serif;

    font-size: 9px;

}


.social-login i {

    margin-right: 6px;

}


/* SUCCESS */

.account-message {

    display: none;

    padding: 12px;

    margin-top: 15px;

    background: #edf5e8;

    color: #4d703d;

    font-size: 9px;

}


.account-message.show {

    display: block;

}


/* =====================================================
   ROYAL CLUB BANNER
===================================================== */

.account-royal {

    padding: 80px 7%;

    background: #fff;

}


.account-royal-box {

    max-width: 1100px;

    margin: auto;

    padding: 55px;

    background:
        linear-gradient(
            120deg,
            #35160f,
            #74472e
        );

    color: #fff;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

}


.account-royal-box span {

    color: #d8bd86;

    font-size: 9px;

    letter-spacing: 3px;

}


.account-royal-box h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 48px;

    line-height: 1;

    margin: 12px 0;

}


.account-royal-box h2 em {

    color: #d8bd86;

}


.account-royal-box p {

    color:
        rgba(255,255,255,.65);

    font-size: 10px;

    max-width: 600px;

}


.royal-crown {

    width: 120px;
    height: 120px;

    flex-shrink: 0;

    border:
        1px solid
        rgba(216,189,134,.5);

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: #d8bd86;

    font-size: 40px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:900px) {

    .account-container {

        grid-template-columns: 1fr;

    }

    .account-benefits {

        padding-right: 0;

    }

}


@media(max-width:600px) {

    .account-section {

        padding: 60px 5%;

    }

    .account-card {

        padding: 30px 20px;

    }

    .account-royal-box {

        padding: 40px 25px;

        flex-direction: column;

        align-items: flex-start;

    }

    .account-royal-box h2 {

        font-size: 40px;

    }

    .royal-crown {

        width: 90px;
        height: 90px;

        font-size: 30px;

    }

    .social-login {

        grid-template-columns: 1fr;

    }

}

/* =====================================================
   COMBO HERO
===================================================== */

.combo-hero {

    min-height: 430px;

    padding: 80px 7%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: #fff;

    background:
        linear-gradient(
            rgba(53,22,15,.88),
            rgba(53,22,15,.88)
        ),
        radial-gradient(
            circle at center,
            #c19a62,
            #70432d 50%,
            #35160f
        );
}


.combo-hero-content {
    max-width: 750px;
}


.combo-hero span {
    color: #d8bd86;

    font-size: 10px;

    letter-spacing: 4px;
}


.combo-hero h1 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(55px, 7vw, 82px);

    line-height: .9;

    margin: 18px 0;
}


.combo-hero h1 em {

    color: #d8bd86;

}


.combo-hero p {

    max-width: 570px;

    margin: auto;

    color:
        rgba(255,255,255,.7);

    font-size: 13px;

}


/* =====================================================
   OFFER STRIP
===================================================== */

.combo-offer-strip {

    background: #b58a45;

    color: #fff;

    padding: 14px 5%;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 20px;

    text-align: center;

    font-size: 11px;

    letter-spacing: 1px;

}


/* =====================================================
   COMBO SECTION
===================================================== */

.combo-products-section {

    padding: 90px 7%;

    background: #faf8f4;

}


.combo-heading {

    text-align: center;

    max-width: 650px;

    margin:
        0 auto 55px;

}


.combo-heading span {

    color: #b58a45;

    font-size: 10px;

    letter-spacing: 3px;

}


.combo-heading h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 54px;

    line-height: 1;

    margin: 12px 0;

}


.combo-heading h2 em {

    color: #5c2d1f;

}


.combo-heading p {

    color: #766b65;

    font-size: 12px;

}


/* =====================================================
   COMBO GRID
===================================================== */

.combo-grid {

    max-width: 1300px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


/* =====================================================
   COMBO CARD
===================================================== */

.combo-card {

    background: #fff;

    border:
        1px solid #e6ddd2;

    transition: .3s;

}


.combo-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 18px 40px
        rgba(50,30,20,.12);

}


/* IMAGE */

.combo-image {

    height: 350px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    overflow: hidden;

}


.combo-image.one {

    background:
        radial-gradient(
            circle,
            #e1c4a0,
            #9c694a,
            #48271b
        );

}


.combo-image.two {

    background:
        radial-gradient(
            circle,
            #dfd0b4,
            #9a7651,
            #41271c
        );

}


.combo-image.three {

    background:
        radial-gradient(
            circle,
            #d5bf95,
            #785538,
            #301910
        );

}


/* BOTTLES */

.combo-product-box {

    width: 82px;

    height: 190px;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    padding-bottom: 15px;

    color: #fff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 15px;

    background:
        linear-gradient(
            160deg,
            #dfc09b,
            #70432d
        );

    box-shadow:
        0 15px 25px
        rgba(0,0,0,.2);

}


.combo-product-box:nth-child(3) {

    transform:
        translateY(-15px);

}


.combo-plus {

    color: #fff;

    font-size: 22px;

}


/* BADGE */

.combo-discount {

    position: absolute;

    top: 15px;
    left: 15px;

    background:
        #5c2d1f;

    color: #fff;

    padding:
        7px 12px;

    font-size: 9px;

    letter-spacing: 1px;

}


.combo-heart {

    position: absolute;

    top: 15px;
    right: 15px;

    width: 38px;
    height: 38px;

    border: 0;

    border-radius: 50%;

    background:
        rgba(255,255,255,.9);

    color: #35160f;

}


/* CARD CONTENT */

.combo-card-content {

    padding: 25px;

}


.combo-card-content .tag {

    color: #b58a45;

    font-size: 9px;

    letter-spacing: 1px;

    text-transform:
        uppercase;

}


.combo-card-content h3 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 28px;

    margin:
        5px 0 8px;

}


.combo-card-content p {

    color: #766b65;

    font-size: 11px;

    min-height: 42px;

}


.combo-includes {

    border-top:
        1px solid #e6ddd2;

    border-bottom:
        1px solid #e6ddd2;

    margin:
        18px 0;

    padding:
        15px 0;

}


.combo-includes-title {

    font-size: 9px;

    color: #29211d;

    font-weight: 600;

    margin-bottom: 8px;

}


.combo-includes ul {

    list-style: none;

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

}


.combo-includes li {

    background: #f8f3ea;

    padding:
        5px 8px;

    font-size: 8px;

    color: #5c2d1f;

}


.combo-price {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 15px;

}


.combo-price strong {

    font-size: 22px;

}


.combo-price del {

    color: #aaa;

    font-size: 11px;

}


.combo-price span {

    color: #5b7947;

    font-size: 9px;

    font-weight: 600;

}


.combo-cart {

    width: 100%;

    padding: 12px;

    border:
        1px solid #5c2d1f;

    background:
        #5c2d1f;

    color: #fff;

    font-size: 10px;

    transition: .3s;

}


.combo-cart:hover {

    background:
        #35160f;

}


/* =====================================================
   CUSTOM COMBO BANNER
===================================================== */

.custom-combo {

    max-width: 1300px;

    margin:
        80px auto 0;

    padding:
        65px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 40px;

    background:
        linear-gradient(
            110deg,
            #35160f,
            #75472f
        );

    color: #fff;

}


.custom-combo-content {

    max-width: 600px;

}


.custom-combo span {

    color: #d8bd86;

    font-size: 10px;

    letter-spacing: 3px;

}


.custom-combo h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 52px;

    line-height: 1;

    margin: 12px 0;

}


.custom-combo h2 em {

    color: #d8bd86;

}


.custom-combo p {

    color:
        rgba(255,255,255,.65);

    font-size: 12px;

}


.custom-combo-icon {

    width: 150px;

    height: 150px;

    border:
        1px solid
        rgba(255,255,255,.2);

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: #d8bd86;

    font-size: 55px;

}


/* =====================================================
   BENEFITS
===================================================== */

.combo-benefits {

    padding:
        90px 7%;

    background: #fff;

}


.combo-benefits-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

}


.combo-benefit {

    text-align: center;

    padding: 25px;

    border-right:
        1px solid #e6ddd2;

}


.combo-benefit:last-child {

    border-right: 0;

}


.combo-benefit i {

    color: #b58a45;

    font-size: 28px;

    margin-bottom: 15px;

}


.combo-benefit h3 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 23px;

}


.combo-benefit p {

    color: #766b65;

    font-size: 10px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1000px) {

    .combo-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

    .combo-benefits-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

    .combo-benefit {

        border-bottom:
            1px solid #e6ddd2;

    }

}


@media(max-width:700px) {

    .combo-grid {

        grid-template-columns: 1fr;

    }

    .custom-combo {

        flex-direction: column;

        align-items:
            flex-start;

        padding: 45px 30px;

    }

    .combo-benefits-grid {

        grid-template-columns: 1fr;

    }

    .combo-benefit {

        border-right: 0;

    }

}


@media(max-width:500px) {

    .combo-products-section {

        padding:
            65px 5%;

    }

    .combo-image {

        height: 320px;

    }

    .combo-product-box {

        width: 70px;
        height: 165px;

    }

    .combo-heading h2 {

        font-size: 43px;

    }

    .custom-combo h2 {

        font-size: 42px;

    }

}


/* =====================================================
   CONTACT HERO
===================================================== */

.contact-hero {

    min-height: 420px;

    padding: 80px 7%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: #fff;

    background:
        linear-gradient(
            rgba(53,22,15,.88),
            rgba(53,22,15,.88)
        ),
        radial-gradient(
            circle at center,
            #c19a62,
            #70432d 50%,
            #35160f
        );
}


.contact-hero-content {

    max-width: 750px;

}


.contact-hero span {

    color: #d8bd86;

    font-size: 10px;

    letter-spacing: 4px;

}


.contact-hero h1 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(55px, 7vw, 82px);

    line-height: .9;

    margin: 18px 0;

}


.contact-hero h1 em {

    color: #d8bd86;

}


.contact-hero p {

    max-width: 580px;

    margin: auto;

    color:
        rgba(255,255,255,.7);

    font-size: 13px;

    line-height: 1.8;

}


/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {

    padding: 100px 7%;

    background: #faf8f4;

}


.contact-container {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 60px;

    align-items: start;

}


/* =====================================================
   CONTACT INFO
===================================================== */

.contact-info {

    background: #5c2d1f;

    padding: 50px 40px;

    color: #fff;

    min-height: 570px;

}


.contact-info > span {

    color: #d8bd86;

    font-size: 10px;

    letter-spacing: 3px;

}


.contact-info h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 48px;

    line-height: 1;

    margin: 15px 0 20px;

}


.contact-info h2 em {

    color: #d8bd86;

}


.contact-info > p {

    color:
        rgba(255,255,255,.65);

    font-size: 11px;

    line-height: 1.8;

    margin-bottom: 35px;

}


/* INFO ITEM */

.contact-info-item {

    display: flex;

    gap: 18px;

    padding: 20px 0;

    border-top:
        1px solid
        rgba(255,255,255,.13);

}


.contact-info-icon {

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border:
        1px solid #d8bd86;

    color: #d8bd86;

    display: grid;

    place-items: center;

    border-radius: 50%;

}


.contact-info-item h3 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 21px;

    margin: 0 0 5px;

}


.contact-info-item p {

    margin: 0;

    color:
        rgba(255,255,255,.6);

    font-size: 10px;

    line-height: 1.7;

}


.contact-info-item a {

    color:
        rgba(255,255,255,.7);

    text-decoration: none;

    font-size: 10px;

}


.contact-social {

    margin-top: 30px;

    display: flex;

    gap: 10px;

}


.contact-social a {

    width: 38px;
    height: 38px;

    border:
        1px solid
        rgba(216,189,134,.4);

    color: #d8bd86;

    display: grid;

    place-items: center;

    border-radius: 50%;

    transition: .3s;

}


.contact-social a:hover {

    background: #d8bd86;

    color: #5c2d1f;

}


/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form-wrapper {

    background: #fff;

    padding: 50px 45px;

    border:
        1px solid #e6ddd2;

}


.contact-form-heading span {

    color: #b58a45;

    font-size: 10px;

    letter-spacing: 3px;

}


.contact-form-heading h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 45px;

    margin: 10px 0;

    line-height: 1;

}


.contact-form-heading p {

    color: #766b65;

    font-size: 10px;

    line-height: 1.7;

    margin-bottom: 30px;

}


/* FORM GRID */

.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;

}


.form-group {

    margin-bottom: 18px;

}


.form-group label {

    display: block;

    color: #3d302a;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 7px;

    text-transform:
        uppercase;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 13px 14px;

    border:
        1px solid #ddd2c7;

    background: #fcfaf7;

    outline: none;

    font-family: Poppins, sans-serif;

    font-size: 10px;

    color: #3d302a;

    transition: .3s;

    box-sizing: border-box;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: #b58a45;

    background: #fff;

}


.form-group textarea {

    min-height: 130px;

    resize: vertical;

}


.form-submit {

    width: 100%;

    padding: 14px;

    border: 0;

    background: #5c2d1f;

    color: #fff;

    cursor: pointer;

    font-family: Poppins, sans-serif;

    font-size: 10px;

    letter-spacing: 1px;

    transition: .3s;

}


.form-submit:hover {

    background: #35160f;

}


/* =====================================================
   SUCCESS MESSAGE
===================================================== */

.form-success {

    display: none;

    margin-top: 15px;

    padding: 12px 15px;

    background: #edf5e8;

    color: #4d703d;

    font-size: 10px;

}


.form-success.show {

    display: block;

}


/* =====================================================
   MAP / STORE SECTION
===================================================== */

.contact-location {

    padding: 90px 7%;

    background: #fff;

}


.location-container {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 30px;

}


/* LOCATION CARD */

.location-card {

    padding: 45px;

    background: #faf8f4;

    border:
        1px solid #e6ddd2;

}


.location-card span {

    color: #b58a45;

    font-size: 10px;

    letter-spacing: 3px;

}


.location-card h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 45px;

    line-height: 1;

    margin: 12px 0 20px;

}


.location-card p {

    color: #766b65;

    font-size: 11px;

    line-height: 1.8;

}


.location-details {

    margin-top: 25px;

}


.location-detail {

    display: flex;

    gap: 15px;

    padding: 13px 0;

    border-top:
        1px solid #e6ddd2;

}


.location-detail i {

    color: #b58a45;

    width: 18px;

}


.location-detail span {

    color: #766b65;

    font-size: 10px;

    letter-spacing: 0;

}


/* MAP */

.fake-map {

    min-height: 430px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        #e9e0d3;

}


.map-pattern {

    position: absolute;

    inset: 0;

    opacity: .35;

    background-image:
        linear-gradient(
            25deg,
            transparent 45%,
            #bba990 46%,
            transparent 48%
        ),
        linear-gradient(
            120deg,
            transparent 45%,
            #bba990 46%,
            transparent 48%
        );

    background-size:
        90px 90px;

}


.map-road {

    position: absolute;

    width: 140%;

    height: 70px;

    background: #f7f3ec;

    transform:
        rotate(-25deg);

    border-top:
        1px solid #d5c6b5;

    border-bottom:
        1px solid #d5c6b5;

}


.map-pin {

    position: relative;

    z-index: 2;

    width: 75px;
    height: 75px;

    display: grid;

    place-items: center;

    border-radius: 50% 50% 50% 0;

    transform:
        rotate(-45deg);

    background: #5c2d1f;

    color: #d8bd86;

    font-size: 27px;

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.18);

}


.map-pin i {

    transform:
        rotate(45deg);

}


/* =====================================================
   QUICK HELP
===================================================== */

.quick-help {

    padding: 80px 7%;

    background: #faf8f4;

}


.quick-help-grid {

    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.quick-help-card {

    text-align: center;

    padding: 35px 25px;

    background: #fff;

    border:
        1px solid #e6ddd2;

}


.quick-help-card i {

    color: #b58a45;

    font-size: 28px;

    margin-bottom: 15px;

}


.quick-help-card h3 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 25px;

    margin: 0 0 8px;

}


.quick-help-card p {

    color: #766b65;

    font-size: 10px;

    line-height: 1.7;

}


.quick-help-card a {

    color: #5c2d1f;

    font-size: 10px;

    font-weight: 600;

    text-decoration: none;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:900px) {

    .contact-container {

        grid-template-columns: 1fr;

    }

    .location-container {

        grid-template-columns: 1fr;

    }

    .quick-help-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}


@media(max-width:600px) {

    .contact-section {

        padding: 70px 5%;

    }

    .contact-info {

        padding: 40px 25px;

    }

    .contact-form-wrapper {

        padding: 35px 22px;

    }

    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }

    .quick-help-grid {

        grid-template-columns: 1fr;

    }

    .location-card {

        padding: 35px 25px;

    }

    .fake-map {

        min-height: 330px;

    }

}

/* =====================================================
   ROYAL CLUB HERO
===================================================== */

.royal-hero {

    min-height: 560px;

    padding: 90px 7%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: #fff;

    background:
        radial-gradient(
            circle at 50% 30%,
            #9d7143 0%,
            #603b28 42%,
            #29130d 100%
        );

    position: relative;

    overflow: hidden;
}


.royal-hero::before {

    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    border:
        1px solid
        rgba(216,189,134,.3);

    border-radius: 50%;

}


.royal-hero::after {

    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    border:
        1px solid
        rgba(216,189,134,.2);

    border-radius: 50%;

}


.royal-hero-content {

    position: relative;

    z-index: 2;

    max-width: 800px;

}


.crown-icon {

    color: #d8bd86;

    font-size: 35px;

    margin-bottom: 18px;

}


.royal-hero span {

    color: #d8bd86;

    font-size: 10px;

    letter-spacing: 5px;

}


.royal-hero h1 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(60px, 8vw, 95px);

    line-height: .82;

    margin: 20px 0;

}


.royal-hero h1 em {

    color: #d8bd86;

}


.royal-hero p {

    max-width: 600px;

    margin: auto;

    color:
        rgba(255,255,255,.7);

    font-size: 13px;

    line-height: 1.8;

}


/* =====================================================
   ROYAL INTRO
===================================================== */

.royal-intro {

    padding: 100px 7%;

    background: #fff;

}


.royal-intro-container {

    max-width: 1150px;

    margin: auto;

    text-align: center;

}


.royal-intro span {

    color: #b58a45;

    font-size: 10px;

    letter-spacing: 3px;

}


.royal-intro h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 58px;

    line-height: .95;

    margin: 15px 0 20px;

}


.royal-intro h2 em {

    color: #5c2d1f;

}


.royal-intro p {

    max-width: 650px;

    margin: auto;

    color: #766b65;

    font-size: 12px;

    line-height: 1.9;

}


/* =====================================================
   BENEFITS
===================================================== */

.royal-benefits {

    padding: 90px 7%;

    background: #faf8f4;

}


.section-heading {

    text-align: center;

    max-width: 650px;

    margin:
        0 auto 55px;

}


.section-heading span {

    color: #b58a45;

    font-size: 10px;

    letter-spacing: 3px;

}


.section-heading h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 55px;

    line-height: 1;

    margin: 12px 0;

}


.section-heading h2 em {

    color: #5c2d1f;

}


.section-heading p {

    color: #766b65;

    font-size: 11px;

}


/* BENEFIT GRID */

.royal-benefit-grid {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 22px;

}


.royal-benefit {

    background: #fff;

    border:
        1px solid #e6ddd2;

    padding: 40px 30px;

    text-align: center;

    transition: .3s;

}


.royal-benefit:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 18px 40px
        rgba(50,30,20,.08);

}


.royal-benefit-icon {

    width: 70px;
    height: 70px;

    margin:
        0 auto 20px;

    border-radius: 50%;

    border:
        1px solid #d8bd86;

    display: grid;

    place-items: center;

    color: #b58a45;

    font-size: 24px;

}


.royal-benefit h3 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 27px;

    margin-bottom: 10px;

}


.royal-benefit p {

    color: #766b65;

    font-size: 10px;

    line-height: 1.8;

}


/* =====================================================
   POINTS SECTION
===================================================== */

.royal-points {

    padding: 100px 7%;

    background: #fff;

}


.points-container {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;

}


/* LEFT */

.points-content span {

    color: #b58a45;

    font-size: 10px;

    letter-spacing: 3px;

}


.points-content h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 55px;

    line-height: 1;

    margin: 15px 0 25px;

}


.points-content h2 em {

    color: #5c2d1f;

}


.points-content p {

    color: #766b65;

    font-size: 11px;

    line-height: 1.8;

}


/* STEPS */

.points-step {

    display: flex;

    gap: 18px;

    margin-top: 25px;

}


.points-number {

    min-width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #5c2d1f;

    color: #d8bd86;

    display: grid;

    place-items: center;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 18px;

}


.points-step h3 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 22px;

    margin: 0 0 5px;

}


.points-step p {

    margin: 0;

}


/* POINT CARD */

.points-card {

    min-height: 480px;

    padding: 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            #35160f,
            #805331
        );

    position: relative;

    overflow: hidden;

}


.points-card::before {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border:
        1px solid
        rgba(216,189,134,.25);

    border-radius: 50%;

}


.points-card-icon {

    position: relative;

    width: 110px;
    height: 110px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    border:
        1px solid #d8bd86;

    color: #d8bd86;

    font-size: 45px;

    margin-bottom: 25px;

}


.points-card h3 {

    position: relative;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 43px;

    margin: 0;

}


.points-card p {

    position: relative;

    color:
        rgba(255,255,255,.65);

    font-size: 10px;

    max-width: 300px;

}


/* =====================================================
   MEMBERSHIP LEVELS
===================================================== */

.royal-levels {

    padding: 90px 7%;

    background: #faf8f4;

}


.level-grid {

    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;

}


.level-card {

    padding: 35px 25px;

    background: #fff;

    border:
        1px solid #e6ddd2;

    text-align: center;

}


.level-card.featured {

    border:
        2px solid #b58a45;

    transform:
        translateY(-12px);

}


.level-crown {

    color: #b58a45;

    font-size: 27px;

    margin-bottom: 10px;

}


.level-card h3 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 30px;

    margin: 0;

}


.level-card .points-required {

    color: #b58a45;

    font-size: 9px;

    letter-spacing: 1px;

    margin: 10px 0 20px;

}


.level-card ul {

    list-style: none;

    padding: 0;

    margin: 0;

}


.level-card li {

    border-top:
        1px solid #eee5dc;

    padding: 11px 0;

    color: #766b65;

    font-size: 9px;

}


.level-card li i {

    color: #b58a45;

    margin-right: 5px;

}


/* =====================================================
   EXCLUSIVE OFFER
===================================================== */

.royal-offer {

    padding: 100px 7%;

    background: #fff;

}


.royal-offer-box {

    max-width: 1250px;

    margin: auto;

    padding: 65px;

    background:
        linear-gradient(
            110deg,
            #35160f,
            #74472e
        );

    color: #fff;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

}


.royal-offer-content {

    max-width: 650px;

}


.royal-offer-content span {

    color: #d8bd86;

    font-size: 10px;

    letter-spacing: 3px;

}


.royal-offer-content h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 52px;

    line-height: 1;

    margin: 12px 0 15px;

}


.royal-offer-content h2 em {

    color: #d8bd86;

}


.royal-offer-content p {

    color:
        rgba(255,255,255,.65);

    font-size: 11px;

}


.royal-offer-icon {

    width: 150px;
    height: 150px;

    border:
        1px solid
        rgba(216,189,134,.5);

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: #d8bd86;

    font-size: 55px;

    flex-shrink: 0;

}


/* =====================================================
   JOIN SECTION
===================================================== */

.royal-join {

    padding: 100px 7%;

    text-align: center;

    background: #faf8f4;

}


.royal-join span {

    color: #b58a45;

    font-size: 10px;

    letter-spacing: 3px;

}


.royal-join h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(45px, 6vw, 65px);

    line-height: 1;

    max-width: 750px;

    margin:
        15px auto 20px;

}


.royal-join h2 em {

    color: #5c2d1f;

}


.royal-join p {

    max-width: 550px;

    margin:
        0 auto 30px;

    color: #766b65;

    font-size: 11px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:900px) {

    .royal-benefit-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

    .points-container {

        grid-template-columns: 1fr;

    }

    .level-grid {

        grid-template-columns:
            1fr;

        max-width: 450px;

    }

    .level-card.featured {

        transform: none;

    }

}


@media(max-width:650px) {

    .royal-benefit-grid {

        grid-template-columns: 1fr;

    }

    .royal-hero {

        min-height: 480px;

    }

    .royal-intro h2,
    .points-content h2 {

        font-size: 45px;

    }

    .royal-offer-box {

        padding: 45px 30px;

        flex-direction: column;

        align-items: flex-start;

    }

    .royal-offer-content h2 {

        font-size: 42px;

    }

    .royal-offer-icon {

        width: 110px;
        height: 110px;

        font-size: 40px;

    }

}

/* ==========================================
           SHOP PAGE
        ========================================== */

        .shop-hero {
            min-height: 360px;

            display: flex;
            align-items: center;
            justify-content: center;

            text-align: center;

            padding: 70px 5%;

            color: #fff;

            background:
                linear-gradient(
                    rgba(53, 22, 15, .88),
                    rgba(53, 22, 15, .88)
                ),
                radial-gradient(
                    circle at center,
                    #b58a45,
                    #5c2d1f 55%,
                    #35160f
                );
        }

        .shop-hero-content {
            max-width: 700px;
        }

        .shop-hero span {
            color: #d8bd86;
            font-size: 11px;
            letter-spacing: 3px;
        }

        .shop-hero h1 {
            font-family: "Cormorant Garamond", serif;
            font-size: clamp(50px, 7vw, 75px);
            line-height: 1;
            margin: 15px 0;
        }

        .shop-hero h1 em {
            color: #d8bd86;
        }

        .shop-hero p {
            color: rgba(255,255,255,.7);
            font-size: 13px;
        }


        /* ==========================================
           SHOP CONTROLS
        ========================================== */

        .shop-section {
            padding: 80px 7%;
        }

        .shop-controls {
            max-width: 1300px;
            margin: 0 auto 40px;

            display: flex;
            justify-content: space-between;
            align-items: center;

            gap: 20px;

            border-bottom: 1px solid #e6ddd2;
            padding-bottom: 25px;
        }

        .category-tabs {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .category-tab {
            border: 1px solid #ddd1c5;
            background: #fff;

            padding: 10px 18px;

            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;

            color: #5c2d1f;

            transition: .3s;
        }

        .category-tab:hover,
        .category-tab.active {
            background: #5c2d1f;
            color: #fff;
            border-color: #5c2d1f;
        }

        .sort-box {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sort-box label {
            color: #766b65;
            font-size: 10px;
        }

        .sort-box select {
            border: 1px solid #ddd1c5;
            padding: 10px 14px;
            background: #fff;

            font-size: 10px;
            color: #29211d;

            outline: none;
        }


        /* ==========================================
           SHOP GRID
        ========================================== */

        .shop-grid {
            max-width: 1300px;
            margin: auto;

            display: grid;

            grid-template-columns:
                repeat(4, 1fr);

            gap: 25px;
        }

        .shop-product {
            border: 1px solid #e6ddd2;
            background: #fff;

            transition: .3s;
        }

        .shop-product:hover {
            transform: translateY(-6px);

            box-shadow:
                0 15px 35px
                rgba(50,30,20,.10);
        }

        .shop-product-image {
            height: 330px;

            position: relative;
            overflow: hidden;
        }

        .shop-product-image .product-placeholder {
            height: 100%;
        }

        .shop-wishlist {
            position: absolute;

            right: 15px;
            top: 15px;

            width: 38px;
            height: 38px;

            border: 0;
            border-radius: 50%;

            background: rgba(255,255,255,.92);

            z-index: 3;

            color: #35160f;
        }

        .quick-view {
            position: absolute;

            bottom: -50px;
            left: 5%;
            width: 90%;

            padding: 11px;

            border: 0;

            background: #35160f;
            color: #fff;

            font-size: 10px;
            letter-spacing: .5px;

            transition: .3s;

            z-index: 3;
        }

        .shop-product:hover .quick-view {
            bottom: 10px;
        }

        .shop-product-info {
            padding: 20px;
        }

        .shop-product-info .product-category {
            color: #b58a45;
            font-size: 9px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .shop-product-info h3 {
            font-family: "Cormorant Garamond", serif;
            font-size: 23px;
            margin: 5px 0;
        }

        .shop-product-price {
            display: flex;
            align-items: center;
            gap: 9px;

            margin: 10px 0;
        }

        .shop-product-price strong {
            font-size: 18px;
        }

        .shop-product-price del {
            color: #aaa;
            font-size: 11px;
        }

        .shop-product-price span {
            color: #5b7947;
            font-size: 9px;
        }

        .shop-add-cart {
            width: 100%;

            border: 1px solid #5c2d1f;
            background: transparent;
            color: #5c2d1f;

            padding: 11px;

            font-size: 10px;
            font-weight: 600;

            transition: .3s;
        }

        .shop-add-cart:hover {
            background: #5c2d1f;
            color: #fff;
        }


        /* ==========================================
           SHOP BANNER
        ========================================== */

        .shop-banner {
            max-width: 1300px;
            margin: 80px auto 0;

            padding: 55px;

            display: flex;
            align-items: center;
            justify-content: space-between;

            gap: 30px;

            background:
                linear-gradient(
                    110deg,
                    #35160f,
                    #70432d
                );

            color: #fff;
        }

        .shop-banner span {
            color: #d8bd86;
            font-size: 9px;
            letter-spacing: 3px;
        }

        .shop-banner h2 {
            font-family: "Cormorant Garamond", serif;
            font-size: 42px;
            line-height: 1;
            margin: 10px 0;
        }

        .shop-banner p {
            color: rgba(255,255,255,.65);
            font-size: 11px;
            max-width: 500px;
        }


        /* ==========================================
           RESPONSIVE
        ========================================== */

        @media (max-width: 1100px) {

            .shop-grid {
                grid-template-columns:
                    repeat(3, 1fr);
            }

        }


        @media (max-width: 800px) {

            .shop-controls {
                align-items: flex-start;
                flex-direction: column;
            }

            .shop-grid {
                grid-template-columns:
                    repeat(2, 1fr);
            }

            .shop-banner {
                flex-direction: column;
                align-items: flex-start;

                padding: 40px 30px;
            }

        }


        @media (max-width: 550px) {

            .shop-section {
                padding: 60px 5%;
            }

            .shop-grid {
                grid-template-columns: 1fr;
            }

            .shop-product-image {
                height: 360px;
            }

            .category-tabs {
                width: 100%;
            }

            .category-tab {
                flex: 1;
            }

            .shop-banner h2 {
                font-size: 35px;
            }

        }
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 80px 7%;
    color: #fff;
}
.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f5f1eb;
}

.product-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    transform: translateY(-20px);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

/* =====================================================
                    COMBO CARD
===================================================== */

.combo-card {

    width: 100%;

    background: #fff;

    border-radius: 22px;

    overflow: hidden;

    border: 1px solid rgba(184, 134, 11, 0.18);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08);

    transition: all 0.4s ease;

}


.combo-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.14);

}


/* =====================================================
                  COMBO IMAGE AREA
===================================================== */

.combo-image.one {

    position: relative;

    min-height: 350px;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 50px 25px 25px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #fffaf4,
            #f7eadc
        );

}


/* Decorative background */

.combo-image.one::before {

    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(184, 134, 11, 0.08);

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

}


/* =====================================================
                  SINGLE COMBO IMAGE
===================================================== */

.combo-product-box {

    position: relative;

    width: 100%;

    height: 280px;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 2;

}


.combo-product-box img {

    width: 100%;

    max-width: 470px;

    height: 280px;

    object-fit: contain;

    display: block;

    filter:
        drop-shadow(
            0 18px 18px rgba(0, 0, 0, 0.18)
        );

    transition: all 0.45s ease;

}


.combo-card:hover .combo-product-box img {

    transform: scale(1.04);

}


/* =====================================================
                     DISCOUNT
===================================================== */

.combo-discount {

    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 5;

    padding: 8px 15px;

    background: #b8860b;

    color: #fff;

    border-radius: 30px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    box-shadow:
        0 5px 15px rgba(184, 134, 11, 0.25);

}


/* =====================================================
                       HEART
===================================================== */

.combo-heart {

    position: absolute;

    top: 16px;
    right: 18px;

    z-index: 5;

    width: 42px;
    height: 42px;

    border: none;

    border-radius: 50%;

    background: #fff;

    color: #6f3d26;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    font-size: 17px;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.12);

    transition: all 0.3s ease;

}


.combo-heart:hover {

    background: #b8860b;

    color: #fff;

    transform: scale(1.08);

}


/* =====================================================
                   CONTENT AREA
===================================================== */

.combo-card-content {

    padding: 28px 28px 30px;

}


/* =====================================================
                        TAG
===================================================== */

.combo-card-content .tag {

    display: inline-block;

    padding: 6px 12px;

    border-radius: 20px;

    background: rgba(184, 134, 11, 0.10);

    color: #9a6c00;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.2px;

    margin-bottom: 12px;

}


/* =====================================================
                        TITLE
===================================================== */

.combo-card-content h3 {

    margin: 0 0 10px;

    color: #3b2418;

    font-size: 25px;

    font-weight: 700;

    line-height: 1.3;

}


/* =====================================================
                      DESCRIPTION
===================================================== */

.combo-card-content > p {

    margin: 0 0 20px;

    color: #777;

    font-size: 14px;

    line-height: 1.7;

}


/* =====================================================
                    COMBO INCLUDES
===================================================== */

.combo-includes {

    padding: 16px;

    border-radius: 12px;

    background: #faf7f3;

    margin-bottom: 20px;

}


.combo-includes-title {

    margin-bottom: 10px;

    color: #3b2418;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

}


.combo-includes ul {

    list-style: none;

    padding: 0;

    margin: 0;

}


.combo-includes li {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 7px;

    color: #666;

    font-size: 13px;

}


.combo-includes li:last-child {

    margin-bottom: 0;

}


.combo-includes li i {

    color: #b8860b;

    font-size: 11px;

}


/* =====================================================
                       PRICE
===================================================== */

.combo-price {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 20px;

}


.combo-price strong {

    color: #3b2418;

    font-size: 28px;

    font-weight: 800;

}


.combo-price del {

    color: #999;

    font-size: 14px;

}


.combo-price span {

    padding: 5px 9px;

    border-radius: 5px;

    background: #edf7ed;

    color: #39833d;

    font-size: 11px;

    font-weight: 700;

}


/* =====================================================
                     CART BUTTON
===================================================== */

.combo-cart {

    width: 100%;

    border: none;

    outline: none;

    padding: 14px 20px;

    border-radius: 10px;

    background: #3b2418;

    color: #fff;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    transition: all 0.3s ease;

}


.combo-cart i {

    font-size: 14px;

}


.combo-cart:hover {

    background: #b8860b;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(184, 134, 11, 0.25);

}


/* =====================================================
                     RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    .combo-image.one {

        min-height: 310px;

        padding: 45px 15px 20px;

    }


    .combo-product-box {

        height: 245px;

    }


    .combo-product-box img {

        height: 245px;

        max-width: 400px;

    }


    .combo-card-content {

        padding: 24px 20px 25px;

    }


    .combo-card-content h3 {

        font-size: 22px;

    }

}


@media (max-width: 480px) {

    .combo-image.one {

        min-height: 270px;

        padding: 45px 10px 15px;

    }


    .combo-product-box {

        height: 210px;

    }


    .combo-product-box img {

        height: 210px;

        max-width: 340px;

    }


    .combo-discount {

        top: 14px;
        left: 14px;

        font-size: 9px;

        padding: 7px 11px;

    }


    .combo-heart {

        top: 12px;
        right: 14px;

        width: 37px;
        height: 37px;

    }


    .combo-card-content {

        padding: 20px 16px 22px;

    }


    .combo-card-content h3 {

        font-size: 20px;

    }


    .combo-price strong {

        font-size: 25px;

    }

}

/* =====================================================
   MOBILE MENU TOGGLE
===================================================== */

.mobile-menu {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);

    background: #fff;

    color: var(--brown);

    border-radius: 5px;

    align-items: center;
    justify-content: center;

    font-size: 18px;

    cursor: pointer;

    transition: all 0.3s ease;

    z-index: 1100;
}

.mobile-menu:hover {
    background: var(--brown);
    color: #fff;
}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 767px) {

    /* NAVBAR */

    .navbar {
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 1000;
    }


    .nav-container {
        width: 92%;

        min-height: 68px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 10px;
    }


    /* LOGO */

    .logo {
        flex-shrink: 0;
    }

    .logo span {
        font-size: 20px;
    }

    .logo small {
        font-size: 8px;
    }


    /* SHOW MOBILE BUTTON */

    .mobile-menu {
        display: flex;
    }


    /* =================================================
       MOBILE NAV
    ================================================= */

    .nav-menu {
        position: fixed;

        top: 68px;
        left: -100%;

        width: 100%;

        height: calc(100vh - 68px);

        background: #fff;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        padding: 20px 7%;

        gap: 0;

        overflow-y: auto;

        border-top: 1px solid var(--border);

        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);

        transition: left 0.35s ease;

        z-index: 1050;
    }


    /* OPEN MENU */

    .nav-menu.active {
        left: 0;
    }


    /* NAV LINKS */

    .nav-menu a {
        width: 100%;

        padding: 16px 0;

        border-bottom: 1px solid var(--border);

        font-size: 14px;

        color: var(--text);

        display: block;
    }

    .nav-menu a:hover {
        color: var(--gold);
    }


    /* NAV ICONS */

    .nav-icons {
        display: flex;

        align-items: center;

        gap: 6px;
    }

    .nav-icons > a,
    .nav-icons > button:not(.mobile-menu) {
        width: 36px;
        height: 36px;

        display: flex;

        align-items: center;
        justify-content: center;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .nav-container {
        width: 94%;

        min-height: 64px;
    }

    .nav-menu {
        top: 64px;

        height: calc(100vh - 64px);
    }

    .mobile-menu {
        width: 38px;
        height: 38px;

        font-size: 17px;
    }

    .nav-icons > a,
    .nav-icons > button:not(.mobile-menu) {
        width: 34px;
        height: 34px;
    }

    .logo span {
        font-size: 18px;
    }

}

/* =====================================================
   FAQ SECTION
===================================================== */

.faq-section {
    width: 100%;
    padding: 100px 7%;
    background: #fff;
}

.faq-container {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}


/* =====================================================
   FAQ HEADING
===================================================== */

.faq-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.faq-heading span {
    display: inline-block;

    color: var(--gold);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2px;
}

.faq-heading h2 {
    margin: 10px 0 12px;

    color: var(--brown);

    font-size: clamp(30px, 4vw, 45px);

    font-weight: 600;

    line-height: 1.2;
}

.faq-heading h2 em {
    color: var(--gold);
    font-style: normal;
}

.faq-heading p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   FAQ LIST
===================================================== */

.faq-list {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 14px;
}


/* =====================================================
   FAQ ITEM
===================================================== */

.faq-item {
    width: 100%;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 6px;

    overflow: hidden;

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}

.faq-item:hover {
    border-color: var(--light-gold);

    box-shadow: 0 8px 25px rgba(53, 22, 15, 0.06);
}

.faq-item.active {
    border-color: var(--gold);

    box-shadow: 0 10px 30px rgba(53, 22, 15, 0.08);
}


/* =====================================================
   FAQ QUESTION
===================================================== */

.faq-question {
    width: 100%;

    min-height: 68px;

    padding: 18px 22px;

    border: none;
    outline: none;

    background: #fff;

    color: var(--brown);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    text-align: left;

    font-family: "Poppins", sans-serif;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: .3s ease;
}

.faq-question:hover {
    color: var(--gold);
}


/* QUESTION ICON */

.faq-question i {
    width: 32px;
    height: 32px;

    min-width: 32px;

    border-radius: 50%;

    background: var(--cream);

    color: var(--gold);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;
}


/* =====================================================
   FAQ ANSWER
===================================================== */

.faq-answer {
    max-height: 0;

    overflow: hidden;

    background: #fff;

    transition:
        max-height .4s ease,
        padding .3s ease;
}

.faq-answer p {
    margin: 0;

    padding: 0 22px 22px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   ACTIVE FAQ
===================================================== */

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question {
    color: var(--gold);
}

.faq-item.active .faq-question i {
    background: var(--brown);

    color: #fff;

    transform: rotate(45deg);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .faq-section {
        padding: 65px 5%;
    }

    .faq-heading {
        margin-bottom: 35px;
    }

    .faq-heading span {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .faq-heading h2 {
        font-size: 28px;
    }

    .faq-heading p {
        font-size: 12px;
        line-height: 1.7;
    }


    .faq-list {
        gap: 10px;
    }


    .faq-question {
        min-height: 60px;

        padding: 15px;

        font-size: 13px;

        gap: 12px;
    }


    .faq-question i {
        width: 28px;
        height: 28px;

        min-width: 28px;

        font-size: 10px;
    }


    .faq-answer p {
        padding: 0 15px 18px;

        font-size: 12px;

        line-height: 1.75;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .faq-section {
        padding: 50px 4%;
    }

    .faq-heading h2 {
        font-size: 25px;
    }

    .faq-question {
        padding: 14px;

        font-size: 12px;
    }

    .faq-answer p {
        padding-left: 14px;
        padding-right: 14px;

        font-size: 11.5px;
    }

}
