/* 
=================================================
HimalayanMonk - Premium Theme Design Tokens
=================================================
*/

:root {
    /* Premium Earthy Himalayan Brand Colors */
    --color-primary: #1C1C1A;
    --color-secondary: #2B2B28;
    --color-surface-dark: #34342F;
    --color-bg: #F5F2EA;
    --color-card: #EFEAE0;
    --color-accent: #C49A45;
    --color-accent-hover: #A87924;
    --color-white: #F8F6F0;
    --color-dark: #1A1A18;
    --color-text: #252520;
    --color-text-light: #8E8A80;
    --color-border: rgba(196, 154, 69, 0.22);
    --color-pine: #26382C;

    /* Golden Lines Theme Tokens */
    --line-gold: #C49A45;
    --line-gold-soft: rgba(196, 154, 69, 0.32);
    --line-gold-muted: rgba(196, 154, 69, 0.16);

    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    /* Shadows & Spacing */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.18);
    --container-width: 1200px;
    --transition-slow: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.3s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-primary);
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* 
=================================================
Header & Navigation
=================================================
*/
.site-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 100;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.site-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.site-header.scrolled {
    top: 15px;
    width: 96%;
    max-width: 1240px;
    border-radius: 20px;
    background: rgba(28, 28, 26, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

.site-header.scrolled::before {
    opacity: 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1rem;
    transition: var(--transition-normal);
    position: relative;
}

.site-header.scrolled .header-inner {
    padding: 0.7rem 1.5rem;
    width: 100%;
    /* to prevent double shrinking inside the rounded header */
}

/* Header Right & Top Links */
.header-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.header-top-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.divider {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

.top-actions a {
    font-weight: 500;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition-fast);
    color: rgba(255, 255, 255, 0.7);
}

.top-actions a:hover {
    color: var(--color-accent);
}

@media (max-width: 1024px) {
    .header-top-links {
        display: none;
    }
}


.logo {
    display: inline-flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
    transition: var(--transition-normal);
    border-radius: 4px;

}

.site-header.scrolled .logo-img {
    height: 55px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    color: var(--color-white);
    transition: var(--transition-fast);
    padding-bottom: 0.4rem;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

@media (min-width: 901px) {
    .nav-links {
        flex: 1;
        justify-content: center;
        order: 2;
    }

    .header-right {
        order: 3;
    }

    .logo {
        order: 1;
    }

    .mobile-nav-actions {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .desktop-nav-actions {
        display: none !important;
    }
}

.btn-enquire,
.btn-subscribe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.8rem;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: var(--transition-fast);
    background-color: transparent;
    cursor: pointer;
}

.btn-enquire {
    margin-left: 1rem;
}

.btn-enquire:hover,
.btn-subscribe:hover {
    background-color: var(--color-accent);
    color: white;
}

/* Nav Actions Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: 1.5rem;
}

.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: var(--transition-fast);
}

.nav-icon:hover {
    color: var(--color-white);
    transform: scale(1.1);
}

.nav-icon svg {
    width: 30px;
    height: 30px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-white);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.btn-submit {
    width: 100%;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 1.2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: 600;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--color-accent);
}

/* Map Section */
.map-section {
    padding: 2rem 0 6rem;
    background-color: var(--color-bg);
}

.map-heading {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.map-subtitle {
    color: var(--color-text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.map-container {
    width: 100%;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .map-container {
        height: 320px;
    }
}

/* 
=================================================
Footer
=================================================
*/
/* Footer */
.site-footer {
    background: var(--color-secondary);
    color: rgba(255, 255, 255, 0.7);
    padding: 6rem 0 2rem;
    border-top: 2px solid rgba(196, 154, 69, 0.22);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    color: var(--color-accent);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
}

.footer-col h4 {
    color: var(--color-white);
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 0.8rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-primary);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--transition-fast);
        opacity: 0;
        pointer-events: none;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.section-title {
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--color-accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: var(--transition-fast);
    text-decoration: none;
    cursor: pointer;
}

.btn-outline-light {
    border: 1px solid var(--color-white);
    color: var(--color-white);
    padding: 0.8rem 2rem;
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-outline-dark {
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 0.8rem 2rem;
}

.btn-outline-dark:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #050505;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 28%;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s linear;
}

.slide.active .slide-bg {
    transform: scale(1.03);
    /* Subtle Ken Burns */
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
    pointer-events: none;
}

.slide-content-wrap {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-text-box {
    max-width: 700px;
    text-align: left;
    padding-top: 5rem;
    padding-left: 2rem;
}

.slide-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease 0.5s;
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.1;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.slide-subtitle {
    font-size: 1.2rem;
    color: #f9f6f0 !important;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease 0.7s;
    font-family: var(--font-heading);
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.slide-bottom-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease 0.9s;
}

.slide.active .slide-title,
.slide.active .slide-subtitle,
.slide.active .slide-bottom-row {
    opacity: 1;
    transform: translateY(0);
}

.slide-cta {
    border-radius: 4px;
    border: 1px solid var(--color-accent);
    background: rgba(196, 154, 69, 0.1);
    font-size: 0.9rem;
    padding: 0.8rem 2.5rem;
    letter-spacing: 0.1em;
    color: var(--color-accent) !important;
    text-transform: uppercase;
    font-weight: 500;
    transition: var(--transition-fast);
}

.slide-cta:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: var(--color-primary) !important;
}

.slider-dots-container {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.dot.active,
.dot:hover {
    background: var(--color-accent);
    transform: scale(1.3);
}

.slider-arrows {
    position: absolute;
    right: 5%;
    bottom: 15%;
    z-index: 10;
    display: flex;
    gap: 1.5rem;
}

.slider-arrow {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.slider-arrow:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

.slider-arrow:hover {
    opacity: 1;
    transform: translateX(5px);
}

.slider-arrow.prev:hover {
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .slide-overlay {
        background: transparent;
    }

    .slide-text-box {
        padding-top: 10rem;
        text-align: center;
        margin: 0 auto;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .slide-bottom-row {
        flex-direction: column-reverse;
        gap: 2rem;
        justify-content: center;
    }

    .slider-arrows {
        display: none;
    }

    /* Mobile-specific banner images */
    .slide[data-banner-id="4"] .slide-bg {
        background-image: url('../../image/mobile_banner1.png') !important;
        background-position: center !important;
    }

    .slide[data-banner-id="5"] .slide-bg {
        background-image: url('../../image/mobile_banner2.png') !important;
        background-position: center !important;
    }

    .slide[data-banner-id="6"] .slide-bg {
        background-image: url('../../image/mobile_banner3.png') !important;
        background-position: center !important;
    }

    .slide[data-banner-id="7"] .slide-bg {
        background-image: url('../../image/mobile_banner4.png') !important;
        background-position: center !important;
    }
}

/* Welcome Section */
.welcome-section {
    padding: 8rem 0;
    background: var(--color-bg);
}

.welcome-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.welcome-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Product Grid - Responsive Columns */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Desktop: 4 columns */
    gap: 3rem;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Tablet: 2 columns */
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
        /* Mobile: 1 column */
        gap: 2rem;
    }
}

.product-card {
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: var(--color-card);
    border: 1px solid rgba(196, 154, 69, 0.16);
    box-shadow: var(--shadow-sm);
    border-radius: 0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--color-bg);
    margin-bottom: 1.5rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    width: 100%;
    height: 100%;
    background: #e5e5e5;
}

.product-card:hover .product-image {
    transform: scale(1.08);
    /* Image Zoom */
}

.product-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 26, 0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-hover-overlay {
    opacity: 1;
}

.view-product-text {
    color: var(--color-white);
    font-weight: 500;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 0.2rem;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.product-card:hover .view-product-text {
    transform: translateY(0);
}

.product-info {
    text-align: center;
}

.product-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.product-short-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Category Grid */
.category-section {
    background: var(--color-secondary);
    padding: 4rem 0 2rem;
}

.category-section .section-title {
    color: var(--color-white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    position: relative;
    height: 350px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    text-decoration: none;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    transition: background 0.4s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.category-name {
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-white) !important;
    margin-bottom: 2rem;
    transition: transform 0.4s ease, color 0.4s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.category-card:hover .category-name {
    transform: translateY(-5px);
    color: var(--color-accent) !important;
}

/* Story Teaser */
.story-teaser {
    padding: 3rem 0 5rem;
    color: var(--color-primary);

}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 901px) {
    .welcome-grid {
        grid-template-columns: 0.85fr 1.15fr !important;
        gap: 5rem !important;
    }
}

.story-image {
    position: relative;
    padding: 1rem;
}

.story-bg {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4/3;
    background-image: url("../../image/shilajit.webp");
    background-size: cover;
    background-position: center;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.story-content p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .slide-bg {
        background-position: center left;
    }

    .slide-overlay {
        background: transparent;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .page-hero {
        padding: 8rem 0 4rem;
    }

    .page-title {
        font-size: 3rem;
    }
}

/* Page Hero */
.page-hero {
    padding: 14rem 0 8rem;
    background: linear-gradient(135deg, #1C1C1A 0%, #2B2B28 48%, #34342F 100%);
    color: var(--color-bg);
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"%3E%3Cfilter id=\"noiseFilter\"%3E%3CfeTurbulence type=\"fractalNoise\" baseFrequency=\"0.65\" numOctaves=\"3\" stitchTiles=\"stitch\"/%3E%3C/filter%3E%3Crect width=\"100%25\" height=\"100%25\" filter=\"url(%23noiseFilter)\" opacity=\"0.05\"/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.8;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.cat-tab {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--color-primary);
    border-radius: 50px;
    color: var(--color-primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.cat-tab:hover,
.cat-tab.active {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Product Label */
.product-cat-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Empty State */
.empty-state {
    padding: 4rem 0;
}

.empty-state h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--color-text-light);
}

/* Product Detail Page */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.product-detail-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-cat-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.product-detail-title {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.product-full-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.enquiry-btn {
    display: inline-block;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1rem 3rem;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    transition: var(--transition-fast);
}

.enquiry-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}

.related-section {
    padding: 4rem 0 8rem;
    background: var(--color-bg);
}

/* Legal Pages */
.legal-section {
    background: var(--color-bg);
}

.legal-content h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 2.5rem 0 1rem;
}

.legal-content p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* 
=================================================
About Intro Section
=================================================
*/
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.intro-content {
    text-align: center;
    padding-right: 1.5rem;
}

.intro-heading-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.intro-line {
    flex-grow: 1;
    height: 1px;
    background-color: #ddd;
}

.intro-heading {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--color-primary);
    white-space: nowrap;
    margin: 0;
}

.intro-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.intro-image-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.intro-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 600px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-content {
        padding-right: 0;
    }

    .intro-heading {
        white-space: normal;
        font-size: 2.2rem;
    }

    .intro-heading-wrap {
        flex-direction: column;
        gap: 0.8rem;
    }

    .intro-heading-wrap .intro-line {
        width: 60px;
        height: 2px;
        margin: 0 auto;
    }
}

/* 
=================================================
Our Core Values Section
=================================================
*/
.core-values-section {
    padding: 6rem 0;
    background-color: var(--color-card);
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.core-value-card {
    background: var(--color-white);
    border: 2px solid rgba(26, 54, 38, 0.08);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.core-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--color-accent);
}

.core-value-icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.8rem;
    transition: var(--transition-fast);
}

.core-value-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.core-value-card:hover .core-value-icon-wrap {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.1);
}

.core-value-title {
    font-family: var(--font-body);
    /* Changed to body font to match screenshot */
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1.2rem;
}

.core-value-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .core-values-grid {
        grid-template-columns: 1fr;
    }
}

/* 
=================================================
Contact Page Redesign Layout
=================================================
*/
.contact-main-section {
    padding: 6rem 0;
    background-color: var(--color-bg);
}

.contact-layout {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 4rem;
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-info-panel {
    padding-right: 2rem;
}

@media (max-width: 1024px) {
    .contact-info-panel {
        padding-right: 0;
    }
}

.eyebrow-text {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.contact-heading {
    font-size: 2.8rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-quote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-text-light);
    border-left: 3px solid var(--color-accent);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.contact-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.6;
}

.detail-item i {
    color: var(--color-accent);
    margin-top: 0.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Contact Form Card */
.contact-form-card {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

@media (max-width: 600px) {
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(28, 28, 26, 0.18);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FFFFFF;
    color: var(--color-text);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* =================================================
   Product Detail Extended Info
   ================================================= */
.product-overview-section {
    border-bottom: 1px solid rgba(196, 154, 69, 0.1);
}

.product-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.highlight-card {
    padding: 2rem;
    background: var(--color-bg);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.product-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.benefit-icon {
    color: var(--color-accent);
    margin-top: 0.2rem;
}

.benefit-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text);
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.usage-card {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.usage-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem auto;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.usage-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.usage-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.ingredients-purity-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

@media (max-width: 768px) {
    .ingredients-purity-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* FAQ Accordion */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(196, 154, 69, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--color-accent);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--color-accent);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--color-bg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Mobile Fixed Footer Action Bar */
.mobile-action-bar {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 82px;
    }

    .mobile-action-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99999;
        height: 74px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: center;
        background: rgba(248, 246, 240, 0.96);
        backdrop-filter: blur(14px);
        border-top: 1px solid rgba(196, 154, 69, 0.22);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.12);
        border-radius: 18px 18px 0 0;
    }

    .mobile-action-item {
        height: 100%;
        text-decoration: none;
        color: #1C1C1A;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.02em;
        transition: all 0.25s ease;
    }

    .mobile-action-item svg {
        width: 21px !important;
        height: 21px !important;
        stroke-width: 1.9 !important;
        stroke: currentColor !important;
        color: #1C1C1A;
        display: block;
        margin: 0 auto;
        transition: all 0.25s ease;
    }

    .mobile-action-item:hover,
    .mobile-action-item:focus {
        color: #C49A45;
    }

    .mobile-action-item:hover svg,
    .mobile-action-item:focus svg {
        color: #C49A45;
        transform: translateY(-2px);
    }

    .mobile-action-primary {
        color: #C49A45;
    }

    .mobile-action-primary svg {
        color: #C49A45;
    }

    .mobile-action-primary::before {
        content: "";
        position: absolute;
        width: 46px;
        height: 46px;
        background: rgba(196, 154, 69, 0.12);
        border-radius: 50%;
        z-index: -1;
    }
}

@media (min-width: 769px) {
    .mobile-action-bar {
        display: none !important;
    }
}

/* Philosophy Section */
.philosophy-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: -1rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 5;
}

.philosophy-top {
    background-color: #F8F6F0;
    padding: 2.5rem 2rem 2rem 2rem;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.philosophy-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: #C49A45;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.philosophy-eyebrow::before,
.philosophy-eyebrow::after {
    content: '';
    height: 1px;
    width: 40px;
    background-color: rgba(196, 154, 69, 0.4);
}

.philosophy-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1C1C1A;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.philosophy-lotus {
    color: #C49A45;
    margin-bottom: 1.25rem;
}

.philosophy-lotus svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.philosophy-subtitle {
    max-width: 650px;
    margin: 0 auto 2rem auto;
    color: #444;
    font-size: 1.15rem;
    line-height: 1.6;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    padding: 0 1.5rem;
    text-align: center;
    position: relative;
}

.philosophy-top .philosophy-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(196, 154, 69, 0.2);
}

.philosophy-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid #C49A45;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
    color: #C49A45;
    background: transparent;
    transition: all 0.3s ease;
}

.philosophy-icon-wrap:hover {
    background: rgba(196, 154, 69, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(196, 154, 69, 0.15);
}

.philosophy-icon-wrap svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.5;
}

.philosophy-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1C1C1A;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.philosophy-item-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.philosophy-bottom {
    background-color: #1C1C1A;
    background-image: linear-gradient(135deg, rgba(28, 28, 26, 0.95) 0%, rgba(18, 20, 18, 0.98) 100%);
    padding: 3rem 2rem;
    color: #F8F6F0;
    position: relative;
}

.philosophy-bottom .philosophy-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(196, 154, 69, 0.15);
}

.philosophy-bottom .philosophy-item-title {
    color: #C49A45;
}

.philosophy-bottom .philosophy-item-text {
    color: #A0A0A0;
}

@media (max-width: 991px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 0;
    }

    .philosophy-top .philosophy-item:nth-child(2)::after,
    .philosophy-bottom .philosophy-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 3rem 0;
    }

    .philosophy-top .philosophy-item::after,
    .philosophy-bottom .philosophy-item::after {
        display: none !important;
    }

    .philosophy-heading {
        font-size: 2.2rem;
    }

    .philosophy-item {
        padding: 0 1rem;
    }

    .philosophy-top,
    .philosophy-bottom {
        padding: 4rem 1rem;
    }
}

/* ================================================= */
/* NEW PRODUCT DETAIL V2 LAYOUT                      */
/* ================================================= */

.prod-v2-section {
    width: 100%;
}

/* 1. Highlights Bar */
.prod-v2-highlights {
    background-color: #F8F6F0;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(196, 154, 69, 0.2);
    padding-top: 100px;
    /* Account for fixed header */
}

.prod-v2-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.prod-v2-highlight-item {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
}

.prod-v2-highlight-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(196, 154, 69, 0.2);
}

.prod-v2-highlight-icon {
    color: #C49A45;
    margin-bottom: 1rem;
}

.prod-v2-highlight-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.prod-v2-highlight-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1C1C1A;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.prod-v2-highlight-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* ============================================== */
/* UNIFIED ALTERNATING ROW LAYOUT (Sections 2-5)  */
/* ============================================== */
.prod-v2-alt-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.prod-v2-alt-row.reverse {
    flex-direction: row-reverse;
}

.prod-v2-alt-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prod-v2-alt-img img {
    width: 100%;
    max-width: 650px;
    max-height: 500px;
    object-fit: cover;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: block;
}

.prod-v2-alt-text {
    flex: 1.2;
    padding: 2rem;
}

@media (max-width: 991px) {

    .prod-v2-alt-row,
    .prod-v2-alt-row.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .prod-v2-alt-text {
        padding: 1rem;
    }
}

/* 2. Our Story Typography */
.prod-v2-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: #C49A45;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.prod-v2-eyebrow::before,
.prod-v2-eyebrow::after {
    content: '';
    height: 1px;
    width: 30px;
    background-color: rgba(196, 154, 69, 0.4);
}

.prod-v2-story-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1C1C1A;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.prod-v2-story-text {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* 3. Why Choose Typography */
.prod-v2-why-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #F8F6F0;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.prod-v2-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 3rem 1.5rem;
}

.prod-v2-why-item {
    text-align: center;
}

.prod-v2-why-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(196, 154, 69, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: #C49A45;
}

.prod-v2-why-item-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: #F8F6F0;
}

.prod-v2-why-item-desc {
    font-size: 0.85rem;
    color: #A0A0A0;
}

/* 4. Details Typography */
.prod-v2-details-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #1C1C1A;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.prod-v2-spec-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    gap: 1.5rem;
}

.prod-v2-spec-icon {
    color: #C49A45;
}

.prod-v2-spec-icon svg {
    width: 32px;
    height: 32px;
}

.prod-v2-spec-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1C1C1A;
    margin-bottom: 0.4rem;
}

.prod-v2-spec-value {
    font-size: 1.15rem;
    color: #444;
}

.prod-v2-enjoy-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: #1C1C1A;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.prod-v2-enjoy-desc {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 4rem;
    max-width: 600px;
}

.prod-v2-enjoy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.prod-v2-enjoy-item {
    text-align: center;
}

.prod-v2-enjoy-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(196, 154, 69, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem auto;
    color: #C49A45;
    transition: all 0.3s ease;
}

.prod-v2-enjoy-item:hover .prod-v2-enjoy-icon {
    background: rgba(196, 154, 69, 0.05);
    border-color: rgba(196, 154, 69, 0.8);
    transform: translateY(-5px);
}

.prod-v2-enjoy-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.2;
}

.prod-v2-enjoy-item-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1C1C1A;
    margin-bottom: 0.8rem;
}

.prod-v2-enjoy-item-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* 6. Usage & Wellness (Standalone Section) */
.prod-v2-usage {
    background-color: #F5F2EA;
    padding: 2rem 5% 6rem 5%;
}

.prod-v2-usage-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.prod-v2-safety {
    margin-top: 5rem;
    padding: 2.5rem;
    background-color: #ffffff;
    border-left: 4px solid #C49A45;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    border-radius: 0 12px 12px 0;
}

.prod-v2-safety-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #C49A45;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.prod-v2-safety-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {

    .prod-v2-highlights-grid,
    .prod-v2-enjoy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 0;
    }

    .prod-v2-highlight-item:nth-child(2)::after {
        display: none;
    }

    .prod-v2-story,
    .prod-v2-why,
    .prod-v2-enjoy,
    .prod-v2-details-grid {
        flex-direction: column;
    }

    .prod-v2-details-img-col {
        text-align: center;
    }

    .prod-v2-story-content,
    .prod-v2-why-content,
    .prod-v2-enjoy-content {
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .prod-v2-highlights-grid {
        grid-template-columns: 1fr;
    }

    .prod-v2-highlight-item::after {
        display: none !important;
    }
}


/* ==========================================================================
   WELLNESS INGREDIENTS PAGE STYLES (Mockup Match)
   ========================================================================== */

/* Hero Section */
.ingredients-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    max-height: 650px;
    background: url('../../image/wellness.webp') center top/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--color-white);
    margin-top: 0;
}

.ingredients-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(28, 28, 26, 0.9), rgba(28, 28, 26, 0.5), transparent);
    z-index: 1;
}

.ingredients-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 10%;
}

.ingredients-hero .hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.ingredients-hero .hero-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ingredients-hero .gold-icon {
    color: var(--color-accent);
    width: 24px;
    height: 24px;
}

.ingredients-hero .gold-line {
    height: 1px;
    flex: 1;
    max-width: 200px;
    background: var(--color-accent);
}

.ingredients-hero .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

/* Trust Strip */
.trust-strip {
    background: #fdfdfc;
    border-bottom: 1px solid #eaeaea;
    padding: 2.5rem 0;
}

.trust-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 200px;
}

.trust-item .trust-icon {
    color: var(--color-accent);
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.trust-item h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
    color: var(--color-primary);
}

.trust-item p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Collection Title */
.collection-title-section {
    padding: 6rem 0 3rem;
    background: var(--color-bg);
}

.collection-title-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.collection-title-section p {
    color: #666;
    font-size: 1.1rem;
}

/* Collection Cards */
.collection-cards {
    background: var(--color-bg);
    padding-bottom: 6rem;
}

#horizontal-scroll-section {
    overflow: hidden;
}

.horizontal-scroll-container {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    align-items: stretch;
    gap: 2rem;
    padding: 0 max(2rem, calc((100vw - 1200px) / 2));
}

.horizontal-item {
    width: calc(100vw - 4rem);
    max-width: 1200px;
    display: flex;
    flex-shrink: 0;
}

.horizontal-item .container {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
}


.ingredient-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    background: #fdfcf9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(196, 154, 69, 0.1);
    min-height: 380px;
    width: 100%;
    height: 100%;
}

.ing-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ing-text-col {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ing-brand {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.ing-title {
    font-size: 3.2rem;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.ing-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-family: var(--font-heading);
}

.ing-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.ing-text-col .btn-primary {
    align-self: flex-start;
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
    border-radius: 4px;
}

.ing-features-col {
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.ing-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.ing-feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: #444;
    font-weight: 500;
}

.ing-feature-list li:last-child {
    border-bottom: none;
}

.ing-feature-list i {
    color: #888;
    width: 20px;
    height: 20px;
}

/* Bottom Banner */
.bottom-trust-banner {
    background: #111;
    color: #fff;
    padding: 4rem 0;
    border-top: 4px solid var(--color-accent);
}

.banner-inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.shield-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-seal {
    color: var(--color-accent);
    width: 30px;
    height: 30px;
}

.banner-title {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.banner-desc {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

.banner-middle {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    padding: 0 2rem;
}

.b-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    transition: transform 0.4s ease;
    cursor: default;
}

.b-icon-box:hover {
    transform: translateY(-5px);
}

.b-icon-box i {
    color: var(--color-accent);
    width: 34px;
    height: 34px;
    stroke-width: 1.5;
    background: rgba(196, 154, 69, 0.08);
    padding: 15px;
    border-radius: 50%;
    box-sizing: content-box;
    border: 1px solid rgba(196, 154, 69, 0.25);
    transition: all 0.4s ease;
}

.b-icon-box:hover i {
    background: rgba(196, 154, 69, 0.15);
    box-shadow: 0 5px 20px rgba(196, 154, 69, 0.25);
    transform: scale(1.05);
    border-color: var(--color-accent);
}

.b-icon-box span {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.banner-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 1.5rem;
}

.ritual-title {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(196, 154, 69, 0.2);
}

.ritual-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-gold {
    background: var(--color-accent) !important;
    color: var(--color-primary) !important;
    border-color: var(--color-accent) !important;
    padding: 0.9rem 2.5rem !important;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(196, 154, 69, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
    white-space: nowrap !important;
    text-align: center !important;
    display: inline-block !important;
}

.btn-gold:hover {
    background: #dfb256 !important;
    border-color: #dfb256 !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(196, 154, 69, 0.5);
    color: var(--color-primary) !important;
}

/* Responsive */
@media (max-width: 1100px) {
    .ingredient-card {
        grid-template-columns: 1fr;
    }

    .ing-img-col {
        height: 300px;
    }

    .ing-features-col {
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding: 2rem 3rem;
    }

    .banner-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .banner-middle {
        border: none;
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
        padding: 2rem 0;
    }

    .banner-right {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .ingredients-hero .hero-title {
        font-size: 2.5rem;
    }

    .trust-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ing-text-col,
    .ing-features-col {
        padding: 2rem;
    }

    .banner-left {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

/* 
=================================================
Brand Ethos Sections
=================================================
*/
.ethos-section {
    background-color: #fdfcf0;
    padding: 6rem 0;
    color: var(--color-primary);
    position: relative;
}

.ethos-divider {
    width: 1px;
    background-color: rgba(196, 154, 69, 0.4);
    /* gold */
    height: 100%;
    margin: 0 auto;
}

.ethos-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-align: center;
}

.ethos-icon {
    color: var(--color-accent);
    margin-bottom: 1rem;
    text-align: center;
}

.ethos-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.2;
}

/* Philosophy */
.about-philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1.2fr;
    gap: 3rem;
    align-items: center;
}

.philosophy-left {
    padding-right: 1.5rem;
    text-align: left;
}

.philosophy-left .ethos-icon {
    margin-bottom: 0.5rem;
}

.philosophy-left .ethos-icon,
.philosophy-left .ethos-heading {
    text-align: left;
}

.philosophy-left .ethos-heading {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.philosophy-left p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
    color: #555;
}

.philosophy-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 1.5rem;
}

.about-philosophy-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1.2rem;
    align-items: start;
    text-align: left;
}

.philosophy-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(196, 154, 69, 0.08);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c49a45;
}

.philosophy-item-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
}

.about-philosophy-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.4rem;
    color: var(--color-primary);
    font-weight: 600;
}

.about-philosophy-item p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* Mission & Vision */
.mission-vision-section {
    background: #091122;
    color: #fff;
    padding: 4.5rem 0;
    position: relative;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mv-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
}

.mv-line {
    width: 1px;
    background: linear-gradient(to bottom, rgba(196, 154, 69, 0), rgba(196, 154, 69, 0.5) 20%, rgba(196, 154, 69, 0.5) 80%, rgba(196, 154, 69, 0));
    flex-grow: 1;
}

.mv-center-icon {
    color: var(--color-accent);
    padding: 1rem 0;
}

.mv-center-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.2;
}

.mv-col {
    text-align: center;
    padding: 0 1.5rem;
}

.mv-col .ethos-icon {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.mv-col .ethos-icon svg {
    stroke-width: 1.2;
    width: 36px;
    height: 36px;
}

.mv-col .ethos-heading {
    color: var(--color-accent);
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-weight: 400;
}

.mv-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 440px;
    margin: 0 auto;
    font-weight: 300;
}

/* Our Promise */
.promise-header {
    text-align: center;
    margin-bottom: 4rem;
}

.promise-subtitle {
    font-family: var(--font-heading);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.promise-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
}

.promise-item {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
}

.promise-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(196, 154, 69, 0.3);
}

.promise-item-icon {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.promise-item-icon svg {
    width: 45px;
    height: 45px;
    stroke-width: 1.2;
}

.promise-item h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-primary);
}

.promise-item p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}

.promise-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--color-primary);
}

.promise-footer .ethos-icon {
    margin-bottom: 1rem;
}

.promise-footer h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.2rem;
}

.promise-footer p {
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-style: italic;
    font-size: 1.1rem;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .about-philosophy-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-philosophy-grid>.ethos-divider {
        display: none;
    }

    .philosophy-left,
    .philosophy-right {
        padding: 0;
        text-align: left;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .mv-center {
        display: none;
    }

    .mv-col {
        padding: 0;
    }

    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1.5rem;
    }

    .promise-item:not(:last-child)::after {
        display: none;
    }

    .promise-item:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .ethos-section {
        padding: 4rem 0;
    }

    .mission-vision-section {
        padding: 4rem 0;
    }

    .ethos-heading,
    .philosophy-left .ethos-heading,
    .mv-col .ethos-heading,
    .promise-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .promise-header {
        margin-bottom: 2.5rem;
    }

    .promise-footer {
        margin-top: 3.5rem;
    }
}

@media (max-width: 600px) {
    .promise-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .promise-item:last-child {
        grid-column: span 1;
    }

    .about-philosophy-item {
        grid-template-columns: 45px 1fr;
        gap: 1.2rem;
    }

    .philosophy-item-icon {
        width: 45px;
        height: 45px;
    }
}

/* 
=================================================
Wellness Journey Page Styles
=================================================
*/

/* --- Variables (if not already in root, using fallbacks) --- */
/* (Primary, Secondary, Accent etc are already in root, we will just use them) */

/* --- Typography Helpers --- */
.wj-section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.wj-section-title.text-light {
    color: #F8F6F0;
    /* Off-white for dark sections */
}

.wj-icon-gold {
    color: var(--color-accent);
    width: 32px;
    height: 32px;
    margin-bottom: 1.5rem;
    stroke-width: 1.5;
}

/* --- Buttons --- */
.wj-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wj-btn-primary {
    background-color: var(--color-accent);
    color: #fff;
    border: 1px solid var(--color-accent);
}

.wj-btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
}

.wj-btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.wj-btn-secondary:hover {
    background-color: #fff;
    color: var(--color-primary);
}

.wj-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.wj-link-btn:hover {
    opacity: 0.8;
}

.wj-link-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.wj-link-btn:hover svg {
    transform: translateX(5px);
}

/* --- Sections Base --- */
.wellness-section {
    padding: 6rem 0;
}

/* --- 1. Hero Section --- */
.wellness-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Pushes content down slightly */
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(28, 28, 26, 0.95), rgba(28, 28, 26, 0.7), rgba(28, 28, 26, 0.22)),
        url('../../image/wellness.webp') center/cover no-repeat;
}

.wellness-hero-content {
    max-width: 650px;
    color: #fff;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.wellness-eyebrow {
    display: block;
    font-size: 0.85rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
}

.wellness-hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.wellness-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.wellness-hero-actions {
    display: flex;
    gap: 1rem;
}

/* --- 2. Intro Section --- */
.wj-intro-section {
    background-color: var(--color-bg);
}

.wj-intro-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.wj-intro-text {
    font-size: 1.2rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.wj-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.wellness-card {
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(196, 154, 69, 0.1);
    transition: transform 0.3s ease;
}

.wellness-card:hover {
    transform: translateY(-5px);
}

.wellness-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.wellness-card p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

/* --- 3. Journey Timeline Section --- */
.wj-timeline-section {
    background-color: #1A1A18;
    /* Dark charcoal */
}

.wj-timeline-header {
    text-align: center;
}

.wellness-timeline {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 15px;
}

.wellness-timeline::before {
    display: none;
}

.timeline-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(196, 154, 69, 0.15);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    width: 100% !important;
    left: 0 !important;
    margin-bottom: 0 !important;
    text-align: left !important;
    box-sizing: border-box;
}

.timeline-item:hover {
    background: rgba(196, 154, 69, 0.05);
    border-color: rgba(196, 154, 69, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.timeline-marker {
    display: none;
}

.timeline-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(196, 154, 69, 0.1);
    color: #c49a45;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(196, 154, 69, 0.2);
}

.timeline-item:hover .timeline-number {
    background: #c49a45;
    color: #fff;
    transform: scale(1.1);
}

.timeline-content {
    position: relative;
    z-index: 2;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #f8f6f0;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* Mobile Fallback for Grid */
@media (max-width: 992px) {
    .wellness-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wellness-timeline {
        grid-template-columns: 1fr;
    }
}

/* --- 4. Product Rituals Section --- */
.wj-rituals-section {
    background-color: #fbfbf8;
}

.wj-rituals-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ritual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ritual-card {
    background-color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.ritual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c49a45, transparent);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.ritual-card-inner {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ritual-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.ritual-card:hover::before {
    transform: scaleX(1);
}

.ritual-card h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-accent);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.ritual-product-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.ritual-desc {
    color: #777;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
    flex-grow: 1;
}

.ritual-card .wj-link-btn {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ritual-card .wj-link-btn svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ritual-card:hover .wj-link-btn svg {
    transform: translateX(6px);
}

/* Mobile Fallback for Timeline */
@media (max-width: 768px) {
    .wellness-timeline::before {
        left: 20px;
        transform: none;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-item:nth-child(odd) .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        left: 10px;
        right: auto;
        transform: none;
    }
}

/* --- 5. Daily Wellness Flow Section --- */
.daily-flow-section {
    background-color: var(--color-bg);
}

.daily-flow-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.daily-flow-image {
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.df-product-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.daily-flow-content .wj-section-title {
    text-align: left;
    margin-bottom: 3.5rem;
    font-size: 2.8rem;
}

.df-steps {
    position: relative;
}

.df-steps::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: rgba(196, 154, 69, 0.2);
}

.df-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.df-step:last-child {
    margin-bottom: 0;
}

.df-step-icon {
    width: 42px;
    height: 42px;
    background: var(--color-bg);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
}

.df-step-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.df-step-content {
    padding-top: 0.2rem;
}

.df-time {
    display: block;
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.df-step p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

/* --- 6. Trust Section --- */
.wj-trust-section {
    background-color: var(--color-white);
}

.wj-trust-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.trust-card {
    background-color: #ffffff;
    padding: 2.5rem 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 1.5rem;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(196, 154, 69, 0.2);
}

.trust-card h3 {
    grid-column: 2;
    grid-row: 1;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.trust-card p {
    grid-column: 2;
    grid-row: 2;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.trust-card .wj-icon-gold {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 28px;
    height: 28px;
    margin-bottom: 0;
    margin-top: 0.2rem;
    stroke-width: 1.5;
    color: #c49a45;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-card:hover .wj-icon-gold {
    transform: scale(1.15);
}

/* --- 7. CTA & Disclaimer --- */
.wellness-cta {
    background-color: #111110;
    padding: 5rem 0 3rem;
    text-align: center;
    color: #fff;
}

.cta-inner {
    max-width: 850px;
    margin: 0 auto 3rem;
}

.cta-inner h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-inner p {
    color: #f8f6f0;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.wellness-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2.5rem;
}

.wellness-disclaimer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive Overrides for Wellness Journey --- */
@media (max-width: 1024px) {
    .wj-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ritual-grid {
        grid-template-columns: 1fr;
    }

    .daily-flow-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .daily-flow-image {
        min-height: 300px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .wellness-section {
        padding: 4rem 0;
    }

    .wellness-hero {
        min-height: 400px;
        text-align: center;
    }

    .wellness-hero-content {
        margin: 0 auto;
    }

    .wellness-hero-title {
        font-size: 2.8rem;
    }

    .wellness-hero-actions {
        justify-content: center;
    }

    .wellness-hero-actions .wj-btn {
        width: 100%;
        text-align: center;
    }

    .wj-section-title {
        font-size: 2.2rem;
    }

    .cta-inner h2 {
        font-size: 2.2rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .wj-btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   Home Feature Section (Rooted in Ancient Wisdom)
   ========================================================================== */
.home-feature-section {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-left {
    width: 35%;
    background-color: #12161a;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #f8f6f0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 95%;
}

.feature-right {
    width: 65%;
    background-color: #0d1014;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
}

.feature-right .feature-overlay {
    display: none;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    position: relative;
    z-index: 2;
}

.feature-col {
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: background 0.4s ease;
}

.feature-col:last-child {
    border-right: none;
}

.feature-col:hover {
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    color: var(--color-accent);
    width: 45px;
    height: 45px;
    margin-bottom: 1.5rem;
    stroke-width: 1.2;
}

.feature-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    color: #fff;
}

.feature-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Responsive Feature Section */
@media (max-width: 1200px) {
    .feature-left {
        padding: 4rem 3rem;
        width: 40%;
    }

    .feature-right {
        width: 60%;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .feature-col:nth-child(even) {
        border-right: none;
    }

    .feature-col:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 991px) {
    .home-feature-section {
        flex-direction: column;
    }

    .feature-left,
    .feature-right {
        width: 100%;
    }

    .feature-col:nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .feature-col:last-child {
        border-bottom: none;
    }

    .feature-col:nth-child(3) {
        border-bottom: none;
    }

    /* On mobile, 3rd might not have bottom border depending on layout */
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-col {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    }

    .feature-col:last-child {
        border-bottom: none !important;
    }
}

/* Contact Hero Banner */
.contact-hero-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 450px;
    max-height: 650px;
    background: #08120c;
    overflow: hidden;
}

.contact-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .contact-hero-banner {
        height: 35vh;
        min-height: 250px;
        max-height: none;
    }

    .contact-hero-img {
        height: 100%;
        object-fit: cover;
    }
}

/* ==========================================================================
   Universal Device Responsiveness Fixes (Covers all models requested)
   ========================================================================== */

/* 1. Ensure all images and videos are responsive */
img,
video,
canvas,
svg {
    max-width: 100%;
    height: auto;
}

/* 2. Base touch target sizes for all touch devices */
@media (pointer: coarse) {

    a:not(.dot),
    button:not(.dot),
    input,
    select,
    .slider-arrow {
        min-height: 44px;
        /* Minimum touch target size */
        min-width: 44px;
    }

    .dot {
        /* Expand touch target using pseudo-element instead of making the dot huge */
        position: relative;
    }

    .dot::after {
        content: '';
        position: absolute;
        top: -15px;
        right: -15px;
        bottom: -15px;
        left: -15px;
    }
}

/* 3. Smallest Screens (Foldables, SE, etc - max 375px) */
@media (max-width: 375px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    .slider-arrows {
        display: none !important;
    }
}

/* 4. Medium & Large Phones (XR, 12 Pro, 14 Pro Max, Pixel 7, S20 Ultra - 376px to 576px) */
@media (min-width: 376px) and (max-width: 576px) {
    .container {
        width: 92%;
        padding: 0 12px;
    }

    h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 1.9rem !important;
    }
}

/* 5. Tablets & Foldables (iPad Mini, Air, Surface Duo - 577px to 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .container {
        width: 90%;
    }

    /* Ensure flex items wrap properly on tablets */
    .row,
    .flex-container {
        flex-wrap: wrap;
    }
}

/* 6. Large Tablets & Small Laptops (iPad Pro, Surface Pro 7, Nest Hubs - 993px to 1368px) */
@media (min-width: 993px) and (max-width: 1368px) {
    .container {
        max-width: 96%;
    }

    /* Optimize hover effects for these devices which might have touch and cursor */
    .slide-overlay {
        opacity: 0.5;
        /* Default state for visibility */
    }
}

/* Prevent horizontal scroll on body universally */
body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Ensure mobile action bar doesn't overlap */
@media screen and (max-width: 768px) {
    .floating-whatsapp {
        bottom: 80px; /* Above mobile action bar */
    }
}