/* =========================================================
   KARTEL62 PERFUME STORE
   MAIN STYLE SHEET
   Luxury Modern Gen Z Perfume Store
   ========================================================= */

/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {
    --black: #0c0c0c;
    --black-soft: #151515;
    --black-light: #202020;

    --gold: #c9a45c;
    --gold-light: #e2c78d;
    --gold-dark: #9d7835;

    --ivory: #f7f3eb;
    --cream: #eee8dc;
    --white: #ffffff;

    --text: #171717;
    --text-light: #686868;
    --border: rgba(0, 0, 0, 0.10);
    --border-light: rgba(255, 255, 255, 0.15);

    --container: 1240px;

    --transition: 0.35s ease;
    --transition-slow: 0.6s ease;

    --shadow-sm: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.16);
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family:
        Inter,
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--ivory);

    line-height: 1.7;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

::selection {
    color: var(--white);
    background: var(--gold-dark);
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}


/* =========================================================
   GLOBAL CONTAINER
   ========================================================= */

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   SECTION
   ========================================================= */

.section {
    padding: 110px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;

    margin-bottom: 55px;
}

.section-heading.center {
    display: block;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--gold-dark);

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 0.20em;
    text-transform: uppercase;
}

.section-label::before {
    content: "";

    width: 28px;
    height: 1px;

    background: var(--gold);
}

.section-heading.center .section-label::before {
    display: none;
}

.section-heading h2 {
    margin-top: 12px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(2.2rem, 4vw, 3.8rem);

    font-weight: 400;
    line-height: 1.12;

    letter-spacing: -0.035em;
}

.section-heading p {
    margin-top: 20px;

    color: var(--text-light);

    font-size: 1rem;
    line-height: 1.8;
}


/* =========================================================
   TEXT LINK
   ========================================================= */

.text-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    color: var(--black);

    font-size: 0.82rem;
    font-weight: 800;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    white-space: nowrap;
}

.text-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 100%;
    height: 1px;

    background: var(--gold);

    transform-origin: right;
    transform: scaleX(0);

    transition: transform var(--transition);
}

.text-link:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 0 30px;

    border: 1px solid transparent;

    font-size: 0.76rem;
    font-weight: 800;

    letter-spacing: 0.10em;
    text-transform: uppercase;

    overflow: hidden;

    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: var(--black);
    background: var(--gold);
}

.btn-primary:hover {
    color: var(--black);
    background: var(--gold-light);
}

.btn-outline {
    color: var(--white);

    border-color: rgba(255, 255, 255, 0.45);

    background: rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    color: var(--black);

    border-color: var(--white);

    background: var(--white);
}

.btn-dark {
    color: var(--white);
    background: var(--black);
}

.btn-dark:hover {
    color: var(--black);
    background: var(--gold);
}

.btn-light {
    color: var(--black);
    background: var(--white);
}

.btn-light:hover {
    color: var(--black);
    background: var(--gold-light);
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 100;

    width: 100%;

    color: var(--white);

    background: var(--black);

    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    min-height: 86px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   BRAND
   ========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--black);

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    font-family: Georgia, serif;

    font-size: 0.78rem;
    font-weight: 900;

    letter-spacing: -0.05em;

    border-radius: 50%;
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.brand-text strong {
    font-size: 1rem;

    letter-spacing: 0.12em;
}

.brand-text span {
    margin-top: 5px;

    color: var(--gold-light);

    font-size: 0.52rem;
    font-weight: 700;

    letter-spacing: 0.25em;
}


/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 30px;
}

.main-nav a {
    position: relative;

    padding: 8px 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.76rem;
    font-weight: 700;

    letter-spacing: 0.07em;
    text-transform: uppercase;

    transition: color var(--transition);
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: var(--gold);

    transform: scaleX(0);

    transition: transform var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 43px;

    padding: 0 21px;

    color: var(--black);

    background: var(--gold);

    font-size: 0.70rem;
    font-weight: 900;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        background var(--transition),
        transform var(--transition);
}

.nav-button:hover {
    background: var(--gold-light);

    transform: translateY(-2px);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: calc(100vh - 86px);

    display: flex;
    align-items: center;

    color: var(--white);

    background: var(--black);

    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;

    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.91) 0%,
            rgba(0, 0, 0, 0.72) 42%,
            rgba(0, 0, 0, 0.25) 100%
        );
}

.hero-container {
    position: relative;
    z-index: 2;

    padding-top: 90px;
    padding-bottom: 90px;
}

.hero-content {
    width: min(760px, 100%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    color: var(--gold-light);

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";

    width: 35px;
    height: 1px;

    background: var(--gold);
}

.hero h1 {
    margin-top: 25px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(2.8rem, 6vw, 6rem);

    font-weight: 400;
    line-height: 1.02;

    letter-spacing: -0.045em;
}

.hero-content > p {
    max-width: 650px;

    margin-top: 28px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 1.05rem;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 38px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 45px;

    margin-top: 65px;
}

.hero-stat > div {
    position: relative;

    display: flex;
    flex-direction: column;
}

.hero-stat > div:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 4px;
    right: -23px;

    width: 1px;
    height: 45px;

    background: rgba(255, 255, 255, 0.22);
}

.hero-stat strong {
    color: var(--gold-light);

    font-family: Georgia, serif;

    font-size: 1.8rem;
    font-weight: 400;
}

.hero-stat span {
    margin-top: 2px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.10em;
    text-transform: uppercase;
}


/* =========================================================
   INTRO
   ========================================================= */

.intro {
    background: var(--white);
}

.intro .section-heading {
    margin-bottom: 0;
}

.intro .section-heading h2 {
    font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.intro .section-heading p {
    max-width: 650px;

    margin-left: auto;
    margin-right: auto;

    font-size: 1.05rem;
}


/* =========================================================
   CATEGORIES
   ========================================================= */

.categories {
    background: var(--ivory);
}

.category-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.category-card {
    position: relative;

    min-height: 600px;

    display: flex;
    align-items: flex-end;

    color: var(--white);

    background: var(--black);

    overflow: hidden;
}

.category-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.10) 65%,
            rgba(0, 0, 0, 0.08) 100%
        );

    z-index: 1;
}

.category-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2,.7,.2,1);
}

.category-card:hover img {
    transform: scale(1.07);
}

.category-content {
    position: relative;
    z-index: 2;

    width: 100%;

    padding: 35px;
}

.category-content > span {
    color: var(--gold-light);

    font-size: 0.70rem;
    font-weight: 800;

    letter-spacing: 0.15em;
}

.category-content h3 {
    margin-top: 10px;

    font-family: Georgia, serif;

    font-size: 2rem;
    font-weight: 400;

    line-height: 1.1;
}

.category-content p {
    margin-top: 8px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 0.85rem;
}


/* =========================================================
   PRODUCTS
   ========================================================= */

.products {
    background: var(--white);
}

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}

.product-card {
    min-width: 0;
}

.product-image {
    position: relative;

    aspect-ratio: 4 / 5;

    background: var(--cream);

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.product-card:hover .product-image img {
    transform: scale(1.045);
}

.product-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 3;

    padding: 7px 11px;

    color: var(--black);

    background: var(--gold-light);

    font-size: 0.61rem;
    font-weight: 900;

    letter-spacing: 0.10em;
}

.quick-view {
    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 15px;

    z-index: 3;

    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--black);

    background: rgba(255, 255, 255, 0.92);

    font-size: 0.69rem;
    font-weight: 900;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    opacity: 0;
    transform: translateY(10px);

    transition:
        opacity var(--transition),
        transform var(--transition);
}

.product-card:hover .quick-view {
    opacity: 1;
    transform: translateY(0);
}

.product-info {
    padding: 22px 2px 0;
}

.product-category {
    color: var(--gold-dark);

    font-size: 0.63rem;
    font-weight: 900;

    letter-spacing: 0.14em;
}

.product-info h3 {
    margin-top: 7px;

    font-family: Georgia, serif;

    font-size: 1.55rem;
    font-weight: 400;

    line-height: 1.2;
}

.product-info p {
    margin-top: 5px;

    color: var(--text-light);

    font-size: 0.78rem;
}

.price {
    display: block;

    margin-top: 13px;

    font-size: 0.93rem;
    font-weight: 800;
}


/* =========================================================
   BRAND STORY
   ========================================================= */

.brand-story {
    background: var(--ivory);
}

.brand-story-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 90px;

    align-items: center;
}

.story-image {
    position: relative;

    overflow: hidden;

    background: var(--cream);
}

.story-image::before {
    content: "";

    position: absolute;

    top: 25px;
    left: 25px;

    width: 80px;
    height: 80px;

    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);

    z-index: 2;
}

.story-image img {
    width: 100%;

    aspect-ratio: 0.88;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.story-image:hover img {
    transform: scale(1.025);
}

.story-content {
    max-width: 570px;
}

.story-content h2 {
    margin-top: 15px;

    font-family: Georgia, serif;

    font-size: clamp(2.6rem, 5vw, 4.5rem);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -0.04em;
}

.story-content h2 em {
    color: var(--gold-dark);

    font-style: italic;
}

.story-content p {
    margin-top: 24px;

    color: var(--text-light);

    font-size: 0.98rem;
    line-height: 1.85;
}

.story-content .btn {
    margin-top: 30px;
}


/* =========================================================
   WHY US
   ========================================================= */

.why-us {
    background: var(--black);

    color: var(--white);
}

.why-us .section-heading h2 {
    color: var(--white);
}

.why-us .section-heading p {
    color: rgba(255, 255, 255, 0.58);
}

.why-us .section-label {
    color: var(--gold-light);
}

.benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.benefit-card {
    min-height: 300px;

    padding: 35px;

    border-right: 1px solid var(--border-light);

    transition:
        background var(--transition),
        transform var(--transition);
}

.benefit-card:last-child {
    border-right: 0;
}

.benefit-card:hover {
    background: var(--black-soft);

    transform: translateY(-4px);
}

.benefit-number {
    color: var(--gold);

    font-family: Georgia, serif;

    font-size: 0.95rem;
}

.benefit-card h3 {
    margin-top: 65px;

    font-family: Georgia, serif;

    font-size: 1.65rem;
    font-weight: 400;
}

.benefit-card p {
    margin-top: 12px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.83rem;
    line-height: 1.75;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    padding: 40px 0;

    background: var(--white);
}

.cta-box {
    position: relative;

    min-height: 330px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding: 60px 70px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            #0b0b0b,
            #1d1d1d
        );

    overflow: hidden;
}

.cta-box::before {
    content: "K62";

    position: absolute;

    right: 30px;
    bottom: -85px;

    color: rgba(255, 255, 255, 0.025);

    font-family: Georgia, serif;

    font-size: 18rem;
    font-weight: 700;

    line-height: 1;
}

.cta-box > div {
    position: relative;
    z-index: 2;

    max-width: 650px;
}

.cta-box h2 {
    margin-top: 12px;

    font-family: Georgia, serif;

    font-size: clamp(2.2rem, 4vw, 3.8rem);

    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -0.035em;
}

.cta-box p {
    margin-top: 18px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 0.95rem;
}

.cta-box .btn {
    position: relative;
    z-index: 2;

    flex-shrink: 0;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 80px 0 25px;

    color: rgba(255, 255, 255, 0.65);

    background: var(--black);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.3fr;

    gap: 60px;

    padding-bottom: 65px;

    border-bottom: 1px solid var(--border-light);
}

.footer-brand {
    max-width: 340px;
}

.footer-brand .brand {
    color: var(--white);
}

.footer-brand p {
    margin-top: 25px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 0.84rem;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 10px;

    color: var(--white);

    font-size: 0.72rem;
    font-weight: 900;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-column > a {
    color: rgba(255, 255, 255, 0.52);

    font-size: 0.80rem;

    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-column > a:hover {
    color: var(--gold-light);

    transform: translateX(4px);
}

.footer-column > p {
    max-width: 240px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 0.80rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 12px;
}

.social-links a {
    padding: 7px 11px;

    color: rgba(255, 255, 255, 0.65);

    border: 1px solid var(--border-light);

    font-size: 0.66rem;
    font-weight: 700;

    letter-spacing: 0.05em;

    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.social-links a:hover {
    color: var(--black);

    background: var(--gold);

    border-color: var(--gold);
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-top: 25px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);

    font-size: 0.68rem;
}


/* =========================================================
   FOCUS ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* =========================================================
   KARTEL62 PERFUME STORE
   PRODUCTS PAGE
   Tambahkan di bagian paling bawah style.css
   ========================================================= */


/* ---------------------------------------------------------
   1. PAGE HERO
   --------------------------------------------------------- */

.page-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.page-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.68) 45%,
            rgba(0, 0, 0, 0.32) 100%
        );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 100px 0 80px;
    animation: heroContentReveal 0.9s ease both;
}

.page-hero-content h1 {
    margin: 18px 0 20px;
    color: var(--white);
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.page-hero-content h1 span {
    display: block;
    color: var(--gold);
}

.page-hero-content p {
    max-width: 580px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   2. PRODUCT PAGE INTRO
   --------------------------------------------------------- */

.section-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading.center .section-label {
    display: inline-block;
}

.section-heading .section-description {
    max-width: 680px;
    margin: 20px auto 0;
    color: var(--text);
    line-height: 1.8;
}


/* ---------------------------------------------------------
   3. CATEGORY FILTER
   --------------------------------------------------------- */

.category-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 auto 48px;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 110px;
    padding: 12px 24px;

    border: 1px solid var(--border);
    border-radius: 999px;

    color: var(--text);
    background: transparent;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.filter-btn:hover {
    color: var(--black);
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.filter-btn.active {
    color: var(--black);
    background: var(--gold);
    border-color: var(--gold);
}


/* ---------------------------------------------------------
   4. PRODUCT GRID
   --------------------------------------------------------- */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}


/* ---------------------------------------------------------
   5. PRODUCT CARD
   --------------------------------------------------------- */

.products-grid .product-card {
    position: relative;
    display: flex;
    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    border: 1px solid var(--border);
    background: var(--white);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.products-grid .product-card:hover {
    border-color: rgba(212, 175, 55, 0.5);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12);

    transform: translateY(-7px);
}


/* ---------------------------------------------------------
   6. PRODUCT IMAGE
   --------------------------------------------------------- */

.products-grid .product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.08;
    overflow: hidden;
    background: #f2f0eb;
}

.products-grid .product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.4s ease;
}

.products-grid .product-card:hover .product-image img {
    transform: scale(1.06);
    filter: brightness(1.04);
}


/* ---------------------------------------------------------
   7. PRODUCT BADGE
   --------------------------------------------------------- */

.products-grid .product-badge {
    position: absolute;
    top: 16px;
    left: 16px;

    z-index: 2;

    display: inline-flex;
    align-items: center;

    padding: 7px 11px;

    color: var(--black);
    background: var(--gold);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1;

    text-transform: uppercase;
}


/* ---------------------------------------------------------
   8. PRODUCT INFORMATION
   --------------------------------------------------------- */

.products-grid .product-info {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 24px 22px 22px;
}

.product-category {
    display: block;
    margin-bottom: 9px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.products-grid .product-info h2 {
    margin: 0 0 10px;

    color: var(--black);

    font-family: inherit;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
}

.products-grid .product-info p {
    margin: 0 0 22px;

    color: var(--text);

    font-size: 14px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   9. PRODUCT BOTTOM
   --------------------------------------------------------- */

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    margin-top: auto;
    padding-top: 18px;

    border-top: 1px solid var(--border);
}

.product-price {
    color: var(--black);
    font-size: 17px;
    font-weight: 800;
}

.product-link {
    color: var(--black);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;

    white-space: nowrap;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.product-link:hover {
    color: var(--gold);
    transform: translateX(3px);
}


/* ---------------------------------------------------------
   10. DARK SECTION
   --------------------------------------------------------- */

.section-dark {
    position: relative;

    color: var(--white);
    background: var(--black);

    overflow: hidden;
}

.section-dark::before {
    content: "";

    position: absolute;
    top: -180px;
    right: -180px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(212, 175, 55, 0.04);

    pointer-events: none;
}

.section-dark .container {
    position: relative;
    z-index: 1;
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.68);
}


/* ---------------------------------------------------------
   11. STORY GRID
   --------------------------------------------------------- */

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.story-image {
    position: relative;
    overflow: hidden;
}

.story-image::after {
    content: "";

    position: absolute;
    inset: 16px;

    border: 1px solid rgba(212, 175, 55, 0.3);

    pointer-events: none;
}

.story-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    display: block;

    object-fit: cover;
}

.story-content {
    max-width: 580px;
}

.story-content .section-label {
    display: inline-block;
    margin-bottom: 15px;
}

.story-content .section-title {
    margin-bottom: 24px;
}

.story-content p {
    margin-bottom: 18px;

    font-size: 15px;
    line-height: 1.9;
}

.story-content .btn {
    margin-top: 14px;
}


/* ---------------------------------------------------------
   12. CTA BOX
   --------------------------------------------------------- */

.cta-box {
    position: relative;

    max-width: 950px;
    margin: 0 auto;

    padding: 70px 50px;

    text-align: center;

    border: 1px solid var(--border);

    background:
        linear-gradient(
            145deg,
            rgba(212, 175, 55, 0.06),
            rgba(0, 0, 0, 0.01)
        );
}

.cta-box::before,
.cta-box::after {
    content: "";

    position: absolute;

    width: 55px;
    height: 55px;

    border-color: var(--gold);
    border-style: solid;

    pointer-events: none;
}

.cta-box::before {
    top: 18px;
    left: 18px;

    border-width: 1px 0 0 1px;
}

.cta-box::after {
    right: 18px;
    bottom: 18px;

    border-width: 0 1px 1px 0;
}

.cta-box .section-label {
    display: inline-block;
}

.cta-box h2 {
    max-width: 650px;
    margin: 18px auto;

    color: var(--black);

    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
}

.cta-box p {
    max-width: 620px;
    margin: 0 auto 30px;

    color: var(--text);

    font-size: 15px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* ---------------------------------------------------------
   13. PRODUCTS PAGE GOLD ACCENT
   --------------------------------------------------------- */

.products-grid .product-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 0;
    height: 2px;

    background: var(--gold);

    z-index: 5;

    transition: width 0.45s ease;
}

.products-grid .product-card:hover::before {
    width: 100%;
}


/* ---------------------------------------------------------
   14. RESPONSIVE — TABLET
   --------------------------------------------------------- */

@media (max-width: 1100px) {

    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .story-grid {
        gap: 45px;
    }

    .page-hero {
        min-height: 420px;
    }
}


/* ---------------------------------------------------------
   15. RESPONSIVE — SMALL TABLET
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .story-content {
        max-width: 100%;
    }

    .story-image {
        max-width: 700px;
    }

    .page-hero-content {
        max-width: 620px;
    }

    .cta-box {
        padding: 60px 35px;
    }
}


/* ---------------------------------------------------------
   16. RESPONSIVE — MOBILE
   --------------------------------------------------------- */

@media (max-width: 700px) {

    .page-hero {
        min-height: 390px;
    }

    .page-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.9),
                rgba(0, 0, 0, 0.58)
            );
    }

    .page-hero-content {
        padding: 80px 0 65px;
    }

    .page-hero-content h1 {
        font-size: clamp(38px, 11vw, 56px);
    }

    .page-hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .category-filter {
        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        padding: 3px 2px 12px;

        margin-bottom: 35px;

        scrollbar-width: none;
    }

    .category-filter::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex: 0 0 auto;
        min-width: auto;
        padding: 11px 20px;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .products-grid .product-info {
        padding: 18px 15px;
    }

    .products-grid .product-info h2 {
        font-size: 18px;
    }

    .products-grid .product-info p {
        font-size: 13px;
        line-height: 1.65;
    }

    .products-grid .product-badge {
        top: 10px;
        left: 10px;

        padding: 6px 8px;

        font-size: 8px;
    }

    .product-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .product-price {
        font-size: 15px;
    }

    .story-image img {
        aspect-ratio: 1 / 1;
    }

    .cta-box {
        padding: 50px 22px;
    }

    .cta-box::before {
        top: 12px;
        left: 12px;
    }

    .cta-box::after {
        right: 12px;
        bottom: 12px;
    }
}


/* ---------------------------------------------------------
   17. RESPONSIVE — SMALL PHONE
   --------------------------------------------------------- */

@media (max-width: 480px) {

    .page-hero {
        min-height: 350px;
    }

    .page-hero-content {
        padding: 70px 0 55px;
    }

    .page-hero-content h1 {
        margin-top: 14px;
        font-size: 38px;
    }

    .page-hero-content p {
        font-size: 14px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products-grid .product-image {
        aspect-ratio: 1 / 1;
    }

    .products-grid .product-info {
        padding: 22px 20px;
    }

    .products-grid .product-info h2 {
        font-size: 21px;
    }

    .product-bottom {
        flex-direction: row;
        align-items: center;
    }

    .story-grid {
        gap: 32px;
    }

    .cta-box {
        padding: 45px 18px;
    }

    .cta-box h2 {
        font-size: 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}


/* ---------------------------------------------------------
   18. VERY SMALL PHONE
   --------------------------------------------------------- */

@media (max-width: 360px) {

    .products-grid .product-info {
        padding: 18px 16px;
    }

    .products-grid .product-info h2 {
        font-size: 19px;
    }

    .products-grid .product-info p {
        font-size: 12px;
    }

    .product-price {
        font-size: 14px;
    }

    .product-link {
        font-size: 11px;
    }

    .page-hero-content h1 {
        font-size: 34px;
    }
}
/* =========================================
   CONTACT PAGE
========================================= */

.contact-page-hero {
    min-height: 560px;
}

.contact-page-hero .page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-intro {
    padding-bottom: 40px;
}

.contact-section {
    padding-top: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2,
.contact-form-wrapper h2 {
    margin: 15px 0 20px;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.05;
}

.contact-info h2 span,
.contact-form-wrapper h2 span {
    display: block;
    color: var(--gold);
}

.contact-description {
    color: var(--text);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 20px;
}

.contact-item small {
    display: block;
    margin-bottom: 5px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 10px;
}

.contact-item strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}

.contact-whatsapp {
    margin-top: 30px;
}

.contact-form-wrapper {
    padding: 45px;
    background: var(--black-soft);
    border: 1px solid var(--border);
}

.contact-form-wrapper > p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--border);
    outline: none;
    border-radius: 0;
    background: #111;
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201, 164, 92, 0.08);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    border: 0;
    cursor: pointer;
    width: 100%;
}

.contact-benefits {
    margin-top: 30px;
}

.contact-story {
    align-items: center;
}

.contact-story .story-image {
    min-height: 520px;
}

.contact-story .story-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}


/* =========================================
   CONTACT RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info {
        max-width: 750px;
    }

    .contact-form-wrapper {
        padding: 35px;
    }

    .contact-story .story-image,
    .contact-story .story-image img {
        min-height: 420px;
    }

}


@media (max-width: 700px) {

    .contact-page-hero {
        min-height: 480px;
    }

    .contact-form-wrapper {
        padding: 28px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-item {
        align-items: flex-start;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

}


@media (max-width: 480px) {

    .contact-page-hero {
        min-height: 430px;
    }

    .contact-form-wrapper {
        padding: 24px 18px;
    }

    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 2rem;
    }

    .contact-item strong {
        font-size: 13px;
    }

    .contact-story .story-image,
    .contact-story .story-image img {
        min-height: 340px;
    }

}
/* =========================================
   REVIEWS PAGE
========================================= */

.reviews-page-hero {
    min-height: 560px;
}

.reviews-page-hero .page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.reviews-intro {
    padding-bottom: 45px;
}


/* =========================================
   RATING SUMMARY
========================================= */

.rating-summary {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 45px;
    border: 1px solid var(--border);
    background: var(--black-soft);
}

.rating-main {
    text-align: center;
}

.rating-number {
    display: block;
    font-size: 4.5rem;
    line-height: 1;
    color: var(--gold);
    font-weight: 600;
}

.rating-stars {
    margin: 15px 0;
    color: var(--gold);
    letter-spacing: 5px;
    font-size: 20px;
}

.rating-main p {
    color: var(--text-muted);
    font-size: 12px;
}

.rating-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rating-line {
    display: grid;
    grid-template-columns: 20px 1fr 45px;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 12px;
}

.rating-bar {
    height: 7px;
    background: #242424;
    overflow: hidden;
}

.rating-bar span {
    display: block;
    height: 100%;
    background: var(--gold);
}

.review-note {
    max-width: 900px;
    margin: 18px auto 0;
    color: #777;
    text-align: center;
    font-size: 11px;
    line-height: 1.6;
}


/* =========================================
   FEATURED REVIEW
========================================= */

.featured-review {
    margin-top: 20px;
}

.featured-review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    border: 1px solid var(--border);
}

.featured-review-image {
    overflow: hidden;
}

.featured-review-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.featured-review-grid:hover .featured-review-image img {
    transform: scale(1.04);
}

.featured-review-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
    background: #111;
}

.featured-stars {
    margin: 25px 0;
    color: var(--gold);
    letter-spacing: 5px;
}

.featured-review-content blockquote {
    margin: 0;
    color: var(--white);
    font-family: Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    line-height: 1.4;
}

.featured-review-content > p {
    margin-top: 25px;
    color: var(--text-muted);
}

.review-placeholder {
    display: inline-block;
    margin-top: 10px;
    color: var(--gold);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* =========================================
   REVIEWS GRID
========================================= */

.reviews-section {
    padding-bottom: 90px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 50px;
}

.review-card {
    position: relative;
    padding: 30px;
    border: 1px solid var(--border);
    background: var(--black-soft);
    overflow: hidden;
    transition: var(--transition);
}

.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 164, 92, 0.45);
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
}

.review-top h3 {
    margin: 0 0 4px;
    color: var(--white);
    font-size: 14px;
}

.review-top small {
    color: #777;
    font-size: 10px;
}

.review-card .review-stars {
    margin: 20px 0 14px;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 3px;
}

.review-card > p {
    color: var(--text);
    line-height: 1.8;
    font-size: 13px;
    font-style: italic;
}

.review-product {
    display: block;
    margin-top: 20px;
    color: var(--gold);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================
   REVIEW STYLE CARDS
========================================= */

.review-style-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.review-style-card {
    position: relative;
    display: block;
    padding: 35px;
    min-height: 250px;
    border: 1px solid var(--border);
    background: #111;
    transition: var(--transition);
}

.review-style-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}

.review-style-card > span {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
}

.review-style-card h3 {
    margin: 25px 0 12px;
    color: var(--white);
    font-size: 22px;
}

.review-style-card p {
    margin-bottom: 25px;
    color: var(--text);
    line-height: 1.7;
    font-size: 13px;
}

.review-style-card strong {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 1px;
}


/* =========================================
   WRITE REVIEW
========================================= */

.write-review-section {
    padding-bottom: 40px;
}

.write-review-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 55px;
    border: 1px solid var(--border);
    background: var(--black-soft);
}

.write-review-box h2 {
    margin: 15px 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.write-review-box h2 span {
    color: var(--gold);
}

.write-review-box p {
    max-width: 650px;
    color: var(--text);
    line-height: 1.8;
}


/* =========================================
   REVIEWS RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-style-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 900px) {

    .rating-summary {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .featured-review-grid {
        grid-template-columns: 1fr;
    }

    .featured-review-image,
    .featured-review-image img {
        min-height: 400px;
    }

    .featured-review-content {
        padding: 45px;
    }

    .write-review-box {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 700px) {

    .reviews-page-hero {
        min-height: 470px;
    }

    .rating-summary {
        padding: 30px 22px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-style-grid {
        grid-template-columns: 1fr;
    }

    .featured-review-content {
        padding: 35px 25px;
    }

    .write-review-box {
        padding: 35px 25px;
    }

}


@media (max-width: 480px) {

    .reviews-page-hero {
        min-height: 420px;
    }

    .rating-number {
        font-size: 3.5rem;
    }

    .rating-summary {
        padding: 25px 18px;
    }

    .rating-line {
        grid-template-columns: 18px 1fr 38px;
        gap: 8px;
    }

    .review-card {
        padding: 25px 20px;
    }

    .review-style-card {
        padding: 28px 22px;
    }

    .write-review-box {
        padding: 30px 20px;
    }

}
/* =========================================
   FAQ PAGE
========================================= */

.faq-page-hero {
    min-height: 560px;
}

.faq-page-hero .page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.faq-intro {
    padding-bottom: 35px;
}


/* =========================================
   FAQ LAYOUT
========================================= */

.faq-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 60px;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* =========================================
   FAQ ITEM
========================================= */

.faq-item {
    border: 1px solid var(--border);
    background: var(--black-soft);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(201, 164, 92, 0.45);
}

.faq-item[open] {
    border-color: rgba(201, 164, 92, 0.65);
}

.faq-item summary {
    display: grid;
    grid-template-columns: 55px 1fr 30px;
    align-items: center;
    gap: 15px;
    padding: 22px 25px;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-number {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 1.5px;
}

.faq-question {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.faq-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    font-size: 22px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px 25px 95px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.8;
}

.faq-answer p {
    margin: 0 0 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}


/* =========================================
   FAQ SIDEBAR
========================================= */

.faq-sidebar {
    position: sticky;
    top: 110px;
    border: 1px solid var(--border);
    background: var(--black-soft);
    overflow: hidden;
}

.faq-sidebar-image {
    height: 280px;
    overflow: hidden;
}

.faq-sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.faq-sidebar:hover .faq-sidebar-image img {
    transform: scale(1.04);
}

.faq-sidebar-content {
    padding: 35px;
}

.faq-sidebar-content h2 {
    margin: 15px 0;
    color: var(--white);
    font-size: 2rem;
    line-height: 1.1;
}

.faq-sidebar-content h2 span {
    display: block;
    color: var(--gold);
}

.faq-sidebar-content p {
    margin-bottom: 25px;
    color: var(--text);
    line-height: 1.8;
    font-size: 13px;
}


/* =========================================
   FAQ QUICK LINKS
========================================= */

.faq-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.faq-link-card {
    display: block;
    padding: 35px;
    min-height: 245px;
    border: 1px solid var(--border);
    background: #111;
    transition: var(--transition);
}

.faq-link-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}

.faq-link-card > span {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
}

.faq-link-card h3 {
    margin: 22px 0 12px;
    color: var(--white);
    font-size: 21px;
}

.faq-link-card p {
    margin-bottom: 25px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.7;
}

.faq-link-card strong {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 1px;
}


/* =========================================
   FAQ RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-sidebar {
        position: relative;
        top: auto;
    }

}


@media (max-width: 900px) {

    .faq-link-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .faq-page-hero {
        min-height: 470px;
    }

    .faq-item summary {
        grid-template-columns: 38px 1fr 25px;
        gap: 10px;
        padding: 19px 18px;
    }

    .faq-question {
        font-size: 13px;
    }

    .faq-answer {
        padding: 0 18px 22px 66px;
    }

    .faq-sidebar-content {
        padding: 28px 22px;
    }

    .faq-link-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .faq-page-hero {
        min-height: 420px;
    }

    .faq-item summary {
        grid-template-columns: 30px 1fr 22px;
        padding: 17px 15px;
    }

    .faq-number {
        font-size: 9px;
    }

    .faq-question {
        font-size: 12px;
    }

    .faq-answer {
        padding: 0 15px 20px 55px;
        font-size: 12px;
    }

    .faq-sidebar-image {
        height: 230px;
    }

    .faq-sidebar-content h2 {
        font-size: 1.8rem;
    }

    .faq-link-card {
        padding: 28px 22px;
        min-height: auto;
    }

}
/* =========================================
   PRIVACY PAGE
========================================= */

.privacy-page-hero {
    min-height: 520px;
}

.privacy-page-hero .page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.privacy-section {
    padding-top: 70px;
}

.privacy-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 70px;
    align-items: start;
}


/* =========================================
   PRIVACY CONTENT
========================================= */

.privacy-content {
    max-width: 850px;
}

.privacy-updated {
    display: inline-block;
    margin-bottom: 45px;
    padding: 9px 14px;
    border: 1px solid var(--border);
    color: var(--gold);
    background: var(--black-soft);
    font-size: 10px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.privacy-block {
    position: relative;
    padding: 0 0 45px;
    margin-bottom: 45px;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 100px;
}

.privacy-block:last-child {
    margin-bottom: 0;
}

.privacy-number {
    display: block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}

.privacy-block h2 {
    margin: 0 0 18px;
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.2;
}

.privacy-block p {
    margin: 0 0 15px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.9;
}

.privacy-block p:last-child {
    margin-bottom: 0;
}

.privacy-block ul {
    margin: 20px 0;
    padding-left: 22px;
}

.privacy-block li {
    margin-bottom: 10px;
    padding-left: 5px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

.privacy-block li::marker {
    color: var(--gold);
}

.privacy-contact-btn {
    margin-top: 15px;
}


/* =========================================
   PRIVACY SIDEBAR
========================================= */

.privacy-sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.privacy-sidebar-box {
    padding: 30px;
    border: 1px solid var(--border);
    background: var(--black-soft);
}

.privacy-sidebar-box h2 {
    margin: 15px 0;
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1.15;
}

.privacy-sidebar-box h2 span {
    display: block;
    color: var(--gold);
}

.privacy-sidebar-box p {
    margin: 0;
    color: var(--text);
    font-size: 13px;
    line-height: 1.8;
}

.privacy-sidebar-box a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 12px;
    transition: var(--transition);
}

.privacy-sidebar-box a:last-child {
    border-bottom: 0;
}

.privacy-sidebar-box a:hover {
    padding-left: 7px;
    color: var(--gold);
}


/* =========================================
   PRIVACY RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .privacy-content {
        max-width: none;
    }

    .privacy-sidebar {
        position: relative;
        top: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 700px) {

    .privacy-page-hero {
        min-height: 450px;
    }

    .privacy-section {
        padding-top: 50px;
    }

    .privacy-block {
        padding-bottom: 35px;
        margin-bottom: 35px;
    }

    .privacy-block p,
    .privacy-block li {
        font-size: 13px;
    }

    .privacy-sidebar {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .privacy-page-hero {
        min-height: 410px;
    }

    .privacy-updated {
        margin-bottom: 35px;
        font-size: 9px;
    }

    .privacy-sidebar-box {
        padding: 24px 20px;
    }

    .privacy-block h2 {
        font-size: 1.5rem;
    }

}

/* =========================================================
   KARTEL62 PERFUME STORE
   FINAL STYLE.CSS
   Luxury Black / Gold / Ivory
========================================================= */

/* =========================
   ROOT
========================= */

:root {
    --black: #080808;
    --black-soft: #101010;
    --black-card: #151515;
    --black-light: #1c1c1c;

    --gold: #c9a227;
    --gold-light: #e6c65c;
    --gold-dark: #927315;

    --ivory: #f5f1e8;
    --white: #ffffff;
    --text: #d7d2c8;
    --muted: #99948a;
    --border: rgba(201, 162, 39, 0.22);

    --container: 1180px;

    --shadow:
        0 20px 50px rgba(0, 0, 0, 0.35);

    --shadow-gold:
        0 15px 45px rgba(201, 162, 39, 0.12);

    --radius: 18px;
    --transition: 0.35s ease;
}


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--text);
    font-family:
        "Inter",
        "Segoe UI",
        Arial,
        sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

::selection {
    background: var(--gold);
    color: var(--black);
}


/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}


/* =========================
   CONTAINER
========================= */

.container {
    width: min(92%, var(--container));
    margin-inline: auto;
}


/* =========================
   SECTIONS
========================= */

section {
    position: relative;
}

.section {
    padding: 100px 0;
}

.section-dark {
    background:
        linear-gradient(
            180deg,
            #0a0a0a 0%,
            #111111 100%
        );
}

.section-soft {
    background: #0d0d0d;
}


/* =========================
   SECTION HEADING
========================= */

.section-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 14px;

    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    color: var(--ivory);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 18px;
}

.section-description {
    color: var(--muted);
    max-width: 680px;
    font-size: 1rem;
}


/* =========================
   BUTTON
========================= */

.btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;
    padding: 0 25px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);

    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    color: #090909;

    box-shadow:
        0 10px 30px rgba(201, 162, 39, 0.18);
}

.btn-primary:hover {
    box-shadow:
        0 15px 40px rgba(201, 162, 39, 0.28);
}

.btn-outline {
    background: transparent;
    border-color: rgba(245, 241, 232, 0.35);
    color: var(--ivory);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.btn-gold-outline {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold-light);
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--black);
}


/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index