﻿/* =========================================================
   DJANE STUDIO
   LUXURY GLOBAL THEME
   Ivory + Terracotta + Deep Green + Espresso
========================================================= */

:root {
    --ivory: #E3DCD2;
    --ivory-light: #F5F1EC;
    --ivory-soft: #FAF8F5;

    --terracotta: #CC8B65;
    --terracotta-dark: #B87652;
    --terracotta-light: #DCA98A;

    --deep-green: #013328;
    --deep-green-light: #08483A;
    --deep-green-soft: #0C5142;

    --espresso: #100C0D;
    --text-main: #100C0D;
    --text-secondary: #655E59;
    --text-light: #948B84;

    --white: #FFFFFF;
    --border: #DED6CC;

    --shadow-soft: 0 10px 35px rgba(16, 12, 13, 0.06);
    --shadow-medium: 0 16px 45px rgba(16, 12, 13, 0.10);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--text-main);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

.site-container {
    width: calc(100% - 60px);
    max-width: 1420px;
    margin: 0 auto;
}


/* =========================================================
   SELECTION
========================================================= */

::selection {
    background: var(--terracotta);
    color: var(--white);
}


/* =========================================================
   TOP ANNOUNCEMENT BAR
========================================================= */

.top-bar {
    width: 100%;
    min-height: 35px;
    background: var(--deep-green);
    color: var(--ivory-light);
    display: flex;
    align-items: center;
}

.top-bar-inner {
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.top-bar span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}


/* =========================================================
   HEADER
========================================================= */

.main-header {
    width: 100%;
    height: 78px;
    position: relative;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.98);

    border-bottom: 1px solid rgba(227, 220, 210, 0.8);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
    min-width: 180px;

    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;

    line-height: 1;
}

.logo-main {
    color: var(--deep-green);

    font-size: 24px;
    font-weight: 700;

    letter-spacing: 5px;
}

.logo-sub {
    margin-top: 6px;

    color: var(--terracotta);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 7px;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-nav {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 42px;
}

.desktop-nav a {
    position: relative;

    padding: 28px 0 25px;

    color: var(--espresso);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.6px;

    transition: color 0.25s ease;
}

.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 20px;

    width: 0;
    height: 1px;

    background: var(--terracotta);

    transform: translateX(-50%);

    transition: width 0.25s ease;
}

.desktop-nav a:hover {
    color: var(--deep-green);
}

.desktop-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    min-width: 180px;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    gap: 7px;
}

.header-icon-btn {
    position: relative;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.header-icon-btn:hover {
    background: var(--ivory-light);
}

.header-icon-btn:active {
    transform: scale(0.94);
}

.header-icon-btn svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke: var(--deep-green);

    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   CART COUNT
========================================================= */

.cart-count {
    position: absolute;

    top: 1px;
    right: -1px;

    min-width: 17px;
    height: 17px;

    padding: 0 4px;

    border-radius: 20px;

    background: var(--terracotta);
    color: var(--white);

    font-size: 9px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-btn {
    display: none;

    width: 38px;
    height: 38px;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;
}

.mobile-menu-btn span {
    width: 20px;
    height: 1.5px;

    background: var(--deep-green);

    border-radius: 2px;
}


/* =========================================================
   MOBILE MENU OVERLAY
========================================================= */

.mobile-menu-overlay {
    position: fixed;

    inset: 0;

    z-index: 1998;

    background: rgba(1, 51, 40, 0.38);

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;

    z-index: 1999;

    top: 0;
    left: 0;

    width: 350px;
    max-width: 88%;

    height: 100%;

    background: var(--ivory-soft);

    box-shadow: 20px 0 60px rgba(16, 12, 13, 0.15);

    transform: translateX(-101%);

    transition: transform 0.32s ease;

    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    height: 78px;

    padding: 0 24px;

    border-bottom: 1px solid var(--border);

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    color: var(--deep-green);

    font-size: 19px;
    font-weight: 700;

    letter-spacing: 3px;
}

.mobile-logo span {
    margin-left: 3px;

    color: var(--terracotta);

    font-size: 8px;

    letter-spacing: 2px;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;

    color: var(--deep-green);

    font-size: 31px;
    font-weight: 300;

    line-height: 1;
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-nav {
    padding: 20px 24px 35px;
}

.mobile-nav a {
    display: block;

    padding: 17px 3px;

    border-bottom: 1px solid var(--border);

    color: var(--espresso);

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0.4px;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.mobile-nav a:hover {
    color: var(--terracotta);

    padding-left: 7px;
}


/* =========================================================
   PAGE
========================================================= */

.page-content {
    width: 100%;

    min-height: 500px;

    background: var(--white);
}


/* =========================================================
   GLOBAL SECTION
========================================================= */

.section {
    width: 100%;

    padding: 90px 0;
}

.section-ivory {
    background: var(--ivory-light);
}

.section-green {
    background: var(--deep-green);

    color: var(--white);
}


/* =========================================================
   SMALL PREMIUM LABEL
========================================================= */

.section-label {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--terracotta);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-title {
    color: var(--deep-green);

    font-size: clamp(30px, 4vw, 52px);

    font-weight: 500;

    line-height: 1.12;

    letter-spacing: -1.3px;
}

.section-description {
    max-width: 600px;

    margin-top: 18px;

    color: var(--text-secondary);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.btn-primary {
    min-height: 50px;

    padding: 0 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--deep-green);

    border: 1px solid var(--deep-green);

    color: var(--white);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.2s ease;
}

.btn-primary:hover {
    background: var(--terracotta);

    border-color: var(--terracotta);
}

.btn-primary:active {
    transform: translateY(1px);
}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.btn-secondary {
    min-height: 50px;

    padding: 0 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: transparent;

    border: 1px solid var(--deep-green);

    color: var(--deep-green);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: all 0.25s ease;
}

.btn-secondary:hover {
    background: var(--deep-green);

    color: var(--white);
}


/* =========================================================
   PRODUCT / CONTENT CARD BASE
========================================================= */

.luxury-card {
    background: var(--white);

    border: 1px solid var(--border);

    box-shadow: var(--shadow-soft);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.luxury-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-medium);
}


/* =========================================================
   INPUTS
========================================================= */

.form-control {
    width: 100%;

    min-height: 50px;

    padding: 0 16px;

    background: var(--white);

    border: 1px solid var(--border);

    color: var(--espresso);

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: var(--terracotta);

    box-shadow: 0 0 0 3px rgba(204, 139, 101, 0.10);
}

.form-control::placeholder {
    color: var(--text-light);
}


/* =========================================================
   FOOTER
========================================================= */

.main-footer {
    margin-top: 80px;

    background: var(--deep-green);

    color: var(--ivory-light);
}

.footer-grid {
    padding-top: 70px;
    padding-bottom: 60px;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 65px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-logo {
    margin-bottom: 22px;

    color: var(--white);

    font-size: 23px;
    font-weight: 700;

    letter-spacing: 4px;
}

.footer-logo span {
    color: var(--terracotta-light);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 3px;
}

.footer-brand p {
    max-width: 340px;

    color: rgba(255, 255, 255, 0.64);

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-column h4 {
    margin-bottom: 21px;

    color: var(--ivory);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.footer-column a {
    margin-bottom: 11px;

    color: rgba(255, 255, 255, 0.60);

    font-size: 12px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-column a:hover {
    color: var(--terracotta-light);

    transform: translateX(2px);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    min-height: 66px;

    border-top: 1px solid rgba(227, 220, 210, 0.16);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 10px;

    letter-spacing: 0.2px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .site-container {
        width: calc(100% - 40px);
    }

    .desktop-nav {
        gap: 25px;
    }

    .site-logo,
    .header-actions {
        min-width: 150px;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;

        gap: 45px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .site-container {
        width: calc(100% - 28px);
    }


    /* TOP BAR */

    .top-bar,
    .top-bar-inner {
        min-height: 31px;
    }

    .top-bar span {
        font-size: 8px;

        letter-spacing: 1px;
    }


    /* HEADER */

    .main-header {
        height: 65px;
    }

    .header-inner {
        justify-content: space-between;
    }


    /* MENU */

    .mobile-menu-btn {
        display: flex;

        flex: 1;

        align-items: flex-start;
    }


    /* DESKTOP NAV */

    .desktop-nav {
        display: none;
    }


    /* LOGO */

    .site-logo {
        min-width: auto;

        flex: 2;

        align-items: center;
    }

    .logo-main {
        font-size: 19px;

        letter-spacing: 3.5px;
    }

    .logo-sub {
        margin-top: 4px;

        font-size: 6px;

        letter-spacing: 5px;
    }


    /* HEADER ACTION */

    .header-actions {
        min-width: 0;

        flex: 1;

        gap: 0;
    }

    .header-actions .header-icon-btn:first-child,
    .header-actions .header-icon-btn:nth-child(2) {
        display: none;
    }

    .header-icon-btn {
        width: 38px;

        height: 38px;
    }


    /* SECTIONS */

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 34px;

        letter-spacing: -0.8px;
    }


    /* FOOTER */

    .main-footer {
        margin-top: 55px;
    }

    .footer-grid {
        padding-top: 50px;
        padding-bottom: 42px;

        grid-template-columns: 1fr 1fr;

        gap: 42px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        max-width: 430px;
    }

    .footer-bottom {
        padding: 20px 0;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 6px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .site-container {
        width: calc(100% - 24px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

    .mobile-menu {
        max-width: 86%;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;
    }

}
/* =========================================================
   HOME PAGE - HERO
========================================================= */

.home-hero {
    width: 100%;
    min-height: 680px;

    display: grid;
    grid-template-columns: 46% 54%;

    background: var(--ivory-light);

    overflow: hidden;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.home-hero-content {
    padding: 90px 7% 90px max(7%, calc((100vw - 1420px) / 2));

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    margin-bottom: 24px;

    color: var(--terracotta);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.home-hero h1 {
    max-width: 650px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(50px, 5vw, 78px);
    font-weight: 400;

    line-height: 1.03;

    letter-spacing: -2.5px;
}

.home-hero h1 span {
    display: block;

    color: var(--terracotta);
}

.home-hero-content > p {
    max-width: 520px;

    margin-top: 28px;

    color: var(--text-secondary);

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    margin-top: 36px;

    display: flex;
    align-items: center;

    gap: 30px;
}

.hero-text-link {
    position: relative;

    padding: 10px 0;

    color: var(--deep-green);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.7px;

    border-bottom: 1px solid var(--deep-green);

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.hero-text-link span {
    margin-left: 8px;

    transition: margin-left 0.25s ease;
}

.hero-text-link:hover {
    color: var(--terracotta);

    border-color: var(--terracotta);
}

.hero-text-link:hover span {
    margin-left: 13px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.home-hero-visual {
    min-height: 680px;

    position: relative;

    background: var(--deep-green);

    overflow: hidden;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;

    min-height: 680px;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 68% 35%,
            rgba(204, 139, 101, 0.20),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #08483A 0%,
            #013328 55%,
            #00271F 100%
        );
}


/* =========================================================
   DECORATIVE FRAMES
========================================================= */

.hero-frame {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--ivory);

    border: 10px solid var(--terracotta);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.25),
        inset 0 0 0 1px rgba(1, 51, 40, 0.15);

    transform: rotate(-4deg);
}

.hero-frame span {
    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 28px;

    letter-spacing: 6px;
}

.frame-one {
    width: 310px;
    height: 390px;

    left: 14%;
    top: 13%;
}

.frame-two {
    width: 230px;
    height: 290px;

    right: 11%;
    top: 22%;

    background: #F7F1E9;

    transform: rotate(5deg);
}

.frame-two span {
    color: var(--terracotta);

    font-size: 20px;
}


/* =========================================================
   DECORATIVE SHAPES
========================================================= */

.hero-decoration {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(227, 220, 210, 0.35);
}

.hero-decoration-one {
    width: 330px;
    height: 330px;

    right: -120px;
    bottom: -90px;
}

.hero-decoration-two {
    width: 170px;
    height: 170px;

    left: -70px;
    top: -55px;
}


/* =========================================================
   HERO CAPTION
========================================================= */

.hero-visual-caption {
    position: absolute;

    left: 10%;
    bottom: 8%;

    padding: 18px 22px;

    background: rgba(227, 220, 210, 0.96);

    box-shadow: var(--shadow-medium);

    display: flex;
    flex-direction: column;
}

.hero-visual-caption span {
    margin-bottom: 4px;

    color: var(--terracotta);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
}

.hero-visual-caption strong {
    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;
    font-weight: 400;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.home-trust-strip {
    width: 100%;

    background: var(--white);

    border-bottom: 1px solid var(--border);
}

.trust-strip-grid {
    min-height: 105px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    min-width: 0;

    padding: 24px 28px;

    display: flex;
    align-items: center;

    gap: 17px;

    border-right: 1px solid var(--border);
}

.trust-item:first-child {
    border-left: 1px solid var(--border);
}

.trust-number {
    color: var(--terracotta);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 24px;
}

.trust-item div {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.trust-item strong {
    margin-bottom: 2px;

    color: var(--deep-green);

    font-size: 12px;
    font-weight: 700;
}

.trust-item small {
    color: var(--text-light);

    font-size: 10px;
}


/* =========================================================
   HERO TABLET
========================================================= */

@media (max-width: 1050px) {

    .home-hero {
        grid-template-columns: 50% 50%;
    }

    .home-hero-content {
        padding-left: 40px;
        padding-right: 40px;
    }

    .home-hero h1 {
        font-size: 55px;
    }

    .frame-one {
        width: 250px;
        height: 330px;

        left: 10%;
    }

    .frame-two {
        width: 190px;
        height: 250px;

        right: 7%;
    }

}


/* =========================================================
   HERO MOBILE
========================================================= */

@media (max-width: 768px) {

    .home-hero {
        min-height: auto;

        display: flex;
        flex-direction: column;
    }

    .home-hero-content {
        min-height: 490px;

        padding: 65px 24px 60px;

        align-items: center;

        text-align: center;
    }

    .hero-eyebrow {
        margin-bottom: 18px;

        font-size: 8px;
    }

    .home-hero h1 {
        max-width: 500px;

        font-size: 46px;

        line-height: 1.04;

        letter-spacing: -1.5px;
    }

    .home-hero-content > p {
        max-width: 430px;

        margin-top: 22px;

        font-size: 13px;
    }

    .hero-buttons {
        margin-top: 30px;

        flex-direction: column;

        gap: 14px;
    }

    .home-hero-visual,
    .hero-image-placeholder {
        min-height: 470px;
    }

    .frame-one {
        width: 220px;
        height: 290px;

        left: 9%;
        top: 11%;
    }

    .frame-two {
        width: 165px;
        height: 215px;

        right: 7%;
        top: 25%;
    }

    .hero-frame {
        border-width: 7px;
    }

    .hero-frame span {
        font-size: 20px;
    }

    .frame-two span {
        font-size: 14px;
    }

    .hero-visual-caption {
        left: 7%;
        bottom: 6%;
    }


    /* TRUST */

    .trust-strip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item {
        min-height: 90px;

        padding: 20px 15px;

        border-bottom: 1px solid var(--border);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-bottom: 0;
    }

    .trust-number {
        font-size: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .home-hero h1 {
        font-size: 39px;
    }

    .home-hero-content {
        min-height: 460px;
    }

    .home-hero-visual,
    .hero-image-placeholder {
        min-height: 420px;
    }

    .frame-one {
        width: 190px;
        height: 250px;
    }

    .frame-two {
        width: 140px;
        height: 185px;
    }

    .trust-item {
        gap: 10px;

        padding: 17px 10px;
    }

    .trust-item small {
        font-size: 9px;
    }

}
/* =========================================================
   HOME - COLLECTION SECTION
========================================================= */

.collection-section {
    padding: 110px 0 120px;
    background: var(--white);
}

.collection-heading {
    margin-bottom: 55px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;
}

.collection-heading > p {
    max-width: 410px;

    padding-bottom: 7px;

    color: var(--text-secondary);

    font-size: 13px;
    line-height: 1.9;
}


/* =========================================================
   COLLECTION GRID
========================================================= */

.collection-grid {
    display: grid;

    grid-template-columns: 1.35fr 1fr 1fr;

    gap: 22px;
}

.collection-card {
    display: block;

    background: var(--ivory-light);

    overflow: hidden;
}

.collection-art {
    height: 410px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.collection-large .collection-art {
    height: 500px;
}


/* =========================================================
   COLLECTION ART
========================================================= */

.art-one {
    background: var(--ivory);
}

.art-two {
    background: var(--terracotta);
}

.art-three {
    background: var(--deep-green);
}

.mock-frame {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #F8F4EE;

    border: 9px solid #B57B58;

    box-shadow: 0 25px 45px rgba(16,12,13,.16);

    transition: transform .5s ease;
}

.collection-card:hover .mock-frame {
    transform: scale(1.04) rotate(1deg);
}

.mock-frame-large {
    width: 245px;
    height: 315px;

    transform: rotate(-3deg);
}

.mock-frame-small {
    width: 185px;
    height: 245px;

    transform: rotate(3deg);
}

.mock-frame span {
    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;

    letter-spacing: 6px;
}

.art-two .mock-frame {
    border-color: var(--deep-green);
}

.art-three .mock-frame {
    position: relative;

    z-index: 2;

    border-color: var(--terracotta);
}

.art-three .mock-frame span {
    color: var(--terracotta);
}

.minimal-circle {
    position: absolute;

    width: 280px;
    height: 280px;

    border: 1px solid rgba(227,220,210,.25);

    border-radius: 50%;
}


/* =========================================================
   COLLECTION INFO
========================================================= */

.collection-info {
    min-height: 105px;

    padding: 24px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    background: var(--ivory-soft);
}

.collection-info > div > span {
    color: var(--terracotta);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.7px;
}

.collection-info h3 {
    margin-top: 5px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;
    font-weight: 400;
}

.collection-arrow {
    color: var(--deep-green);

    font-size: 23px;

    transition: transform .25s ease;
}

.collection-card:hover .collection-arrow {
    transform: translateX(5px);
}


/* =========================================================
   FEATURED PRODUCTS
========================================================= */

.featured-products-section {
    padding: 110px 0 125px;

    background: var(--ivory-light);
}

.featured-heading {
    margin-bottom: 50px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}

.view-all-link {
    margin-bottom: 8px;

    padding-bottom: 5px;

    color: var(--deep-green);

    border-bottom: 1px solid var(--deep-green);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .8px;
}

.view-all-link span {
    margin-left: 8px;

    transition: margin-left .25s ease;
}

.view-all-link:hover span {
    margin-left: 13px;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.home-product-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.home-product-card {
    min-width: 0;
}

.home-product-image {
    height: 410px;

    position: relative;

    display: block;

    overflow: hidden;

    background: var(--white);
}

.product-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform .45s ease;
}

.home-product-card:hover .product-placeholder {
    transform: scale(1.025);
}

.product-design-one {
    background: #DED4C8;
}

.product-design-two {
    background: #D4B29B;
}

.product-design-three {
    background: #CBD2C7;
}

.product-design-four {
    background: #E7DDD1;
}


/* =========================================================
   PRODUCT MOCK FRAME
========================================================= */

.product-frame {
    width: 58%;
    height: 70%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #F8F5EF;

    border: 7px solid var(--deep-green);

    box-shadow: 0 20px 35px rgba(16,12,13,.15);
}

.product-frame span {
    color: var(--terracotta);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 35px;
}


/* =========================================================
   PRODUCT BADGE
========================================================= */

.product-badge {
    position: absolute;

    z-index: 5;

    top: 14px;
    left: 14px;

    padding: 7px 10px;

    background: var(--deep-green);

    color: var(--white);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.3px;
}


/* =========================================================
   PRODUCT INFORMATION
========================================================= */

.home-product-info {
    padding: 17px 2px 0;

    display: flex;
    justify-content: space-between;

    gap: 15px;
}

.product-category {
    color: var(--terracotta);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.4px;
}

.home-product-info h3 {
    margin-top: 5px;

    color: var(--deep-green);

    font-size: 12px;
    font-weight: 600;

    line-height: 1.45;
}

.product-price {
    padding-top: 17px;

    flex-shrink: 0;

    display: flex;
    flex-direction: column;

    text-align: right;
}

.product-price span {
    color: var(--espresso);

    font-size: 12px;
    font-weight: 700;
}

.product-price del {
    margin-top: 2px;

    color: var(--text-light);

    font-size: 9px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .collection-grid {
        grid-template-columns: 1fr 1fr;
    }

    .collection-large {
        grid-column: 1 / -1;
    }

    .collection-large .collection-art {
        height: 450px;
    }

    .home-product-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 35px 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .collection-section,
    .featured-products-section {
        padding: 70px 0;
    }

    .collection-heading,
    .featured-heading {
        margin-bottom: 35px;

        align-items: flex-start;

        flex-direction: column;
    }

    .collection-heading > p {
        max-width: 500px;

        padding: 0;
    }

    .collection-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .collection-large {
        grid-column: auto;
    }

    .collection-art,
    .collection-large .collection-art {
        height: 390px;
    }

    .collection-info {
        min-height: 90px;

        padding: 20px;
    }

    .home-product-image {
        height: 330px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .home-product-grid {
        gap: 28px 10px;
    }

    .home-product-image {
        height: 250px;
    }

    .product-frame {
        width: 65%;
        height: 68%;

        border-width: 5px;
    }

    .home-product-info {
        padding-top: 12px;

        flex-direction: column;

        gap: 2px;
    }

    .product-price {
        padding-top: 3px;

        flex-direction: row;

        align-items: center;

        gap: 7px;

        text-align: left;
    }

    .product-price del {
        margin: 0;
    }

    .home-product-info h3 {
        font-size: 11px;
    }

}
/* =========================================================
   HOME - EDITORIAL SECTION
========================================================= */

.home-editorial {
    width: 100%;

    display: grid;
    grid-template-columns: 58% 42%;

    background: var(--deep-green);
}


/* =========================================================
   EDITORIAL VISUAL
========================================================= */

.editorial-visual {
    min-height: 650px;

    position: relative;

    overflow: hidden;

    background: var(--ivory);
}

.editorial-room {
    width: 100%;
    height: 100%;

    min-height: 650px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #E5DDD2 0%,
            #F0E9E0 55%,
            #D8C9BA 100%
        );
}


/* FLOOR */

.editorial-floor {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 24%;

    background: #C7AD96;

    border-top: 1px solid rgba(16,12,13,.10);
}


/* =========================================================
   EDITORIAL FRAMES
========================================================= */

.editorial-frame {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #F9F6F0;

    border: 10px solid var(--deep-green);

    box-shadow: 0 18px 45px rgba(16,12,13,.14);
}

.editorial-frame span {
    color: var(--terracotta);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 45px;
}

.editorial-frame-one {
    width: 250px;
    height: 330px;

    left: 21%;
    top: 13%;
}

.editorial-frame-two {
    width: 190px;
    height: 250px;

    left: 55%;
    top: 20%;

    border-color: var(--terracotta);
}

.editorial-frame-two span {
    color: var(--deep-green);
}


/* =========================================================
   EDITORIAL TABLE
========================================================= */

.editorial-table {
    position: absolute;

    width: 310px;
    height: 20px;

    left: 38%;
    bottom: 23%;

    background: var(--deep-green);

    border-radius: 2px;
}

.editorial-table::before,
.editorial-table::after {
    content: "";

    position: absolute;

    top: 20px;

    width: 12px;
    height: 145px;

    background: var(--deep-green);
}

.editorial-table::before {
    left: 28px;
}

.editorial-table::after {
    right: 28px;
}


/* =========================================================
   VASE
========================================================= */

.editorial-vase {
    position: absolute;

    width: 48px;
    height: 78px;

    right: 38px;
    bottom: 20px;

    background: var(--terracotta);

    border-radius: 40% 40% 28% 28%;
}

.editorial-vase::before {
    content: "";

    position: absolute;

    width: 24px;
    height: 18px;

    left: 12px;
    top: -12px;

    background: var(--terracotta);
}


/* =========================================================
   EDITORIAL CONTENT
========================================================= */

.editorial-content {
    min-height: 650px;

    display: flex;
    align-items: center;

    background: var(--deep-green);
}

.editorial-content-inner {
    max-width: 510px;

    padding: 80px 70px;
}

.editorial-content .section-label {
    color: var(--terracotta-light);
}

.editorial-content h2 {
    margin-bottom: 30px;

    color: var(--ivory-light);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 4vw, 64px);
    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.editorial-content h2 em {
    color: var(--terracotta-light);

    font-weight: 400;
}

.editorial-content p {
    margin-bottom: 16px;

    color: rgba(255,255,255,.62);

    font-size: 13px;

    line-height: 1.9;
}

.editorial-link {
    display: inline-block;

    margin-top: 18px;

    padding-bottom: 6px;

    color: var(--ivory);

    border-bottom: 1px solid rgba(227,220,210,.65);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
}

.editorial-link span {
    margin-left: 10px;

    transition: margin-left .25s ease;
}

.editorial-link:hover span {
    margin-left: 15px;
}


/* =========================================================
   WHY DJANE
========================================================= */

.why-djane {
    padding: 115px 0 125px;

    background: var(--white);
}

.why-heading {
    max-width: 650px;

    margin-bottom: 60px;
}


/* =========================================================
   WHY GRID
========================================================= */

.why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}

.why-card {
    min-height: 310px;

    position: relative;

    padding: 35px 32px;

    border-right: 1px solid var(--border);
}

.why-card:first-child {
    border-left: 1px solid var(--border);
}

.why-index {
    position: absolute;

    top: 20px;
    right: 22px;

    color: var(--terracotta);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 11px;
}


/* =========================================================
   WHY ICON
========================================================= */

.why-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--deep-green);
}

.why-icon svg {
    width: 42px;
    height: 42px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.3;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   WHY TEXT
========================================================= */

.why-card h3 {
    margin-bottom: 12px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;
    font-weight: 400;
}

.why-card p {
    max-width: 260px;

    color: var(--text-secondary);

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   EDITORIAL TABLET
========================================================= */

@media (max-width: 1000px) {

    .home-editorial {
        grid-template-columns: 55% 45%;
    }

    .editorial-content-inner {
        padding: 60px 40px;
    }

    .editorial-frame-one {
        left: 10%;
    }

    .editorial-frame-two {
        left: 53%;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-card:nth-child(2) {
        border-right: 1px solid var(--border);
    }

    .why-card:nth-child(1),
    .why-card:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }

}


/* =========================================================
   EDITORIAL MOBILE
========================================================= */

@media (max-width: 768px) {

    .home-editorial {
        display: flex;

        flex-direction: column;
    }

    .editorial-visual,
    .editorial-room {
        min-height: 470px;
    }

    .editorial-frame-one {
        width: 190px;
        height: 250px;

        left: 10%;
        top: 12%;
    }

    .editorial-frame-two {
        width: 145px;
        height: 195px;

        left: auto;
        right: 8%;
    }

    .editorial-table {
        width: 230px;

        left: 30%;
    }

    .editorial-content {
        min-height: auto;
    }

    .editorial-content-inner {
        max-width: 600px;

        padding: 65px 24px 70px;
    }

    .editorial-content h2 {
        font-size: 43px;
    }

    .why-djane {
        padding: 75px 0;
    }

    .why-heading {
        margin-bottom: 40px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: 245px;

        padding: 30px 25px;

        border-left: 1px solid var(--border);

        border-bottom: 1px solid var(--border);
    }

    .why-card:last-child {
        border-bottom: 0;
    }

    .why-icon {
        margin-bottom: 30px;
    }

}
/* =========================================================
   SHOP PAGE
========================================================= */

.shop-header {
    padding: 80px 0 70px;

    background: var(--ivory-light);

    text-align: center;
}

.shop-header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop-header .section-label {
    margin-bottom: 17px;
}

.shop-header h1 {
    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(45px, 5vw, 68px);
    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;
}

.shop-header p {
    max-width: 500px;

    margin-top: 20px;

    color: var(--text-secondary);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   SHOP TOOLBAR
========================================================= */

.shop-toolbar {
    background: var(--white);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.shop-toolbar-inner {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* CATEGORIES */

.shop-categories {
    display: flex;
    align-items: center;

    gap: 28px;
}

.shop-category {
    position: relative;

    padding: 26px 0 23px;

    color: var(--text-secondary);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .5px;
}

.shop-category::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -1px;

    height: 2px;

    background: var(--deep-green);

    transform: scaleX(0);

    transition: transform .25s ease;
}

.shop-category:hover,
.shop-category.active {
    color: var(--deep-green);
}

.shop-category.active::after,
.shop-category:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   SORT
========================================================= */

.shop-sort {
    display: flex;
    align-items: center;

    gap: 20px;
}

.shop-sort > span {
    color: var(--text-light);

    font-size: 9px;
}

.shop-sort select {
    min-width: 155px;

    padding: 9px 28px 9px 12px;

    background: var(--white);

    border: 1px solid var(--border);

    color: var(--deep-green);

    outline: none;

    font-size: 10px;

    cursor: pointer;
}


/* =========================================================
   PRODUCT AREA
========================================================= */

.shop-products {
    padding: 55px 0 110px;

    background: var(--white);
}

.shop-product-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 55px 20px;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.shop-product-image {
    height: 420px;

    position: relative;

    display: block;

    overflow: hidden;

    background: var(--ivory-light);
}

.shop-demo-image {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform .45s ease;
}

.shop-product-card:hover .shop-demo-image {
    transform: scale(1.025);
}


/* DEMO BACKGROUNDS */

.demo-product-1 {
    background: #DED4C8;
}

.demo-product-2 {
    background: #D5B29B;
}

.demo-product-3 {
    background: #CAD2C7;
}

.demo-product-4 {
    background: #E7DDD1;
}

.demo-product-5 {
    background: #D9C8B7;
}

.demo-product-6 {
    background: #D3D7CE;
}

.demo-product-7 {
    background: #E6D6C9;
}

.demo-product-8 {
    background: #C9B6A5;
}


/* =========================================================
   DEMO FRAME
========================================================= */

.shop-demo-frame {
    width: 57%;
    height: 70%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FAF7F2;

    border: 7px solid var(--deep-green);

    box-shadow: 0 20px 38px rgba(16,12,13,.14);
}

.shop-demo-frame span {
    color: var(--terracotta);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 36px;
}


/* =========================================================
   BADGE
========================================================= */

.shop-product-badge {
    position: absolute;

    z-index: 5;

    top: 13px;
    left: 13px;

    padding: 7px 10px;

    background: var(--deep-green);

    color: var(--white);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.2px;
}


/* =========================================================
   QUICK VIEW
========================================================= */

.quick-view {
    position: absolute;

    z-index: 6;

    left: 14px;
    right: 14px;
    bottom: 14px;

    min-height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(1,51,40,.96);

    color: var(--white);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    transform: translateY(65px);

    opacity: 0;

    transition:
        transform .3s ease,
        opacity .3s ease;
}

.shop-product-card:hover .quick-view {
    transform: translateY(0);

    opacity: 1;
}


/* =========================================================
   PRODUCT INFORMATION
========================================================= */

.shop-product-info {
    padding-top: 15px;
}

.shop-product-category {
    color: var(--terracotta);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.4px;
}

.shop-product-info h2 {
    margin-top: 5px;

    color: var(--deep-green);

    font-size: 12px;
    font-weight: 600;

    line-height: 1.45;

    transition: color .2s ease;
}

.shop-product-info h2:hover {
    color: var(--terracotta);
}


/* =========================================================
   PRICE
========================================================= */

.shop-price {
    margin-top: 9px;

    display: flex;
    align-items: center;

    gap: 8px;
}

.shop-price strong {
    color: var(--espresso);

    font-size: 12px;
}

.shop-price del {
    color: var(--text-light);

    font-size: 9px;
}

.shop-price > span {
    padding: 3px 5px;

    background: rgba(204,139,101,.12);

    color: var(--terracotta-dark);

    font-size: 7px;
    font-weight: 700;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .shop-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .shop-product-image {
        height: 370px;
    }

    .shop-categories {
        gap: 18px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .shop-header {
        padding: 55px 0 50px;
    }

    .shop-header h1 {
        font-size: 45px;
    }

    .shop-toolbar-inner {
        min-height: auto;

        padding-top: 13px;
        padding-bottom: 13px;

        flex-direction: column;

        align-items: stretch;

        gap: 12px;
    }

    .shop-categories {
        width: 100%;

        gap: 22px;

        overflow-x: auto;

        scrollbar-width: none;
    }

    .shop-categories::-webkit-scrollbar {
        display: none;
    }

    .shop-category {
        flex-shrink: 0;

        padding: 11px 0;
    }

    .shop-sort {
        justify-content: space-between;
    }

    .shop-products {
        padding: 35px 0 70px;
    }

    .shop-product-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 35px 12px;
    }

    .shop-product-image {
        height: 310px;
    }

    .quick-view {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .shop-product-image {
        height: 245px;
    }

    .shop-demo-frame {
        width: 65%;
        height: 68%;

        border-width: 5px;
    }

    .shop-demo-frame span {
        font-size: 25px;
    }

    .shop-price {
        flex-wrap: wrap;

        gap: 5px;
    }

    .shop-product-info h2 {
        font-size: 11px;
    }

}
/* =========================================================
   PRODUCT DETAIL PAGE
========================================================= */

.product-breadcrumb {
    padding: 17px 0;

    background: var(--white);

    border-bottom: 1px solid var(--border);
}

.product-breadcrumb .site-container {
    display: flex;
    align-items: center;

    gap: 9px;

    color: var(--text-light);

    font-size: 9px;
}

.product-breadcrumb a:hover {
    color: var(--terracotta);
}

.product-breadcrumb strong {
    color: var(--deep-green);

    font-weight: 500;
}


/* =========================================================
   PRODUCT MAIN
========================================================= */

.product-detail {
    padding: 55px 0 90px;

    background: var(--white);
}

.product-detail-grid {
    display: grid;

    grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);

    gap: 75px;
}


/* =========================================================
   GALLERY
========================================================= */

.product-gallery {
    display: grid;

    grid-template-columns: 78px 1fr;

    gap: 15px;
}

.product-thumbnails {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.product-thumb {
    width: 78px;
    height: 95px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--ivory-light);

    border: 1px solid transparent;

    color: var(--terracotta);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 15px;

    transition: border-color .2s ease;
}

.product-thumb:hover,
.product-thumb.active {
    border-color: var(--deep-green);
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.product-main-image {
    min-height: 650px;

    position: relative;

    overflow: hidden;

    background: #DED4C8;
}

.detail-demo-image {
    width: 100%;
    height: 100%;

    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #DED4C8;
}

.detail-demo-frame {
    width: 52%;
    height: 70%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FAF7F2;

    border: 10px solid var(--deep-green);

    box-shadow: 0 30px 55px rgba(16,12,13,.17);
}

.detail-demo-frame span {
    color: var(--terracotta);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 55px;
}

.product-detail-badge {
    position: absolute;

    z-index: 5;

    top: 17px;
    left: 17px;

    padding: 8px 11px;

    background: var(--deep-green);

    color: var(--white);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.3px;
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.product-detail-info {
    padding: 15px 0;
}

.detail-category {
    color: var(--terracotta);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.8px;
}

.product-detail-info h1 {
    max-width: 560px;

    margin-top: 12px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 4vw, 55px);
    font-weight: 400;

    line-height: 1.07;

    letter-spacing: -1.3px;
}


/* =========================================================
   RATING
========================================================= */

.detail-rating {
    margin-top: 18px;

    display: flex;
    align-items: center;

    gap: 12px;
}

.detail-stars {
    color: var(--terracotta);

    font-size: 13px;

    letter-spacing: 2px;
}

.detail-rating a {
    color: var(--text-secondary);

    font-size: 10px;

    border-bottom: 1px solid var(--border);
}


/* =========================================================
   PRICE
========================================================= */

.detail-price {
    margin-top: 24px;

    display: flex;
    align-items: center;

    gap: 12px;
}

.detail-price strong {
    color: var(--espresso);

    font-size: 25px;
    font-weight: 600;
}

.detail-price del {
    color: var(--text-light);

    font-size: 14px;
}

.detail-price > span {
    padding: 5px 8px;

    background: rgba(204,139,101,.13);

    color: var(--terracotta-dark);

    font-size: 8px;
    font-weight: 700;
}

.detail-tax {
    margin-top: 4px;

    color: var(--text-light);

    font-size: 9px;
}

.detail-divider {
    height: 1px;

    margin: 27px 0;

    background: var(--border);
}

.detail-short-description {
    max-width: 540px;

    color: var(--text-secondary);

    font-size: 12px;

    line-height: 1.9;
}


/* =========================================================
   PRODUCT OPTIONS
========================================================= */

.product-option {
    margin-top: 28px;
}

.option-heading {
    margin-bottom: 12px;

    display: flex;
    justify-content: space-between;

    gap: 20px;
}

.option-heading strong {
    color: var(--deep-green);

    font-size: 10px;

    letter-spacing: .4px;
}

.option-heading span {
    color: var(--text-light);

    font-size: 9px;

    text-decoration: underline;
}

.size-options {
    display: flex;

    gap: 9px;

    flex-wrap: wrap;
}

.size-option {
    min-width: 88px;

    padding: 12px 15px;

    border: 1px solid var(--border);

    color: var(--deep-green);

    background: var(--white);

    font-size: 10px;

    transition: all .2s ease;
}

.size-option:hover,
.size-option.active {
    border-color: var(--deep-green);

    background: var(--deep-green);

    color: var(--white);
}


/* =========================================================
   QUANTITY
========================================================= */

.quantity-selector {
    width: 125px;
    height: 44px;

    display: grid;

    grid-template-columns: 40px 45px 40px;

    border: 1px solid var(--border);
}

.quantity-selector button {
    color: var(--deep-green);

    font-size: 18px;
}

.quantity-selector input {
    width: 100%;

    border: 0;

    outline: 0;

    background: transparent;

    color: var(--espresso);

    text-align: center;

    font-size: 11px;
}


/* =========================================================
   PRODUCT CTA
========================================================= */

.product-actions {
    margin-top: 30px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;
}

.detail-add-cart,
.detail-buy-now {
    min-height: 54px;

    padding: 0 20px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    transition: all .25s ease;
}

.detail-add-cart {
    background: var(--white);

    border: 1px solid var(--deep-green);

    color: var(--deep-green);
}

.detail-add-cart:hover {
    background: var(--ivory-light);
}

.detail-buy-now {
    background: var(--deep-green);

    border: 1px solid var(--deep-green);

    color: var(--white);
}

.detail-buy-now:hover {
    background: var(--terracotta);

    border-color: var(--terracotta);
}


/* =========================================================
   SECURE
========================================================= */

.detail-secure {
    margin-top: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    color: var(--text-light);

    font-size: 9px;
}

.detail-secure svg {
    width: 14px;
    height: 14px;

    fill: none;

    stroke: var(--deep-green);

    stroke-width: 1.5;
}


/* =========================================================
   DELIVERY
========================================================= */

.delivery-check {
    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid var(--border);
}

.delivery-check > strong {
    display: block;

    margin-bottom: 10px;

    color: var(--deep-green);

    font-size: 10px;
}

.delivery-input {
    max-width: 330px;

    height: 46px;

    display: flex;

    border: 1px solid var(--border);
}

.delivery-input input {
    min-width: 0;

    flex: 1;

    padding: 0 14px;

    border: 0;

    outline: 0;

    color: var(--espresso);

    font-size: 10px;
}

.delivery-input button {
    padding: 0 17px;

    color: var(--deep-green);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   BENEFITS
========================================================= */

.detail-benefits {
    margin-top: 30px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}

.detail-benefits > div {
    padding: 17px 12px;

    display: flex;
    flex-direction: column;

    border-right: 1px solid var(--border);
}

.detail-benefits > div:last-child {
    border-right: 0;
}

.detail-benefits strong {
    color: var(--deep-green);

    font-size: 9px;
}

.detail-benefits span {
    margin-top: 3px;

    color: var(--text-light);

    font-size: 8px;

    line-height: 1.5;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.product-description-section {
    padding: 90px 0;

    background: var(--ivory-light);
}

.product-description-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;
}

.product-description-section h2 {
    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 43px;
    font-weight: 400;

    line-height: 1.1;
}

.product-description-content > p {
    margin-bottom: 35px;

    color: var(--text-secondary);

    font-size: 12px;

    line-height: 1.9;
}

.product-spec-row {
    padding: 15px 0;

    display: flex;
    justify-content: space-between;

    gap: 25px;

    border-bottom: 1px solid var(--border);

    font-size: 10px;
}

.product-spec-row span {
    color: var(--text-light);
}

.product-spec-row strong {
    color: var(--deep-green);

    font-weight: 600;
}


/* =========================================================
   REVIEWS PREVIEW
========================================================= */

.product-review-preview {
    padding: 65px 0;

    background: var(--white);
}

.review-preview-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.product-review-preview h2 {
    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 35px;
    font-weight: 400;
}

.review-score {
    display: flex;
    align-items: center;

    gap: 20px;
}

.review-score > strong {
    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 48px;
    font-weight: 400;
}

.review-score > div {
    display: flex;
    flex-direction: column;
}

.review-score span {
    color: var(--terracotta);

    letter-spacing: 2px;
}

.review-score small {
    margin-top: 3px;

    color: var(--text-light);

    font-size: 8px;
}


/* =========================================================
   PRODUCT TABLET
========================================================= */

@media (max-width: 1000px) {

    .product-detail-grid {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

    .product-gallery {
        grid-template-columns: 60px 1fr;
    }

    .product-thumb {
        width: 60px;
        height: 75px;
    }

    .product-main-image,
    .detail-demo-image {
        min-height: 540px;
    }

}


/* =========================================================
   PRODUCT MOBILE
========================================================= */

@media (max-width: 768px) {

    .product-breadcrumb {
        padding: 13px 0;
    }

    .product-detail {
        padding: 20px 0 60px;
    }

    .product-detail-grid {
        display: block;
    }

    .product-gallery {
        display: flex;

        flex-direction: column-reverse;

        gap: 10px;
    }

    .product-thumbnails {
        flex-direction: row;

        overflow-x: auto;
    }

    .product-thumb {
        flex-shrink: 0;

        width: 65px;
        height: 72px;
    }

    .product-main-image,
    .detail-demo-image {
        min-height: 470px;
    }

    .detail-demo-frame {
        width: 55%;
        height: 68%;

        border-width: 7px;
    }

    .product-detail-info {
        padding-top: 35px;
    }

    .product-detail-info h1 {
        font-size: 40px;
    }

    .product-actions {
        grid-template-columns: 1fr;
    }

    .detail-add-cart,
    .detail-buy-now {
        min-height: 52px;
    }

    .product-description-section {
        padding: 65px 0;
    }

    .product-description-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .review-preview-inner {
        align-items: flex-start;

        flex-direction: column;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .product-main-image,
    .detail-demo-image {
        min-height: 400px;
    }

    .detail-benefits {
        grid-template-columns: 1fr;
    }

    .detail-benefits > div {
        border-right: 0;

        border-bottom: 1px solid var(--border);
    }

    .detail-benefits > div:last-child {
        border-bottom: 0;
    }

}

/* =========================================================
   CART PAGE
========================================================= */

.cart-page-header {
    padding: 65px 0 55px;

    background: var(--ivory-light);

    text-align: center;

    border-bottom: 1px solid var(--border);
}

.cart-page-header h1 {
    margin-top: 10px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 5vw, 62px);
    font-weight: 400;

    line-height: 1;

    letter-spacing: -1.5px;
}

.cart-page-header p {
    margin-top: 14px;

    color: var(--text-secondary);

    font-size: 11px;
}


/* =========================================================
   CART LAYOUT
========================================================= */

.cart-page {
    padding: 65px 0 100px;

    background: var(--white);
}

.cart-layout {
    display: grid;

    grid-template-columns: minmax(0, 1.55fr) minmax(330px, .65fr);

    gap: 80px;

    align-items: start;
}


/* =========================================================
   PRODUCT HEADING
========================================================= */

.cart-products-heading {
    padding-bottom: 14px;

    display: flex;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);

    color: var(--text-light);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================================
   CART ITEM
========================================================= */

.cart-item {
    position: relative;

    padding: 25px 0;

    display: grid;

    grid-template-columns: 145px 1fr auto;

    gap: 25px;

    border-bottom: 1px solid var(--border);
}


/* IMAGE */

.cart-item-image {
    height: 175px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #DED4C8;

    overflow: hidden;
}

.cart-demo-frame {
    width: 57%;
    height: 70%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FAF7F2;

    border: 4px solid var(--deep-green);

    box-shadow: 0 12px 24px rgba(16,12,13,.12);
}

.cart-demo-frame span {
    color: var(--terracotta);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;
}


/* =========================================================
   CART PRODUCT INFO
========================================================= */

.cart-item-info {
    padding: 6px 0;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
}

.cart-item-category {
    color: var(--terracotta);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.3px;
}

.cart-item-info h2 {
    margin-top: 6px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 19px;
    font-weight: 400;

    line-height: 1.25;
}

.cart-item-variant {
    margin-top: 9px;

    color: var(--text-light);

    font-size: 9px;
}

.cart-item-price-mobile {
    display: none;
}


/* =========================================================
   QUANTITY + REMOVE
========================================================= */

.cart-item-bottom {
    margin-top: auto;

    display: flex;
    align-items: center;

    gap: 18px;
}

.cart-quantity {
    width: 105px;
    height: 38px;

    display: grid;

    grid-template-columns: 34px 37px 34px;

    border: 1px solid var(--border);
}

.cart-quantity button {
    color: var(--deep-green);

    font-size: 15px;
}

.cart-quantity input {
    width: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--espresso);

    text-align: center;

    font-size: 10px;
}

.cart-remove {
    color: var(--text-light);

    font-size: 8px;

    text-decoration: underline;

    transition: color .2s ease;
}

.cart-remove:hover {
    color: var(--terracotta);
}


/* =========================================================
   ITEM TOTAL
========================================================= */

.cart-item-total {
    padding-top: 8px;

    color: var(--deep-green);

    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   CONTINUE SHOPPING
========================================================= */

.cart-continue {
    padding-top: 20px;
}

.cart-continue a {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--deep-green);

    font-size: 9px;
    font-weight: 600;
}

.cart-continue a span {
    font-size: 15px;

    transition: transform .2s ease;
}

.cart-continue a:hover span {
    transform: translateX(-4px);
}


/* =========================================================
   CART SUMMARY
========================================================= */

.cart-summary {
    position: sticky;

    top: 110px;

    padding: 32px;

    background: var(--ivory-light);

    border: 1px solid var(--border);
}

.cart-summary h2 {
    margin: 8px 0 27px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 29px;
    font-weight: 400;
}


/* =========================================================
   SUMMARY ROW
========================================================= */

.cart-summary-row {
    padding: 12px 0;

    display: flex;
    justify-content: space-between;

    gap: 20px;

    border-bottom: 1px solid var(--border);

    font-size: 10px;
}

.cart-summary-row span {
    color: var(--text-secondary);
}

.cart-summary-row strong {
    color: var(--deep-green);

    font-weight: 600;
}

.cart-discount-row {
    display: none;
}

.cart-discount-row.active {
    display: flex;
}

.cart-discount-row strong {
    color: var(--terracotta-dark);
}


/* =========================================================
   COUPON
========================================================= */

.cart-coupon {
    padding: 22px 0;

    border-bottom: 1px solid var(--border);
}

.cart-coupon label {
    display: block;

    margin-bottom: 9px;

    color: var(--deep-green);

    font-size: 9px;
    font-weight: 600;
}

.cart-coupon-input {
    height: 43px;

    display: flex;

    background: var(--white);

    border: 1px solid var(--border);
}

.cart-coupon-input input {
    min-width: 0;

    flex: 1;

    padding: 0 13px;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--espresso);

    font-size: 9px;
}

.cart-coupon-input button {
    padding: 0 15px;

    color: var(--deep-green);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1px;
}

.coupon-message {
    min-height: 12px;

    margin-top: 7px;

    color: var(--terracotta-dark);

    font-size: 8px;
}


/* =========================================================
   GRAND TOTAL
========================================================= */

.cart-grand-total {
    padding: 22px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.cart-grand-total > div {
    display: flex;
    flex-direction: column;
}

.cart-grand-total span {
    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;
}

.cart-grand-total small {
    margin-top: 3px;

    color: var(--text-light);

    font-size: 7px;
}

.cart-grand-total > strong {
    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
    font-weight: 400;
}


/* =========================================================
   CHECKOUT BUTTON
========================================================= */

.cart-checkout-btn {
    min-height: 54px;

    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    background: var(--deep-green);

    color: var(--white);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: background .25s ease;
}

.cart-checkout-btn:hover {
    background: var(--terracotta);
}

.cart-checkout-btn span {
    font-size: 15px;
}


/* =========================================================
   CART TRUST
========================================================= */

.cart-trust {
    margin-top: 18px;

    display: flex;
    justify-content: center;

    gap: 22px;
}

.cart-trust > div {
    display: flex;
    align-items: center;

    gap: 6px;

    color: var(--text-light);

    font-size: 7px;
}

.cart-trust svg {
    width: 13px;
    height: 13px;

    fill: none;

    stroke: var(--deep-green);

    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   CART TABLET
========================================================= */

@media (max-width: 1000px) {

    .cart-layout {
        grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);

        gap: 40px;
    }

}


/* =========================================================
   CART MOBILE
========================================================= */

@media (max-width: 768px) {

    .cart-page-header {
        padding: 45px 0 40px;
    }

    .cart-page-header h1 {
        font-size: 43px;
    }

    .cart-page {
        padding: 35px 0 70px;
    }

    .cart-layout {
        display: block;
    }

    .cart-products-heading {
        display: none;
    }

    .cart-item {
        grid-template-columns: 110px 1fr;

        gap: 17px;

        padding: 18px 0;
    }

    .cart-item-image {
        height: 140px;
    }

    .cart-item-total {
        display: none;
    }

    .cart-item-price-mobile {
        display: block;

        margin-top: 9px;

        color: var(--deep-green);

        font-size: 11px;
        font-weight: 600;
    }

    .cart-item-bottom {
        margin-top: 15px;

        gap: 13px;
    }

    .cart-quantity {
        width: 96px;

        grid-template-columns: 31px 34px 31px;
    }

    .cart-summary {
        position: static;

        margin-top: 45px;

        padding: 27px 22px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .cart-item {
        grid-template-columns: 95px 1fr;
    }

    .cart-item-image {
        height: 120px;
    }

    .cart-item-info h2 {
        font-size: 16px;
    }

    .cart-trust {
        gap: 12px;
    }

}
/* =========================================================
   CHECKOUT PAGE
========================================================= */

.checkout-header {
    padding: 55px 0 48px;

    background: var(--ivory-light);

    text-align: center;

    border-bottom: 1px solid var(--border);
}

.checkout-header h1 {
    margin-top: 9px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(40px, 4.5vw, 57px);
    font-weight: 400;

    line-height: 1;

    letter-spacing: -1.5px;
}

.checkout-header p {
    margin-top: 13px;

    color: var(--text-secondary);

    font-size: 10px;
}


/* =========================================================
   LAYOUT
========================================================= */

.checkout-page {
    padding: 60px 0 100px;

    background: var(--white);
}

.checkout-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(350px, .75fr);

    gap: 80px;

    align-items: start;
}


/* =========================================================
   CHECKOUT BLOCK
========================================================= */

.checkout-block {
    padding: 0 0 45px;

    margin-bottom: 45px;

    border-bottom: 1px solid var(--border);
}

.checkout-block:last-child {
    margin-bottom: 0;

    border-bottom: 0;
}

.checkout-block-heading {
    margin-bottom: 27px;

    display: flex;
    align-items: flex-start;

    gap: 17px;
}

.checkout-step {
    width: 35px;
    height: 35px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--deep-green);

    color: var(--white);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 10px;
}

.checkout-block-heading h2 {
    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
    font-weight: 400;
}

.checkout-block-heading p {
    margin-top: 4px;

    color: var(--text-light);

    font-size: 9px;
}


/* =========================================================
   FIELDS
========================================================= */

.checkout-fields {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.checkout-field {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.checkout-full {
    grid-column: 1 / -1;
}

.checkout-field label {
    color: var(--deep-green);

    font-size: 9px;
    font-weight: 600;
}

.checkout-field label small {
    margin-left: 4px;

    color: var(--text-light);

    font-size: 7px;
    font-weight: 400;
}

.checkout-field > input,
.checkout-field > select {
    width: 100%;
    height: 48px;

    padding: 0 14px;

    background: var(--white);

    border: 1px solid var(--border);

    outline: 0;

    color: var(--espresso);

    font-family: inherit;

    font-size: 10px;

    transition: border-color .2s ease;
}

.checkout-field > input:focus,
.checkout-field > select:focus {
    border-color: var(--deep-green);
}


/* =========================================================
   PHONE
========================================================= */

.checkout-phone {
    height: 48px;

    display: flex;

    border: 1px solid var(--border);

    transition: border-color .2s ease;
}

.checkout-phone:focus-within {
    border-color: var(--deep-green);
}

.checkout-phone span {
    width: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--ivory-light);

    border-right: 1px solid var(--border);

    color: var(--deep-green);

    font-size: 10px;
    font-weight: 600;
}

.checkout-phone input {
    min-width: 0;

    flex: 1;

    padding: 0 14px;

    border: 0;
    outline: 0;

    color: var(--espresso);

    font-size: 10px;
}


/* =========================================================
   PAYMENT OPTIONS
========================================================= */

.payment-options {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.payment-option {
    min-height: 70px;

    position: relative;

    padding: 15px 18px;

    display: flex;
    align-items: center;

    gap: 14px;

    border: 1px solid var(--border);

    cursor: pointer;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.payment-option:hover,
.payment-option.active {
    border-color: var(--deep-green);

    background: var(--ivory-light);
}

.payment-option input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.payment-radio {
    width: 17px;
    height: 17px;

    position: relative;

    flex-shrink: 0;

    border: 1px solid var(--deep-green);

    border-radius: 50%;
}

.payment-option.active .payment-radio::after {
    content: "";

    width: 9px;
    height: 9px;

    position: absolute;

    top: 3px;
    left: 3px;

    background: var(--deep-green);

    border-radius: 50%;
}

.payment-option-content {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.payment-option-content strong {
    color: var(--deep-green);

    font-size: 10px;
}

.payment-option-content span {
    color: var(--text-light);

    font-size: 8px;
}

.payment-secure-badge {
    margin-left: auto;

    padding: 5px 7px;

    background: rgba(1,51,40,.08);

    color: var(--deep-green);

    font-size: 6px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   SUMMARY
========================================================= */

.checkout-summary {
    position: sticky;

    top: 105px;

    padding: 32px;

    background: var(--ivory-light);

    border: 1px solid var(--border);
}

.checkout-summary > h2 {
    margin: 8px 0 25px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 28px;
    font-weight: 400;
}


/* =========================================================
   SUMMARY PRODUCT
========================================================= */

.checkout-product {
    padding-bottom: 22px;

    display: grid;

    grid-template-columns: 70px 1fr auto;

    gap: 13px;

    align-items: center;

    border-bottom: 1px solid var(--border);
}

.checkout-product-image {
    width: 70px;
    height: 82px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #DED4C8;
}

.checkout-demo-frame {
    width: 45%;
    height: 62%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FAF7F2;

    border: 2px solid var(--deep-green);
}

.checkout-demo-frame span {
    color: var(--terracotta);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 10px;
}

.checkout-product-qty {
    width: 18px;
    height: 18px;

    position: absolute;

    top: -7px;
    right: -7px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--terracotta);

    color: var(--white);

    border-radius: 50%;

    font-size: 7px;
    font-weight: 700;
}

.checkout-product-info {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 5px;
}

.checkout-product-info strong {
    color: var(--deep-green);

    font-size: 9px;

    line-height: 1.45;
}

.checkout-product-info span {
    color: var(--text-light);

    font-size: 8px;
}

.checkout-product-price {
    color: var(--deep-green);

    font-size: 10px;
    font-weight: 600;
}


/* =========================================================
   SUMMARY LINES
========================================================= */

.checkout-summary-lines {
    padding: 18px 0;

    border-bottom: 1px solid var(--border);
}

.checkout-summary-lines > div {
    padding: 7px 0;

    display: flex;
    justify-content: space-between;

    gap: 20px;

    font-size: 9px;
}

.checkout-summary-lines span {
    color: var(--text-secondary);
}

.checkout-summary-lines strong {
    color: var(--deep-green);
}

.checkout-free {
    font-size: 8px;

    letter-spacing: .5px;
}


/* =========================================================
   TOTAL
========================================================= */

.checkout-total {
    padding: 22px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.checkout-total > div {
    display: flex;
    flex-direction: column;
}

.checkout-total span {
    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;
}

.checkout-total small {
    margin-top: 3px;

    color: var(--text-light);

    font-size: 7px;
}

.checkout-total > strong {
    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
    font-weight: 400;
}


/* =========================================================
   PLACE ORDER
========================================================= */

.checkout-place-order {
    width: 100%;
    min-height: 55px;

    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    background: var(--deep-green);

    color: var(--white);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: background .25s ease;
}

.checkout-place-order:hover {
    background: var(--terracotta);
}

.checkout-place-order span {
    font-size: 15px;
}

.checkout-error {
    min-height: 12px;

    margin-top: 8px;

    color: var(--terracotta-dark);

    text-align: center;

    font-size: 8px;
}


/* =========================================================
   SECURITY
========================================================= */

.checkout-security {
    margin-top: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    color: var(--text-light);

    font-size: 7px;

    line-height: 1.5;
}

.checkout-security svg {
    width: 13px;
    height: 13px;

    flex-shrink: 0;

    fill: none;

    stroke: var(--deep-green);

    stroke-width: 1.4;
}

.checkout-back-cart {
    margin-top: 20px;

    padding-top: 17px;

    border-top: 1px solid var(--border);

    text-align: center;
}

.checkout-back-cart a {
    color: var(--deep-green);

    font-size: 8px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .checkout-layout {
        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(320px, .85fr);

        gap: 40px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .checkout-header {
        padding: 42px 0 38px;
    }

    .checkout-header h1 {
        font-size: 41px;
    }

    .checkout-page {
        padding: 35px 0 70px;
    }

    .checkout-layout {
        display: flex;

        flex-direction: column;
    }

    .checkout-form-area {
        width: 100%;

        order: 2;
    }

    .checkout-summary {
        width: 100%;

        position: static;

        order: 1;

        padding: 25px 20px;
    }

    .checkout-block {
        padding-bottom: 35px;

        margin-bottom: 35px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .checkout-fields {
        grid-template-columns: 1fr;
    }

    .checkout-full {
        grid-column: auto;
    }

    .checkout-product {
        grid-template-columns: 60px 1fr auto;
    }

    .checkout-product-image {
        width: 60px;
        height: 72px;
    }

}

/* =========================================================
   ACCOUNT / LOGIN PAGE
========================================================= */

.account-page {
    background: var(--white);
}

.account-layout {
    min-height: 720px;

    display: grid;

    grid-template-columns: 45% 55%;
}


/* =========================================================
   BRAND PANEL
========================================================= */

.account-brand-panel {
    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--deep-green);
}

.account-brand-panel::before {
    content: "";

    width: 330px;
    height: 330px;

    position: absolute;

    top: -170px;
    right: -120px;

    border: 1px solid rgba(227,220,210,.18);

    border-radius: 50%;
}

.account-brand-panel::after {
    content: "";

    width: 240px;
    height: 240px;

    position: absolute;

    right: 55px;
    bottom: -150px;

    border: 1px solid rgba(227,220,210,.15);

    border-radius: 50%;
}

.account-brand-inner {
    width: 100%;
    max-width: 530px;

    position: relative;

    z-index: 2;

    margin-left: auto;

    padding: 80px 75px;
}

.account-brand-inner .section-label {
    color: var(--terracotta-light);
}

.account-brand-inner h1 {
    margin-top: 15px;

    color: var(--ivory-light);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(45px, 4.5vw, 66px);
    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -1.5px;
}

.account-brand-inner > p {
    max-width: 410px;

    margin-top: 24px;

    color: rgba(255,255,255,.60);

    font-size: 11px;

    line-height: 1.9;
}


/* =========================================================
   BRAND BENEFITS
========================================================= */

.account-brand-benefits {
    margin-top: 60px;

    border-top: 1px solid rgba(255,255,255,.14);
}

.account-brand-benefits > div {
    padding: 17px 0;

    display: flex;
    align-items: center;

    gap: 18px;

    border-bottom: 1px solid rgba(255,255,255,.14);
}

.account-brand-benefits span {
    color: var(--terracotta-light);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 11px;
}

.account-brand-benefits p {
    color: rgba(255,255,255,.75);

    font-size: 9px;
}


/* =========================================================
   FORM PANEL
========================================================= */

.account-form-panel {
    display: flex;
    align-items: center;

    background: var(--ivory-light);
}

.account-form-container {
    width: 100%;
    max-width: 470px;

    margin: 0 auto;

    padding: 65px 35px;
}


/* =========================================================
   TABS
========================================================= */

.account-tabs {
    margin-bottom: 43px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    border-bottom: 1px solid var(--border);
}

.account-tab {
    position: relative;

    padding: 15px 10px;

    color: var(--text-light);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .8px;
}

.account-tab::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -1px;

    height: 2px;

    background: var(--deep-green);

    transform: scaleX(0);

    transition: transform .2s ease;
}

.account-tab.active {
    color: var(--deep-green);
}

.account-tab.active::after {
    transform: scaleX(1);
}


/* =========================================================
   FORMS
========================================================= */

.account-form {
    display: none;
}

.account-form.active {
    display: block;
}

.account-form-heading {
    margin-bottom: 30px;
}

.account-form-heading h2 {
    margin-top: 8px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 38px;
    font-weight: 400;

    line-height: 1;
}

.account-form-heading p {
    margin-top: 11px;

    color: var(--text-light);

    font-size: 9px;

    line-height: 1.7;
}


/* =========================================================
   ACCOUNT FIELD
========================================================= */

.account-field {
    margin-bottom: 18px;
}

.account-field > label,
.account-label-row label {
    display: block;

    margin-bottom: 7px;

    color: var(--deep-green);

    font-size: 9px;
    font-weight: 600;
}

.account-field > input {
    width: 100%;
    height: 49px;

    padding: 0 14px;

    background: var(--white);

    border: 1px solid var(--border);

    outline: 0;

    color: var(--espresso);

    font-size: 10px;

    transition: border-color .2s ease;
}

.account-field > input:focus {
    border-color: var(--deep-green);
}


/* =========================================================
   LABEL ROW
========================================================= */

.account-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.account-label-row a {
    margin-bottom: 7px;

    color: var(--text-light);

    font-size: 8px;

    text-decoration: underline;
}


/* =========================================================
   PASSWORD
========================================================= */

.account-password {
    height: 49px;

    display: flex;

    background: var(--white);

    border: 1px solid var(--border);

    transition: border-color .2s ease;
}

.account-password:focus-within {
    border-color: var(--deep-green);
}

.account-password input {
    min-width: 0;

    flex: 1;

    padding: 0 14px;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--espresso);

    font-size: 10px;
}

.password-toggle {
    padding: 0 14px;

    color: var(--deep-green);

    font-size: 8px;
    font-weight: 700;

    text-transform: uppercase;
}


/* =========================================================
   PHONE
========================================================= */

.account-phone {
    height: 49px;

    display: flex;

    background: var(--white);

    border: 1px solid var(--border);
}

.account-phone:focus-within {
    border-color: var(--deep-green);
}

.account-phone > span {
    width: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--ivory);

    border-right: 1px solid var(--border);

    color: var(--deep-green);

    font-size: 9px;
    font-weight: 600;
}

.account-phone input {
    min-width: 0;

    flex: 1;

    padding: 0 14px;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--espresso);

    font-size: 10px;
}


/* =========================================================
   CONSENT
========================================================= */

.account-consent {
    margin: 3px 0 22px;

    display: flex;
    align-items: flex-start;

    gap: 9px;

    cursor: pointer;
}

.account-consent input {
    margin-top: 1px;

    accent-color: var(--deep-green);
}

.account-consent span {
    color: var(--text-light);

    font-size: 8px;

    line-height: 1.6;
}


/* =========================================================
   SUBMIT
========================================================= */

.account-submit {
    width: 100%;
    height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    background: var(--deep-green);

    color: var(--white);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: background .2s ease;
}

.account-submit:hover {
    background: var(--terracotta);
}

.account-submit span {
    font-size: 15px;
}

.account-message {
    min-height: 14px;

    margin-top: 9px;

    color: var(--terracotta-dark);

    text-align: center;

    font-size: 8px;
}


/* =========================================================
   MOBILE SWITCH
========================================================= */

.account-switch-mobile {
    display: none;

    margin-top: 22px;

    color: var(--text-light);

    text-align: center;

    font-size: 8px;
}

.account-switch-mobile button {
    margin-left: 4px;

    color: var(--deep-green);

    font-size: 8px;
    font-weight: 700;

    text-decoration: underline;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .account-layout {
        grid-template-columns: 40% 60%;
    }

    .account-brand-inner {
        padding: 60px 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .account-layout {
        display: block;

        min-height: auto;
    }

    .account-brand-panel {
        min-height: 280px;
    }

    .account-brand-inner {
        max-width: none;

        padding: 50px 24px;
    }

    .account-brand-inner h1 {
        font-size: 43px;
    }

    .account-brand-inner > p {
        margin-top: 16px;
    }

    .account-brand-benefits {
        display: none;
    }

    .account-form-container {
        max-width: 520px;

        padding: 45px 22px 65px;
    }

    .account-tabs {
        margin-bottom: 35px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .account-brand-panel {
        min-height: 240px;
    }

    .account-brand-inner h1 {
        font-size: 37px;
    }

    .account-form-heading h2 {
        font-size: 34px;
    }

    .account-switch-mobile {
        display: block;
    }

}

/* =========================================================
   MY ACCOUNT
========================================================= */

.myaccount-header {
    padding: 52px 0 45px;

    background: var(--ivory-light);

    text-align: center;

    border-bottom: 1px solid var(--border);
}

.myaccount-header h1 {
    margin-top: 8px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(40px, 4vw, 55px);
    font-weight: 400;

    line-height: 1;
}

.myaccount-header p {
    margin-top: 12px;

    color: var(--text-light);

    font-size: 9px;
}


/* =========================================================
   LAYOUT
========================================================= */

.myaccount-page {
    padding: 60px 0 100px;

    background: var(--white);
}

.myaccount-layout {
    display: grid;

    grid-template-columns: 230px minmax(0, 1fr);

    gap: 65px;

    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.myaccount-sidebar {
    position: sticky;

    top: 110px;

    border: 1px solid var(--border);
}

.myaccount-customer {
    padding: 25px 20px;

    display: flex;
    align-items: center;

    gap: 13px;

    background: var(--ivory-light);

    border-bottom: 1px solid var(--border);
}

.myaccount-avatar {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--deep-green);

    color: var(--white);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 13px;
}

.myaccount-customer > div:last-child {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 4px;
}

.myaccount-customer span {
    color: var(--terracotta);

    font-size: 6px;
    font-weight: 700;

    letter-spacing: 1.3px;
}

.myaccount-customer strong {
    overflow: hidden;

    color: var(--deep-green);

    font-size: 10px;

    text-overflow: ellipsis;
    white-space: nowrap;
}


/* =========================================================
   NAVIGATION
========================================================= */

.myaccount-nav {
    display: flex;
    flex-direction: column;
}

.myaccount-nav-item {
    min-height: 49px;

    padding: 0 17px;

    display: flex;
    align-items: center;

    gap: 12px;

    border-bottom: 1px solid var(--border);

    color: var(--text-secondary);

    font-size: 9px;

    text-align: left;

    transition:
        background .2s ease,
        color .2s ease;
}

.myaccount-nav-item:last-child {
    border-bottom: 0;
}

.myaccount-nav-item span {
    color: var(--terracotta);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 8px;
}

.myaccount-nav-item:hover,
.myaccount-nav-item.active {
    background: var(--deep-green);

    color: var(--white);
}

.myaccount-nav-item.active span,
.myaccount-nav-item:hover span {
    color: var(--terracotta-light);
}

.myaccount-logout {
    margin-top: 10px;
}


/* =========================================================
   CONTENT
========================================================= */

.myaccount-section {
    display: none;
}

.myaccount-section.active {
    display: block;
}

.myaccount-section-heading {
    min-height: 65px;

    margin-bottom: 25px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    border-bottom: 1px solid var(--border);
}

.myaccount-section-heading h2 {
    margin: 7px 0 15px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 34px;
    font-weight: 400;
}

.myaccount-order-count {
    margin-bottom: 17px;

    color: var(--text-light);

    font-size: 8px;
}


/* =========================================================
   ORDER CARD
========================================================= */

.account-order-card {
    margin-bottom: 25px;

    border: 1px solid var(--border);

    background: var(--white);
}

.account-order-top {
    min-height: 65px;

    padding: 14px 20px;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr auto;

    gap: 25px;

    align-items: center;

    background: var(--ivory-light);

    border-bottom: 1px solid var(--border);
}

.account-order-top > div:not(.account-order-status) {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.account-order-top span {
    color: var(--text-light);

    font-size: 6px;
    font-weight: 700;

    letter-spacing: 1px;
}

.account-order-top strong {
    color: var(--deep-green);

    font-size: 9px;
}


/* =========================================================
   STATUS
========================================================= */

.account-order-status {
    padding: 7px 10px;

    display: flex;
    align-items: center;

    gap: 6px;

    background: var(--white);

    color: var(--deep-green);

    border: 1px solid var(--border);

    font-size: 7px;
    font-weight: 700;

    text-transform: uppercase;
}

.account-order-status i {
    width: 6px;
    height: 6px;

    background: var(--terracotta);

    border-radius: 50%;
}

.account-order-status.delivered i {
    background: var(--deep-green);
}


/* =========================================================
   PRODUCT
========================================================= */

.account-order-product {
    padding: 22px 20px;

    display: grid;

    grid-template-columns: 85px minmax(0, 1fr) auto;

    gap: 20px;

    align-items: center;
}

.account-order-image {
    width: 85px;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #DED4C8;
}

.account-order-image.second {
    background: #D5B59F;
}

.account-order-image > div {
    width: 45%;
    height: 65%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--ivory-light);

    border: 2px solid var(--deep-green);

    color: var(--terracotta);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 11px;
}

.account-order-product-info > span {
    color: var(--terracotta);

    font-size: 6px;
    font-weight: 700;

    letter-spacing: 1.2px;
}

.account-order-product-info h3 {
    margin-top: 7px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;
    font-weight: 400;
}

.account-order-product-info p {
    margin-top: 8px;

    color: var(--text-light);

    font-size: 8px;
}


/* =========================================================
   ORDER ACTIONS
========================================================= */

.account-order-actions {
    min-width: 125px;

    display: flex;
    flex-direction: column;

    gap: 8px;
}

.account-order-primary {
    min-height: 36px;

    padding: 0 13px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    background: var(--deep-green);

    color: var(--white);

    font-size: 7px;
    font-weight: 700;

    text-transform: uppercase;
}

.account-order-primary span {
    font-size: 12px;
}

.account-order-secondary {
    color: var(--deep-green);

    font-size: 7px;
    font-weight: 600;

    text-align: center;

    text-decoration: underline;
}


/* =========================================================
   ORDER PROGRESS
========================================================= */

.account-order-progress {
    padding: 5px 25px 23px;
}

.order-progress-line {
    position: relative;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    align-items: center;
}

.order-progress-line::before {
    content: "";

    height: 1px;

    position: absolute;

    left: 6px;
    right: 6px;

    background: var(--border);
}

.order-progress-line span {
    width: 9px;
    height: 9px;

    position: relative;

    z-index: 2;

    justify-self: center;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 50%;
}

.order-progress-line span.active {
    background: var(--deep-green);

    border-color: var(--deep-green);
}

.order-progress-labels {
    margin-top: 8px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    text-align: center;
}

.order-progress-labels span {
    color: var(--text-light);

    font-size: 6px;
}


/* =========================================================
   SETTINGS
========================================================= */

.account-settings-card {
    padding: 30px;

    background: var(--ivory-light);

    border: 1px solid var(--border);
}

.account-settings-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.account-setting-full {
    grid-column: 1 / -1;
}

.account-save-button {
    min-width: 165px;
    height: 44px;

    margin-top: 25px;

    padding: 0 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    background: var(--deep-green);

    color: var(--white);

    font-size: 8px;
    font-weight: 700;

    text-transform: uppercase;
}


/* =========================================================
   ADDRESS
========================================================= */

.account-add-address {
    margin-bottom: 15px;

    color: var(--deep-green);

    font-size: 8px;
    font-weight: 700;
}

.account-address-card {
    max-width: 430px;

    padding: 28px;

    background: var(--ivory-light);

    border: 1px solid var(--border);
}

.account-address-top {
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.account-address-top span {
    color: var(--terracotta);

    font-size: 6px;
    font-weight: 700;

    letter-spacing: 1px;
}

.account-address-top strong {
    padding: 5px 8px;

    background: var(--deep-green);

    color: var(--white);

    font-size: 6px;

    letter-spacing: 1px;
}

.account-address-card h3 {
    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 19px;
    font-weight: 400;
}

.account-address-card p {
    margin-top: 10px;

    color: var(--text-secondary);

    font-size: 9px;

    line-height: 1.8;
}

.account-address-phone {
    font-weight: 600;
}

.account-address-actions {
    margin-top: 20px;

    padding-top: 15px;

    display: flex;

    gap: 20px;

    border-top: 1px solid var(--border);
}

.account-address-actions button {
    color: var(--deep-green);

    font-size: 8px;
    font-weight: 600;

    text-decoration: underline;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .myaccount-layout {
        grid-template-columns: 190px minmax(0, 1fr);

        gap: 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .myaccount-page {
        padding: 35px 0 70px;
    }

    .myaccount-layout {
        display: block;
    }

    .myaccount-sidebar {
        position: static;

        margin-bottom: 35px;
    }

    .myaccount-nav {
        display: grid;

        grid-template-columns: 1fr 1fr;
    }

    .myaccount-nav-item {
        border-right: 1px solid var(--border);
    }

    .myaccount-logout {
        margin-top: 0;
    }

    .account-order-top {
        grid-template-columns: 1fr 1fr;
    }

    .account-order-status {
        justify-self: start;
    }

    .account-order-product {
        grid-template-columns: 75px minmax(0, 1fr);
    }

    .account-order-image {
        width: 75px;
        height: 90px;
    }

    .account-order-actions {
        grid-column: 1 / -1;

        width: 100%;

        flex-direction: row;
    }

    .account-order-primary {
        flex: 1;
    }

    .account-order-secondary {
        min-width: 100px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .myaccount-header {
        padding: 40px 0 35px;
    }

    .myaccount-header h1 {
        font-size: 40px;
    }

    .myaccount-section-heading h2 {
        font-size: 29px;
    }

    .account-order-top {
        gap: 16px;
    }

    .account-order-product {
        padding: 18px 15px;

        gap: 14px;
    }

    .account-order-progress {
        padding-left: 12px;
        padding-right: 12px;
    }

    .account-settings-grid {
        grid-template-columns: 1fr;
    }

    .account-setting-full {
        grid-column: auto;
    }

}

/* =========================================================
   ORDER DETAIL
========================================================= */

.order-detail-header {
    padding: 35px 0 42px;

    background: var(--ivory-light);

    border-bottom: 1px solid var(--border);
}

.order-detail-back {
    display: inline-block;

    margin-bottom: 28px;

    color: var(--deep-green);

    font-size: 8px;
    font-weight: 600;
}

.order-detail-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}

.order-detail-header h1 {
    margin-top: 8px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(36px, 4vw, 52px);
    font-weight: 400;

    line-height: 1;
}

.order-detail-header p {
    margin-top: 10px;

    color: var(--text-light);

    font-size: 9px;
}

.order-detail-status {
    padding: 10px 15px;

    display: flex;
    align-items: center;

    gap: 8px;

    background: var(--white);

    border: 1px solid var(--border);

    color: var(--deep-green);

    font-size: 8px;
    font-weight: 700;

    text-transform: uppercase;
}

.order-detail-status span {
    width: 7px;
    height: 7px;

    background: var(--terracotta);

    border-radius: 50%;
}


/* =========================================================
   PAGE
========================================================= */

.order-detail-page {
    padding: 55px 0 100px;

    background: var(--white);
}

.order-detail-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(300px, .6fr);

    gap: 45px;

    align-items: start;
}


/* =========================================================
   CARDS
========================================================= */

.order-detail-card {
    margin-bottom: 28px;

    padding: 30px;

    border: 1px solid var(--border);

    background: var(--white);
}

.order-card-heading {
    padding-bottom: 25px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    border-bottom: 1px solid var(--border);
}

.order-card-heading.simple {
    align-items: center;
}

.order-card-heading h2 {
    margin-top: 7px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 28px;
    font-weight: 400;
}

.order-estimate {
    display: flex;
    flex-direction: column;

    gap: 5px;

    text-align: right;
}

.order-estimate span {
    color: var(--text-light);

    font-size: 6px;
    font-weight: 700;

    letter-spacing: 1px;
}

.order-estimate strong {
    color: var(--deep-green);

    font-size: 10px;
}


/* =========================================================
   TRACKING
========================================================= */

.order-tracking {
    padding-top: 30px;
}

.order-tracking-line {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    position: relative;
}

.order-tracking-line::before {
    content: "";

    height: 1px;

    position: absolute;

    top: 17px;
    left: 12.5%;
    right: 12.5%;

    background: var(--border);
}

.order-track-step {
    position: relative;

    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.order-track-dot {
    width: 35px;
    height: 35px;

    margin-bottom: 11px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 50%;

    color: var(--text-light);

    font-size: 7px;
    font-weight: 700;
}

.order-track-step.completed .order-track-dot {
    background: var(--deep-green);

    border-color: var(--deep-green);

    color: var(--white);
}

.order-track-step.current .order-track-dot {
    background: var(--terracotta);

    border-color: var(--terracotta);

    color: var(--white);
}

.order-track-step strong {
    color: var(--deep-green);

    font-size: 8px;
}

.order-track-step span {
    margin-top: 5px;

    color: var(--text-light);

    font-size: 6px;
}


/* =========================================================
   SHIPMENT
========================================================= */

.order-shipment-box {
    margin-top: 30px;

    padding: 18px;

    display: grid;

    grid-template-columns: 1fr 1fr auto;

    gap: 25px;

    align-items: center;

    background: var(--ivory-light);
}

.order-shipment-box > div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.order-shipment-box span {
    color: var(--text-light);

    font-size: 6px;
    font-weight: 700;

    letter-spacing: 1px;
}

.order-shipment-box strong {
    color: var(--deep-green);

    font-size: 8px;
}

.order-shipment-box a {
    color: var(--deep-green);

    font-size: 8px;
    font-weight: 700;
}


/* =========================================================
   ORDER PRODUCT
========================================================= */

.order-detail-product {
    padding-top: 25px;

    display: grid;

    grid-template-columns: 100px minmax(0, 1fr) auto;

    gap: 22px;

    align-items: center;
}

.order-detail-product-image {
    width: 100px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #DED4C8;
}

.order-detail-product-image > div {
    width: 48%;
    height: 65%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--ivory-light);

    border: 2px solid var(--deep-green);

    color: var(--terracotta);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 12px;
}

.order-detail-product-info > span {
    color: var(--terracotta);

    font-size: 6px;
    font-weight: 700;

    letter-spacing: 1px;
}

.order-detail-product-info h3 {
    margin: 7px 0 9px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 19px;
    font-weight: 400;
}

.order-detail-product-info p {
    margin-top: 4px;

    color: var(--text-light);

    font-size: 8px;
}

.order-detail-product-price {
    display: flex;
    flex-direction: column;

    gap: 5px;

    text-align: right;
}

.order-detail-product-price strong {
    color: var(--deep-green);

    font-size: 11px;
}

.order-detail-product-price span {
    color: var(--text-light);

    font-size: 7px;

    text-decoration: line-through;
}


/* =========================================================
   SIDEBAR
========================================================= */

.order-detail-sidebar {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.order-side-card {
    padding: 25px;

    background: var(--ivory-light);

    border: 1px solid var(--border);
}

.order-side-card h3 {
    margin: 7px 0 20px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;
    font-weight: 400;
}

.order-side-row {
    padding: 10px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    border-bottom: 1px solid var(--border);

    font-size: 8px;
}

.order-side-row:last-child {
    border-bottom: 0;
}

.order-side-row span {
    color: var(--text-light);
}

.order-side-row strong {
    color: var(--deep-green);

    font-size: 8px;
}

.order-side-row .payment-paid {
    color: var(--deep-green);

    text-transform: uppercase;
}


/* =========================================================
   ADDRESS
========================================================= */

.order-address strong {
    color: var(--deep-green);

    font-size: 10px;
}

.order-address p {
    margin-top: 10px;

    color: var(--text-secondary);

    font-size: 8px;

    line-height: 1.8;
}

.order-address span {
    display: block;

    margin-top: 10px;

    color: var(--deep-green);

    font-size: 8px;
    font-weight: 600;
}


/* =========================================================
   PRICE
========================================================= */

.order-price-row {
    padding: 10px 0;

    display: flex;
    justify-content: space-between;

    gap: 15px;

    border-bottom: 1px solid var(--border);
}

.order-price-row span {
    color: var(--text-light);

    font-size: 8px;
}

.order-price-row strong {
    color: var(--deep-green);

    font-size: 8px;
}

.order-grand-total {
    padding-top: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.order-grand-total > div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.order-grand-total span {
    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;
}

.order-grand-total small {
    color: var(--text-light);

    font-size: 6px;
}

.order-grand-total > strong {
    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 22px;
    font-weight: 400;
}


/* =========================================================
   HELP
========================================================= */

.order-help {
    padding: 23px;

    background: var(--deep-green);
}

.order-help > span {
    color: var(--terracotta-light);

    font-size: 6px;
    font-weight: 700;

    letter-spacing: 1px;
}

.order-help p {
    margin-top: 8px;

    color: rgba(255,255,255,.7);

    font-size: 8px;
}

.order-help a {
    display: inline-block;

    margin-top: 14px;

    color: var(--white);

    font-size: 8px;
    font-weight: 700;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .order-detail-layout {
        grid-template-columns:
            minmax(0, 1fr)
            280px;

        gap: 25px;
    }

    .order-detail-card {
        padding: 22px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .order-detail-header-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .order-detail-page {
        padding: 35px 0 70px;
    }

    .order-detail-layout {
        display: block;
    }

    .order-detail-sidebar {
        margin-top: 25px;
    }

    .order-card-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .order-estimate {
        text-align: left;
    }

    .order-tracking-line {
        display: flex;
        flex-direction: column;

        gap: 0;
    }

    .order-tracking-line::before {
        width: 1px;
        height: auto;

        top: 17px;
        bottom: 17px;
        left: 17px;
        right: auto;
    }

    .order-track-step {
        min-height: 70px;

        flex-direction: row;

        align-items: flex-start;

        gap: 15px;

        text-align: left;
    }

    .order-track-dot {
        flex-shrink: 0;

        margin-bottom: 0;
    }

    .order-track-step > div:last-child {
        padding-top: 5px;
    }

    .order-shipment-box {
        grid-template-columns: 1fr 1fr;
    }

    .order-shipment-box a {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .order-detail-header h1 {
        font-size: 37px;
    }

    .order-detail-card {
        padding: 18px;
    }

    .order-detail-product {
        grid-template-columns: 75px minmax(0, 1fr);
    }

    .order-detail-product-image {
        width: 75px;
        height: 90px;
    }

    .order-detail-product-price {
        grid-column: 2;

        text-align: left;
    }

    .order-shipment-box {
        grid-template-columns: 1fr;
    }

    .order-shipment-box a {
        grid-column: auto;
    }

}
/* =========================================================
   ABOUT PAGE
========================================================= */

.about-hero {
    padding: 95px 0;

    background: var(--ivory-light);

    text-align: center;
}

.about-hero-inner {
    max-width: 850px;
}

.about-hero h1 {
    margin-top: 15px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(48px, 6vw, 75px);
    font-weight: 400;

    line-height: 1.02;

    letter-spacing: -2px;
}

.about-hero p {
    max-width: 500px;

    margin: 25px auto 0;

    color: var(--text-secondary);

    font-size: 11px;

    line-height: 1.9;
}


/* =========================================================
   ABOUT STORY
========================================================= */

.about-story {
    padding: 100px 0;

    background: var(--white);
}

.about-story-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.about-story-visual {
    min-height: 520px;

    position: relative;

    background: #DED4C8;
}

.about-art {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--ivory-light);

    font-family: Georgia, "Times New Roman", serif;

    box-shadow: 0 25px 50px rgba(16,12,13,.13);
}

.about-art-one {
    width: 230px;
    height: 310px;

    top: 70px;
    left: 17%;

    border: 8px solid var(--deep-green);

    color: var(--terracotta);

    font-size: 45px;
}

.about-art-two {
    width: 170px;
    height: 225px;

    right: 14%;
    bottom: 55px;

    border: 7px solid var(--terracotta);

    color: var(--deep-green);

    font-size: 35px;
}

.about-story-content h2 {
    margin: 10px 0 27px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 4vw, 52px);
    font-weight: 400;

    line-height: 1.08;
}

.about-story-content p {
    max-width: 500px;

    margin-bottom: 15px;

    color: var(--text-secondary);

    font-size: 11px;

    line-height: 1.9;
}


/* =========================================================
   VALUES
========================================================= */

.about-values {
    padding: 90px 0 100px;

    background: var(--ivory-light);
}

.about-values-heading {
    margin-bottom: 50px;
}

.about-values-heading h2 {
    margin-top: 10px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 42px;
    font-weight: 400;

    line-height: 1.1;
}

.about-values-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-value {
    min-height: 220px;

    padding: 28px;

    border-right: 1px solid var(--border);
}

.about-value:first-child {
    border-left: 1px solid var(--border);
}

.about-value > span {
    color: var(--terracotta);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 10px;
}

.about-value h3 {
    margin-top: 45px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;
    font-weight: 400;
}

.about-value p {
    margin-top: 10px;

    color: var(--text-light);

    font-size: 9px;

    line-height: 1.7;
}


/* =========================================================
   ABOUT CTA
========================================================= */

.about-cta {
    padding: 90px 0;

    background: var(--deep-green);

    text-align: center;
}

.about-cta .section-label {
    color: var(--terracotta-light);
}

.about-cta h2 {
    margin-top: 12px;

    color: var(--ivory-light);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 48px;
    font-weight: 400;

    line-height: 1.05;
}

.about-cta a {
    margin-top: 30px;

    display: inline-flex;
    align-items: center;

    gap: 15px;

    padding: 15px 24px;

    background: var(--ivory-light);

    color: var(--deep-green);

    font-size: 8px;
    font-weight: 700;

    text-transform: uppercase;
}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-header {
    padding: 70px 0 60px;

    background: var(--ivory-light);

    text-align: center;
}

.contact-header h1 {
    margin-top: 10px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(43px, 5vw, 62px);
    font-weight: 400;
}

.contact-header p {
    max-width: 480px;

    margin: 15px auto 0;

    color: var(--text-secondary);

    font-size: 10px;

    line-height: 1.8;
}


/* =========================================================
   CONTACT LAYOUT
========================================================= */

.contact-page {
    padding: 80px 0 100px;

    background: var(--white);
}

.contact-layout {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 100px;
}

.contact-info h2 {
    margin-top: 10px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 44px;
    font-weight: 400;

    line-height: 1.08;
}

.contact-info > p {
    max-width: 400px;

    margin-top: 20px;

    color: var(--text-secondary);

    font-size: 10px;

    line-height: 1.9;
}

.contact-info-list {
    margin-top: 45px;

    border-top: 1px solid var(--border);
}

.contact-info-list > div {
    padding: 18px 0;

    display: flex;
    flex-direction: column;

    gap: 5px;

    border-bottom: 1px solid var(--border);
}

.contact-info-list span {
    color: var(--terracotta);

    font-size: 6px;
    font-weight: 700;

    letter-spacing: 1.2px;
}

.contact-info-list strong {
    color: var(--deep-green);

    font-size: 10px;
}

.contact-info-list small {
    color: var(--text-light);

    font-size: 8px;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-box {
    padding: 40px;

    background: var(--ivory-light);

    border: 1px solid var(--border);
}

.contact-form-box > h2 {
    margin: 8px 0 30px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 32px;
    font-weight: 400;
}

.contact-fields {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 17px;
}

.contact-field {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.contact-full {
    grid-column: 1 / -1;
}

.contact-field label {
    color: var(--deep-green);

    font-size: 8px;
    font-weight: 600;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    padding: 0 13px;

    background: var(--white);

    border: 1px solid var(--border);

    outline: 0;

    color: var(--espresso);

    font-family: inherit;

    font-size: 9px;
}

.contact-field input,
.contact-field select {
    height: 47px;
}

.contact-field textarea {
    padding-top: 13px;
    padding-bottom: 13px;

    resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--deep-green);
}

.contact-submit {
    min-width: 170px;
    height: 50px;

    margin-top: 22px;

    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    background: var(--deep-green);

    color: var(--white);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.contact-submit span {
    font-size: 14px;
}

.contact-response-time {
    margin-top: 10px;

    color: var(--text-light);

    font-size: 7px;
}


/* =========================================================
   ABOUT / CONTACT TABLET
========================================================= */

@media (max-width: 900px) {

    .about-story-grid {
        gap: 45px;
    }

    .about-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-value {
        border-bottom: 1px solid var(--border);
    }

    .contact-layout {
        gap: 50px;
    }

}


/* =========================================================
   ABOUT / CONTACT MOBILE
========================================================= */

@media (max-width: 700px) {

    .about-hero {
        padding: 65px 0;
    }

    .about-story {
        padding: 60px 0;
    }

    .about-story-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-story-visual {
        min-height: 430px;
    }

    .about-values {
        padding: 65px 0;
    }

    .about-cta {
        padding: 65px 0;
    }

    .about-cta h2 {
        font-size: 39px;
    }

    .contact-page {
        padding: 55px 0 70px;
    }

    .contact-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value {
        min-height: 180px;
    }

    .about-value h3 {
        margin-top: 30px;
    }

    .contact-form-box {
        padding: 25px 20px;
    }

    .contact-fields {
        grid-template-columns: 1fr;
    }

    .contact-full {
        grid-column: auto;
    }

}

/* =========================================================
   FAQ
========================================================= */

.faq-hero {
    padding: 75px 0 65px;
    background: var(--ivory-light);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.faq-hero-inner {
    max-width: 750px;
}

.faq-hero h1 {
    margin-top: 12px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(45px, 5.5vw, 68px);
    font-weight: 400;

    line-height: 1.03;
    letter-spacing: -1.5px;
}

.faq-hero p {
    max-width: 450px;

    margin: 18px auto 0;

    color: var(--text-secondary);

    font-size: 10px;
    line-height: 1.8;
}


/* =========================================================
   FAQ LAYOUT
========================================================= */

.faq-page {
    padding: 80px 0 100px;
    background: var(--white);
}

.faq-layout {
    display: grid;

    grid-template-columns: 280px minmax(0, 1fr);

    gap: 90px;

    align-items: start;
}


/* =========================================================
   FAQ SIDE
========================================================= */

.faq-side {
    position: sticky;
    top: 110px;
}

.faq-side h2 {
    margin-top: 10px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 35px;
    font-weight: 400;

    line-height: 1.08;
}

.faq-side p {
    margin-top: 17px;

    color: var(--text-secondary);

    font-size: 9px;
    line-height: 1.8;
}

.faq-contact-btn {
    margin-top: 25px;

    min-width: 145px;
    height: 45px;

    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    background: var(--deep-green);

    color: var(--white);

    font-size: 8px;
    font-weight: 700;

    text-transform: uppercase;
}

.faq-contact-btn span {
    font-size: 13px;
}


/* =========================================================
   FAQ GROUP
========================================================= */

.faq-group {
    margin-bottom: 55px;
}

.faq-group:last-child {
    margin-bottom: 0;
}

.faq-group-title {
    padding-bottom: 17px;

    display: flex;
    align-items: center;

    gap: 14px;

    border-bottom: 1px solid var(--deep-green);
}

.faq-group-title > span {
    color: var(--terracotta);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 9px;
}

.faq-group-title h3 {
    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    min-height: 65px;

    padding: 18px 5px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    color: var(--deep-green);

    font-size: 10px;
    font-weight: 600;

    text-align: left;
}

.faq-question > span {
    width: 24px;
    height: 24px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--terracotta);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;

    transition: transform .25s ease;
}

.faq-item.active .faq-question > span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height .3s ease,
        opacity .25s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;

    opacity: 1;
}

.faq-answer p {
    max-width: 700px;

    padding: 0 45px 22px 5px;

    color: var(--text-secondary);

    font-size: 9px;

    line-height: 1.9;
}


/* =========================================================
   FAQ TABLET
========================================================= */

@media (max-width: 900px) {

    .faq-layout {
        grid-template-columns: 220px minmax(0, 1fr);

        gap: 45px;
    }

}


/* =========================================================
   FAQ MOBILE
========================================================= */

@media (max-width: 700px) {

    .faq-hero {
        padding: 55px 0 50px;
    }

    .faq-page {
        padding: 55px 0 70px;
    }

    .faq-layout {
        display: block;
    }

    .faq-side {
        position: static;

        margin-bottom: 55px;
    }

    .faq-side p {
        max-width: 400px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .faq-hero h1 {
        font-size: 41px;
    }

    .faq-group {
        margin-bottom: 45px;
    }

    .faq-question {
        min-height: 60px;

        gap: 15px;

        font-size: 9px;
    }

    .faq-answer p {
        padding-right: 15px;
    }

}

/* =========================================================
   POLICY PAGE
========================================================= */

.policy-hero {
    padding: 65px 0 55px;

    background: var(--ivory-light);

    text-align: center;

    border-bottom: 1px solid var(--border);
}

.policy-hero h1 {
    margin-top: 10px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 5vw, 60px);
    font-weight: 400;

    line-height: 1.05;
}

.policy-hero p {
    max-width: 560px;

    margin: 15px auto 0;

    color: var(--text-secondary);

    font-size: 9px;

    line-height: 1.8;
}


/* =========================================================
   LAYOUT
========================================================= */

.policy-page {
    padding: 75px 0 100px;

    background: var(--white);
}

.policy-layout {
    display: grid;

    grid-template-columns: 220px minmax(0, 1fr);

    gap: 85px;

    align-items: start;
}


/* =========================================================
   NAVIGATION
========================================================= */

.policy-nav {
    position: sticky;

    top: 110px;

    display: flex;
    flex-direction: column;
}

.policy-nav .section-label {
    margin-bottom: 18px;
}

.policy-nav a {
    min-height: 46px;

    padding: 0 14px;

    display: flex;
    align-items: center;

    border-top: 1px solid var(--border);

    color: var(--text-secondary);

    font-size: 8px;

    transition:
        background .2s ease,
        color .2s ease;
}

.policy-nav a:last-child {
    border-bottom: 1px solid var(--border);
}

.policy-nav a:hover,
.policy-nav a.active {
    background: var(--deep-green);

    color: var(--white);
}


/* =========================================================
   CONTENT
========================================================= */

.policy-content {
    max-width: 820px;
}

.policy-intro {
    padding-bottom: 38px;

    border-bottom: 1px solid var(--deep-green);
}

.policy-intro > span {
    color: var(--terracotta);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.policy-intro h2 {
    margin-top: 10px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(32px, 4vw, 44px);
    font-weight: 400;

    line-height: 1.07;
}

.policy-intro p {
    max-width: 650px;

    margin-top: 17px;

    color: var(--text-secondary);

    font-size: 10px;

    line-height: 1.9;
}


/* =========================================================
   POLICY SECTIONS
========================================================= */

.policy-section {
    padding: 30px 0;

    display: grid;

    grid-template-columns: 45px minmax(0, 1fr);

    gap: 20px;

    border-bottom: 1px solid var(--border);
}

.policy-number {
    color: var(--terracotta);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 10px;
}

.policy-section h3 {
    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 19px;
    font-weight: 400;
}

.policy-section p {
    max-width: 690px;

    margin-top: 10px;

    color: var(--text-secondary);

    font-size: 9px;

    line-height: 1.9;
}


/* =========================================================
   SUPPORT BOX
========================================================= */

.policy-support-box {
    margin-top: 45px;

    padding: 32px;

    background: var(--ivory-light);

    border: 1px solid var(--border);
}

.policy-support-box h3 {
    margin-top: 8px;

    color: var(--deep-green);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
    font-weight: 400;
}

.policy-support-box p {
    max-width: 500px;

    margin-top: 10px;

    color: var(--text-secondary);

    font-size: 9px;

    line-height: 1.8;
}

.policy-support-box a {
    min-width: 155px;
    height: 44px;

    margin-top: 20px;

    padding: 0 17px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    background: var(--deep-green);

    color: var(--white);

    font-size: 8px;
    font-weight: 700;

    text-transform: uppercase;
}

.policy-support-box a span {
    font-size: 13px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .policy-hero {
        padding: 50px 0 45px;
    }

    .policy-page {
        padding: 45px 0 70px;
    }

    .policy-layout {
        display: block;
    }

    .policy-nav {
        position: static;

        margin-bottom: 45px;
    }

    .policy-nav a {
        min-height: 43px;
    }

}


@media (max-width: 450px) {

    .policy-section {
        grid-template-columns: 30px minmax(0, 1fr);

        gap: 12px;
    }

    .policy-support-box {
        padding: 24px 20px;
    }

}

.shop-real-product-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
/* PRODUCT DETAIL - REAL DATA */

.product-main-image {
    overflow: hidden;
}

.detail-real-product-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.product-thumb {
    overflow: hidden;
    padding: 0;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.detail-stock {
    font-size: 11px;
    font-weight: 600;
}

.detail-stock.instock {
    color: #315d47;
}

.detail-stock.low {
    color: #9a6b32;
}

.detail-stock.soldout {
    color: #9b4c43;
}

.detail-add-cart:disabled,
.detail-buy-now:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.detail-review-card {
    padding: 25px 0;
    border-top: 1px solid #e4ddd3;
}

.detail-review-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-review-head strong {
    color: #263b32;
    font-size: 12px;
}

.detail-review-head span {
    padding: 5px 7px;
    background: #edf4ef;
    color: #46624e;
    font-size: 7px;
    font-weight: 700;
}

.detail-review-stars {
    margin-top: 10px;
    color: #b48159;
    letter-spacing: 2px;
}

.detail-review-card h3 {
    margin: 12px 0 7px;
    color: #263b32;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.detail-review-card p {
    max-width: 750px;
    color: #716c64;
    line-height: 1.7;
}

.detail-review-card small {
    color: #99938a;
}

.detail-no-reviews {
    padding: 35px 0;
    color: #99938a;
}

/* =========================================================
   CART - DYNAMIC
========================================================= */

.cart-item-image {
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.cart-quantity {
    display: inline-flex;
    align-items: center;

    margin-top: 15px;

    border: 1px solid #ddd6cc;
}

.cart-quantity a {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #263b32;

    text-decoration: none;

    font-size: 15px;
}

.cart-quantity span {
    min-width: 35px;

    text-align: center;

    color: #263b32;

    font-size: 10px;
}

.cart-remove {
    display: inline-block;

    margin-left: 12px;

    color: #918a80;

    font-size: 7px;
    font-weight: 700;
    letter-spacing: .8px;

    text-decoration: underline;
}

.cart-stock-warning,
.cart-stock-low {
    display: block;

    margin-top: 9px;

    font-size: 7px;
    font-weight: 700;
}

.cart-stock-warning {
    color: #9b4c43;
}

.cart-stock-low {
    color: #9a6b32;
}

.cart-coupon {
    padding: 20px 0;

    border-top: 1px solid #e5ded2;
    border-bottom: 1px solid #e5ded2;
}

.cart-coupon label {
    display: block;

    margin-bottom: 9px;

    color: #716c64;

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1px;
}

.cart-coupon-input {
    display: flex;
}

.cart-coupon-input input[type="text"] {
    min-width: 0;
    flex: 1;

    padding: 12px;

    border: 1px solid #ddd6cc;
    outline: none;

    background: #fff;
}

.cart-coupon-input input[type="submit"] {
    padding: 0 17px;

    border: 0;

    background: #263b32;
    color: #fff;

    cursor: pointer;

    font-size: 7px;
    font-weight: 700;
}

.cart-coupon-applied {
    margin-top: 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #46624e;

    font-size: 8px;
}

.cart-coupon-applied a {
    color: #8d857a;

    font-size: 7px;
}

.cart-discount strong {
    color: #46624e;
}

.cart-message {
    width: min(1280px, calc(100% - 40px));

    margin: 15px auto;
    padding: 12px 15px;

    font-size: 9px;
}

.cart-message.success {
    background: #edf4ef;
    color: #46624e;
}

.cart-message.error {
    background: #f7ebe7;
    color: #985744;
}

.cart-empty {
    padding: 90px 20px;

    text-align: center;
}

.cart-empty h2 {
    margin: 15px 0 10px;

    color: #263b32;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 35px;
    font-weight: 400;
}

.cart-empty p {
    margin-bottom: 28px;

    color: #716c64;
}
.account-order-image {
    overflow: hidden;
}

.account-order-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.account-empty-orders {
    padding: 60px 25px;
    text-align: center;
}

.account-empty-orders h3 {
    margin: 0 0 10px;
    color: #263b32;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
}

.account-empty-orders p {
    margin-bottom: 25px;
    color: #777;
}

.account-save-message {
    display: block;
    margin-top: 15px;
    font-size: 9px;
}

.account-save-message.success {
    color: #46624e;
}

.account-save-message.error {
    color: #9b4c43;
}

.account-order-status.cancelled {
    color: #9b4c43;
}

.account-order-status.confirmed {
    color: #716c64;
}
.home-product-image {
    overflow: hidden;
}

.home-product-real-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.home-product-card:hover
.home-product-real-image {
    transform: scale(1.03);
}

.home-product-info h3 a {
    color: inherit;
    text-decoration: none;
}