/* ==========================================================================
   House of Tesouro - Luxury Brand Design System Stylesheet
   Powered by Bootstrap 5 + Vanilla CSS + Remixicon
   ========================================================================== */
/* --- Globals & Foundations --- */
@import url('global.css');

/* ==========================================================================
   3. Page-Specific Custom Styling (Migrated from HTML headers)
   ========================================================================== */
/* --- elements.html Styles --- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

.elements-sticky-nav {
    position: sticky;
    top: 91px;
    z-index: 999;
    background-color: rgba(253, 249, 241, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--outline-variant);
    border-bottom: 1px solid var(--outline-variant);
}

.element-nav-dot {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-on-surface-variant);
    text-decoration: none;
    padding: 18px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-micro);
    font-weight: 500;
}

.element-nav-dot:hover,
.element-nav-dot.active {
    color: var(--primary-color);
    font-weight: 600;
}

.element-nav-dot i {
    font-size: 16px;
}

.materials-pill {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-color);
    font-size: 18px;
    letter-spacing: 0.02em;
}

/* --- journal.html Styles --- */
.journal-sticky-bar {
    position: sticky;
    top: 91px;
    z-index: 999;
    background-color: rgba(253, 249, 241, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--outline-variant);
    border-bottom: 1px solid var(--outline-variant);
}

.journal-nav-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-on-surface-variant);
    text-decoration: none;
    padding: 20px 0;
    display: inline-block;
    transition: var(--transition-micro);
}

.journal-nav-link:hover,
.journal-nav-link.active {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.filter-article-item {
    margin-bottom: 30px;
}

.journal-card {
    background-color: #FAF8F5;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.journal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(47, 74, 60, 0.05);
}

.journal-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
    background-color: var(--bg-container-low);
}

.journal-card-img-wrap img {
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journal-card:hover .journal-card-img-wrap img {
    transform: scale(1.05);
}

.journal-card-hover-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(25, 51, 38, 0.03);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.journal-card:hover .journal-card-hover-overlay {
    opacity: 1;
}

.journal-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.journal-card-tag-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.journal-card-tag-icon {
    width: 14px;
    height: 14px;
    color: #C6A46C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.journal-card-tag {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(47, 74, 60, 0.6);
}

.journal-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
    color: #2F4A3C;
    transition: color 0.4s ease;
}

.journal-card:hover .journal-card-title {
    color: #C6A46C;
}

.journal-card-divider {
    width: 35px;
    height: 1.5px;
    background-color: #C6A46C;
    margin-top: 4px;
}

.journal-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(47, 74, 60, 0.7);
    margin-bottom: 5px;
}

.journal-card-link {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C6A46C;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: color 0.3s ease;
}

.journal-card-link .link-arrow {
    transition: transform 0.3s ease;
}

.journal-card-link:hover {
    color: #2F4A3C;
}

.journal-card-link:hover .link-arrow {
    transform: translateX(4px);
}

.almanac-pagination-wrap {
    margin-top: 20px;
    text-align: center;
}

/* --- earth-box.html Styles --- */
.product-thumbnail {
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: var(--bg-container-low);
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-micro);
    border: 1px solid transparent;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    opacity: 1;
    border-color: var(--secondary-color);
}

.tier-btn {
    background-color: transparent;
    color: var(--text-on-surface-variant);
    border: 1px solid var(--outline-variant);
    padding: 14px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-premium);
    border-radius: 0;
}

.tier-btn:hover,
.tier-btn.active {
    border-color: var(--secondary-color);
    color: var(--primary-color);
    background-color: var(--bg-container-high);
}

.personalize-card {
    border: 1px solid var(--outline-variant);
    padding: 20px;
    background-color: var(--bg-container-low);
    transition: var(--transition-premium);
    cursor: pointer;
}

.personalize-card:hover {
    border-color: var(--secondary-color);
}

.inside-box-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--outline-variant);
    transition: var(--transition-premium);
}

.inside-box-card.highlighted {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(198, 164, 108, 0.15);
    background-color: #faf6f0;
    transform: translateY(-8px);
}

/* ==========================================================================
   4. About Us / Elements Page Styles
   ========================================================================== */
/* --- Element Hero Header --- */
.element-hero-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    background-color: var(--bg-container-low);
    overflow: hidden;
    min-height: 85vh;
}

.element-hero-header .hero-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.element-hero-header .hero-bg-texture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.elements-hero-row {
    --bs-gutter-x: 60px;
    display: flex;
    flex-wrap: wrap;
}

.elements-hero-text-col {
    display: flex;
    align-items: center;
}

.element-hero-header .hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0;
    padding: 20px 0;
    text-align: left;
}

.element-hero-header .philosophy-tag {
    margin-bottom: 20px;
    letter-spacing: 0.2em;
}

.element-hero-header .philosophy-title {
    margin-bottom: 30px;
    font-size: 64px;
    line-height: 1.15;
}

.element-hero-header .philosophy-intro {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 1.6;
}

.element-hero-header .luxury-line {
    width: 120px;
    margin-left: 0;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 30px;
    height: 1px;
    background-color: var(--primary-color);
    opacity: 0.4;
}

.element-hero-header .philosophy-description {
    max-width: 620px;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.7;
}

.element-hero-header .philosophy-conclusion {
    margin-top: 40px;
    margin-bottom: 0px;
    font-size: 12px;
    letter-spacing: 0.15em;
}

/* --- Image Side Wow Styling --- */
.elements-hero-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.elements-hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 540px;
    aspect-ratio: 4 / 5;
    margin: 0 auto;
}

.elements-hero-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    z-index: 2;
    background-color: var(--surface-variant);
}

.elements-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.elements-hero-image-wrapper:hover .elements-hero-image {
    transform: scale(1.04);
}

.elements-hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 3;
}

/* Offset gold/bronze background frame for a high-end luxury feel */
.elements-hero-image-border {
    position: absolute;
    top: 24px;
    left: 24px;
    right: -24px;
    bottom: -24px;
    border: 1px solid var(--primary-color);
    opacity: 0.25;
    border-radius: 4px;
    pointer-events: none;
    z-index: 1;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.elements-hero-image-wrapper:hover .elements-hero-image-border {
    transform: translate(-8px, -8px);
}

/* Responsive Overrides for Element Hero Header */

@media (max-width: 767.98px) {
    .element-hero-header .philosophy-tag {
        margin-bottom: 12px;
    }

    .element-hero-header .philosophy-title {
        margin-bottom: 16px;
    }

    .element-hero-header .philosophy-intro {
        margin-bottom: 16px;
    }

    .element-hero-header .luxury-line {
        margin-bottom: 16px;
        width: 160px;
    }

    .element-hero-header .philosophy-description {
        margin-bottom: 16px;
    }

    .element-hero-header .philosophy-conclusion {
        margin-top: 25px;
    }

}

/* --- Sticky Elements Navigation Bar --- */
.elements-sticky-nav {
    position: sticky;
    top: 80px;
    z-index: 100;
    background-color: rgba(253, 249, 241, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--outline-variant);
    border-top: 1px solid var(--outline-variant);
    padding: 14px 0;
    transition: var(--transition-premium);
}

.element-nav-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-on-surface-variant);
    text-decoration: none;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: var(--transition-premium);
    position: relative;
}

.element-nav-dot i {
    font-size: 16px;
    transition: var(--transition-micro);
}

.element-nav-dot:hover {
    color: var(--primary-color);
    background-color: var(--bg-container-high);
    border-color: var(--outline-variant);
}

.element-nav-dot.active {
    color: var(--primary-color);
    background-color: var(--bg-container-high);
    border-color: var(--secondary-color);
}

.element-nav-dot.active i {
    color: var(--secondary-color);
}

/* --- Materials Pill Tag --- */
.materials-pill {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--on-secondary-container);
    background-color: rgba(198, 164, 108, 0.15);
    border: 1px solid rgba(198, 164, 108, 0.3);
    padding: 12px 24px;
    border-radius: 4px;
    line-height: 1.6;
}

/* --- Card Zoom Hover Effect --- */
.card-zoom img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Air Section Redesign Styles --- */
.air-content-wrapper {
    max-width: 540px;
}

.air-wind-icon-container {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
}

.air-wind-svg {
    width: 100%;
    height: 100%;
}

.air-titledisplay {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.air-subtitletext {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.air-divider {
    position: relative;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(198, 164, 108, 0.4), var(--secondary-color), rgba(198, 164, 108, 0.4), transparent);
    width: 100%;
    max-width: 320px;
    margin: 24px 0;
}

.air-divider::after {
    content: '♦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary-color);
    font-size: 10px;
    background-color: var(--bg-container-low);
    padding: 0 8px;
}

.air-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-on-surface-variant);
    line-height: 1.8;
    margin-bottom: 20px;
}

.air-crafts-card {
    background-color: rgba(198, 164, 108, 0.04);
    border: 1px solid rgba(198, 164, 108, 0.22);
    border-radius: 12px;
    padding: 24px;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 520px;
}

.air-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary-dark);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0px;
}

.air-card-divider {
    position: relative;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(198, 164, 108, 0.3), transparent);
    width: 60%;
    margin: 16px auto;
}

.air-card-divider::after {
    content: '♦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary-color);
    font-size: 8px;
    background-color: #f6ede3;
    padding: 0 6px;
}

.air-crafts-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.air-craft-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: calc(25% - 6px);
}

.air-craft-icon-box {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-premium);
}

.air-craft-item:hover .air-craft-icon-box {
    transform: scale(1.12);
}

.craft-icon {
    width: 100%;
    height: 100%;
}

.air-craft-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-on-surface);
    line-height: 1.4;
}

.air-conclusion-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary-dark);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 0px;
}

/* Responsive Overrides for Air Section */

@media (max-width: 1199.98px) {
    .air-titledisplay {
        font-size: 60px;
    }

}

@media (max-width: 991.98px) {
    .air-content-wrapper {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .air-titledisplay {
        font-size: 52px;
    }

    .air-crafts-card {
        max-width: 100%;
    }

}

@media (max-width: 575.98px) {
    .air-titledisplay {
        font-size: 44px;
    }

    .air-divider {
        margin: 18px 0;
    }

    .air-crafts-card {
        padding: 16px 12px;
    }

    .air-craft-label {
        font-size: 11px;
    }

    .air-crafts-grid {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .air-craft-item {
        width: calc(50% - 4px);
    }

    .air-card-divider {
        width: 80%;
    }

}

/* --- Element Section Layout --- */
.element-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

.element-icon {
    font-size: 32px;
    color: var(--primary-color);
    line-height: 1;
}

.element-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary-dark);
    display: block;
    margin-bottom: 20px;
}

.element-description {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--text-on-surface-variant);
    line-height: 1.85;
    margin-bottom: 40px;
}

/* --- Element Image with Offset Frame --- */
.element-image-wrapper {
    position: relative;
}

.element-image-wrapper .image-frame {
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.element-image-wrapper .image-frame img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.element-image-wrapper:hover .image-frame img {
    transform: scale(1.04);
}

.element-image-wrapper .offset-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--outline-variant);
    z-index: -1;
    pointer-events: none;
    top: 0;
    left: 0;
}

.element-image-wrapper .offset-border.offset-left {
    transform: translate(-15px, 15px);
}

.element-image-wrapper .offset-border.offset-right {
    transform: translate(15px, -15px);
}

/* --- Materials Divider --- */
.materials-divider {
    border-top: 1px solid var(--outline-variant);
    padding-top: 24px;
    margin-bottom: 40px;
}

.materials-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-on-surface-variant);
    display: block;
    margin-bottom: 12px;
}

/* --- Sustainability / Elements Behind Section --- */
.sustainability-section {
    background-color: #132219;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* --- Sustainability Section Content --- */
.sustainability-icon-box {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sustainability-leaf-svg {
    width: 100%;
    height: 100%;
}

.sustainability-tag {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.sustainability-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 28px;
}

.sustainability-divider {
    position: relative;
    height: 1px;
    background: rgba(198, 164, 108, 0.3);
    width: 180px;
    margin: 28px 0;
}

.sustainability-divider::after {
    content: '♦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary-color);
    font-size: 10px;
    background: #132219;
    padding: 0 6px;
}

.sustainability-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
}

.sustainability-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--secondary-color);
    line-height: 1.6;
    margin-top: 36px;
    margin-bottom: 8px;
}

.sustainability-quote-author {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.2em;
    margin-top: 0px;
    margin-bottom: 40px;
    display: block;
}

.sustainability-btn {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--secondary-color) !important;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(198, 164, 108, 0.6);
    padding: 16px 36px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-premium);
    background-color: transparent;
}

.sustainability-btn:hover {
    color: #ffffff !important;
    border-color: var(--secondary-color);
    background-color: rgba(198, 164, 108, 0.05);
    box-shadow: 0 4px 20px rgba(198, 164, 108, 0.1);
}

.sustainability-btn-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    transition: transform 0.4s var(--transition-premium);
}

.sustainability-btn:hover .sustainability-btn-icon {
    transform: translate(2px, -2px);
}

.sustainability-section .element-image-wrapper .image-frame img {
    height: 650px;
    border-radius: 2px;
}

/* --- Sustainability Content Responsive Overrides --- */

@media (max-width: 1440.98px) {
    .sustainability-section .element-image-wrapper .image-frame img {
        height: 600px;
    }

}

@media (max-width: 1199.98px) {
    .sustainability-title {
        font-size: 44px;
    }

    .sustainability-section .element-image-wrapper .image-frame img {
        height: 550px;
    }

}

@media (max-width: 991.98px) {
    .sustainability-content-wrapper {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .sustainability-title {
        font-size: 38px;
    }

    .sustainability-divider {
        max-width: 180px;
    }

    .sustainability-section .element-image-wrapper .image-frame img {
        height: 480px;
    }

}

@media (max-width: 767.98px) {
    .sustainability-title {
        font-size: 34px;
    }

    .sustainability-description {
        font-size: 15px;
    }

    .sustainability-quote {
        font-size: 17px;
        margin-top: 28px;
    }

}

@media (max-width: 575.98px) {
    .sustainability-icon-box {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .sustainability-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .sustainability-description {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .sustainability-quote {
        font-size: 16px;
        margin-top: 24px;
    }

    .sustainability-btn {
        padding: 14px 28px;
        font-size: 11px;
    }

    .sustainability-section .element-image-wrapper .image-frame img {
        height: 380px;
    }

}

@media (max-width: 360.98px) {
    .sustainability-title {
        font-size: 24px;
    }

    .sustainability-btn {
        padding: 12px 24px;
        letter-spacing: 1.5px;
    }

    .sustainability-section .element-image-wrapper .image-frame img {
        height: 320px;
    }

}

/* Header Area styling */
.elements-section-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 70px;
    gap: 40px;
}

.elements-header-left {
    flex: 1 1 45%;
    max-width: 500px;
}

.elements-header-right {
    flex: 1 1 45%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.elements-badge {
    width: 48px;
    height: 48px;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.elements-badge .badge-sparkle-svg {
    width: 100%;
    height: 100%;
}

.elements-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 24px;
}

/* Luxury Divider Line with Bead in Center */
.luxury-divider-bead {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 160px;
    margin-top: 20px;
}

.luxury-divider-bead .divider-line-left,
.luxury-divider-bead .divider-line-right {
    flex: 1;
    height: 1px;
    background-color: rgba(198, 164, 108, 0.3);
}

.luxury-divider-bead .divider-bead {
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.elements-intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.elements-intro-text .intro-paragraph-main {
    margin-bottom: 20px;
    font-weight: 300;
}

.elements-intro-text .intro-paragraph-sub {
    margin-bottom: 20px;
    font-weight: 300;
}

.elements-intro-text .highlight-gold {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Explore button styling */
.elements-header-cta {
    margin-top: 10px;
}

.btn-luxury-outline-gold {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--secondary-color) !important;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(198, 164, 108, 0.4);
    padding: 16px 36px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-premium);
    background-color: transparent;
}

.btn-luxury-outline-gold:hover {
    border-color: var(--secondary-color);
    background-color: rgba(198, 164, 108, 0.05);
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(198, 164, 108, 0.15);
}

.btn-luxury-outline-gold .cta-arrow {
    transition: transform 0.4s var(--transition-premium);
}

.btn-luxury-outline-gold:hover .cta-arrow {
    transform: translateX(5px);
}

/* Grid of Cards styling */
.elements-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.element-card-col {
    width: 100%;
}

.element-showcase-card {
    background-color: transparent;
    transition: var(--transition-premium);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.element-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 125%;
    overflow: visible;
    margin-bottom: 40px;
}

.element-card-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
    filter: brightness(0.85);
}

.element-showcase-card:hover .element-card-image-wrapper img {
    transform: scale(1.03);
    filter: brightness(1.0);
}

/* Floating overlay badge positioned at bottom-center of the image wrapper */
.element-badge-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 2;
}

.badge-circle-overlay {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #132219;
    border: 1px solid rgba(198, 164, 108, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-premium);
}

.badge-circle-overlay .element-icon-svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.5s var(--transition-premium);
}

/* Card Body */
.element-card-body {
    padding-top: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.element-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 12px;
}

.element-card-divider {
    width: 15px;
    height: 1px;
    background-color: var(--secondary-color);
    margin-bottom: 16px;
}

.element-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-weight: 300;
    max-width: 280px;
}

/* Hover effects for cards */
.element-showcase-card:hover .badge-circle-overlay {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    color: #132219;
    box-shadow: 0 6px 20px rgba(198, 164, 108, 0.4);
}

.element-showcase-card:hover .badge-circle-overlay .element-icon-svg {
    transform: scale(1.1);
}

.element-showcase-card:hover .element-card-title {
    color: var(--secondary-color);
}

/* Responsive Overrides (Using exact mandatory breakpoints) */

@media (max-width: 1199.98px) {
    .elements-main-title {
        font-size: 36px;
    }

    .elements-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .badge-circle-overlay {
        width: 50px;
        height: 50px;
    }

    .badge-circle-overlay .element-icon-svg {
        width: 24px;
        height: 24px;
    }

}

@media (max-width: 991.98px) {
    .elements-section-header {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .elements-header-left,
    .elements-header-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .elements-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 575.98px) {
    .elements-main-title {
        font-size: 30px;
    }

    .elements-cards-grid {
        grid-template-columns: 1fr;
    }

    .element-card-image-wrapper {
        padding-bottom: 62.5%;
        /* 16:10 aspect ratio */
        height: 0;
    }

}

/* --- Element Page Enhancements --- */
.element-depiction {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18.4px;
    color: var(--secondary-dark);
    margin-top: -12px;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.element-origin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    background-color: rgba(168, 181, 160, 0.3);
    padding: 8px 14px;
    border-radius: 4px;
}

.element-origin i {
    font-size: 14px;
    color: var(--secondary-dark);
}

.element-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.element-tag {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-on-surface-variant);
    background-color: transparent;
    border: 1px solid rgba(168, 181, 160, 0.35);
    padding: 8px 16px;
    border-radius: 100px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.element-tag:hover {
    border-color: var(--secondary-color);
    color: var(--primary-color);
    background-color: rgba(198, 164, 108, 0.05);
}

.element-design-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-dark);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 4px;
    margin-bottom: 30px;
}

.element-design-count i {
    font-size: 12px;
}

.element-custom-note {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-style: italic;
    color: var(--secondary-dark);
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.element-custom-note i {
    color: var(--secondary-color);
}

/* Artisan craft grid for Air */
.element-craft-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
    background-color: var(--bg-surface);
    padding: 20px;
    border-radius: 4px;
    border: 1px solid var(--outline-variant);
}

.craft-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border-radius: 2px;
    transition: var(--transition-micro);
}

.craft-card:hover {
    background-color: var(--bg-container-low);
}

.craft-city {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondary-color);
}

.craft-name {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.craft-desc {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--text-on-surface-variant);
}

/* --- Negative Z-index Utility --- */
.-z-10 {
    z-index: -1 !important;
}

/* --- About Us Responsive Adjustments --- */

@media (max-width: 991.98px) {
    .element-hero-header {
        min-height: 60vh;
    }

    .elements-sticky-nav {
        top: 70px;
    }

    .element-nav-dot {
        padding: 6px 14px;
        font-size: 11px;
    }

    .element-image-wrapper .image-frame img {
        height: 400px;
    }

    .element-image-wrapper .offset-border {
        display: none;
    }

}

@media (max-width: 767.98px) {
    .element-hero-header {
        min-height: 50vh;
    }

    .elements-sticky-nav {
        top: 64px;
    }

    .element-nav-dot {
        padding: 6px 10px;
        font-size: 10px;
        gap: 4px;
    }

    .element-nav-dot i {
        font-size: 14px;
    }

    .element-image-wrapper .image-frame img {
        height: 320px;
    }

    .sustainability-section .sustainability-images img {
        height: 180px;
    }

}

/* ==========================================================================
   5. About Us Page Styles
   ========================================================================== */
/* --- About Hero Banner --- */
.about-hero {
    position: relative;
    background: radial-gradient(circle at 60% 40%, rgba(198, 164, 108, 0.05) 0%, var(--bg-surface) 70%);
    overflow: hidden;
}

/* Botanical Watermark behind text */
.about-hero::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 320px;
    height: 320px;
    background-image: url('../images/footer-plant.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.06;
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 0;
}

/* Extra decorative warm glow in top right */
.about-hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(198, 164, 108, 0.12) 0%, rgba(198, 164, 108, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 1;
}

.about-hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Tiny elegant gold dot before eyebrow */
.about-hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: inline-block;
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-hero-divider {
    color: var(--secondary-color);
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.about-hero-divider .leaf-divider {
    display: block;
}

.about-hero-taglines {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.about-hero-lead {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    line-height: 40px;
    color: var(--primary-color);
    margin-bottom: 0;
    letter-spacing: 0.2px;
    border-left: 2px solid var(--secondary-color);
    padding-left: 24px;
}

.about-hero-paragraph {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 32px;
    color: var(--text-on-surface-variant);
    margin-bottom: 0;
    opacity: 0.95;
    letter-spacing: 0.2px;
    padding-left: 26px;
}

.about-hero-image-container {
    position: relative;
    width: 100%;
    overflow: visible;
    border-radius: 260px 260px 16px 12px;
    background-color: var(--bg-surface);
    padding: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(198, 164, 108, 0.15);
    z-index: 1;
}

/* Elegant gold line frame floating slightly behind the arch */
.about-hero-image-container::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    right: -15px;
    bottom: -15px;
    border: 1px solid var(--secondary-color);
    border-radius: 260px 260px 16px 12px;
    z-index: -1;
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
    opacity: 0.75;
}

.about-hero-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 250px 250px 8px 6px;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Beautiful hover transitions */
.about-hero-image-container:hover .about-hero-img {
    transform: scale(1.03) translateY(-4px);
}

.about-hero-image-container:hover::before {
    transform: translate(-6px, -6px) scale(1.01);
    opacity: 1;
    border-color: var(--primary-color);
}

/* --- About Hero Media Queries --- */

@media (max-width: 1199.98px) {
    .about-hero-title {
        font-size: 52px;
    }

    .about-hero-lead {
        font-size: 22px;
        line-height: 36px;
    }

    .about-hero-img {
        height: 480px;
    }

    .about-hero-image-container {
        border-radius: 220px 220px 16px 12px;
    }

    .about-hero-image-container::before {
        border-radius: 220px 220px 16px 12px;
    }

    .about-hero-img {
        border-radius: 210px 210px 8px 6px;
    }

}

@media (max-width: 991.98px) {
    .about-hero::before {
        width: 200px;
        height: 200px;
        bottom: -20px;
        left: -20px;
    }

    .about-hero-content {
        align-items: center;
        text-align: center;
        padding: 0;
    }

    .about-hero-divider {
        justify-content: center;
        margin-bottom: 30px;
    }

    .about-hero-lead {
        font-size: 20px;
        line-height: 32px;
        border-left: none;
        padding-left: 0;
    }

    .about-hero-paragraph {
        font-size: 17px;
        line-height: 28px;
        padding-left: 0;
    }

    .about-hero-image-col {
        margin-top: 50px;
    }

    .about-hero-image-container {
        max-width: 480px;
        margin: 0 auto;
        border-radius: 200px 200px 16px 12px;
    }

    .about-hero-image-container::before {
        border-radius: 200px 200px 16px 12px;
        top: 20px;
        left: 20px;
        right: -12px;
        bottom: -12px;
    }

    .about-hero-img {
        height: 450px;
        border-radius: 190px 190px 8px 6px;
    }

}

@media (max-width: 767.98px) {
    .about-hero-title {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .about-hero-lead {
        font-size: 18px;
        line-height: 28px;
    }

    .about-hero-paragraph {
        font-size: 16px;
        line-height: 26px;
    }

    .about-hero-image-col {
        margin-top: 40px;
    }

    .about-hero-image-container {
        border-radius: 180px 180px 16px 12px;
    }

    .about-hero-image-container::before {
        border-radius: 180px 180px 16px 12px;
        top: 15px;
        left: 15px;
        right: -10px;
        bottom: -10px;
    }

    .about-hero-img {
        height: 380px;
        border-radius: 170px 170px 8px 6px;
    }

}

@media (max-width: 575.98px) {
    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-image-container {
        border-radius: 150px 180px 16px 12px;
    }

    .about-hero-image-container::before {
        border-radius: 150px 180px 16px 12px;
    }

    .about-hero-img {
        height: 320px;
        border-radius: 140px 170px 8px 6px;
    }

}

/* --- Collections Hero (Figma Aligned) --- */
.collections-hero {
    position: relative;
    background-color: #132219;
    color: #ffffff;
    overflow: hidden;
}

.collections-hero-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.hero-eyebrow-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.collections-hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
}

.collections-hero-circle-dot {
    position: relative;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(198, 164, 108, 0.4);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.collections-hero-circle-dot::after {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.collections-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.collections-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.collections-hero-divider .divider-line {
    width: 60px;
    height: 1px;
    background-color: rgba(198, 164, 108, 0.3);
}

.collections-hero-divider .divider-diamond {
    font-size: 10px;
    color: var(--secondary-color);
}

.collections-hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
}

.collections-hero-sub-line {
    width: 60px;
    height: 1px;
    background-color: var(--secondary-color);
    margin: 30px auto 0;
    opacity: 0.35;
}

/* 4 Elements Row */
.collections-elements-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    max-width: 1140px;
    margin: 0 auto 50px;
    gap: 0;
}

/* Thin vertical gold lines separating column cells */
.collections-element-col {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.collections-elements-row .collections-element-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background-color: rgba(198, 164, 108, 0.2);
}

.collections-element-badge {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(198, 164, 108, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    background-color: transparent;
    margin-bottom: 24px;
    transition: var(--transition-premium);
}

.collections-element-badge .element-icon-svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    transition: transform 0.5s var(--transition-premium);
}

.collections-element-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 12px;
}

.collections-element-diamond-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    width: 100%;
}

.collections-element-diamond-divider .element-divider-line {
    width: 12px;
    height: 1px;
    background-color: rgba(198, 164, 108, 0.3);
}

.collections-element-diamond-divider .element-divider-diamond {
    font-size: 8px;
    color: var(--secondary-color);
}

.collections-element-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 24px;
    flex-grow: 1;
    max-width: 240px;
}

.collections-element-link {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--secondary-color) !important;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-premium);
    margin-top: auto;
}

.collections-element-link .arrow {
    transition: transform 0.3s var(--transition-premium);
}

/* Hover States */
.collections-element-col:hover .collections-element-badge {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    color: #132219;
    box-shadow: 0 4px 15px rgba(198, 164, 108, 0.3);
}

.collections-element-col:hover .collections-element-badge .element-icon-svg {
    transform: scale(1.1);
}

.collections-element-col:hover .collections-element-title {
    color: var(--secondary-color);
}

.collections-element-col:hover .collections-element-link {
    color: #ffffff !important;
}

.collections-element-col:hover .collections-element-link .arrow {
    transform: translateX(4px);
}

/* Hero Footer banner */
.collections-hero-footer {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-top: 20px;
}

.footer-divider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-divider-wrapper .footer-divider-line {
    flex: 1;
    height: 1px;
    background-color: rgba(198, 164, 108, 0.2);
}

.collections-footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(198, 164, 108, 0.85);
}

.collections-footer-logo-symbol {
    width: 24px;
    height: 24px;
    margin: 0 auto;
    color: var(--secondary-color);
}

.floral-symbol-svg {
    width: 100%;
    height: 100%;
}

/* Responsive Breakpoints (Mandatory List) */

@media (max-width: 1199.98px) {
    .collections-hero-title {
        font-size: 42px;
    }

    .collections-hero-tagline {
        font-size: 16px;
    }

    .collections-elements-row {
        max-width: 960px;
    }

    .collections-element-col {
        padding: 20px 20px;
    }

}

@media (max-width: 991.98px) {
    .collections-elements-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .collections-elements-row .collections-element-col:not(:last-child)::after {
        display: none;
    }

    .collections-element-col {
        padding: 30px;
        background-color: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(198, 164, 108, 0.1);
        border-radius: 4px;
    }

}

@media (max-width: 575.98px) {
    .collections-hero-title {
        font-size: 32px;
    }

    .collections-elements-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .collections-element-col {
        padding: 24px;
    }

    .footer-divider-wrapper {
        gap: 15px;
    }

    .collections-footer-text {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

}

/* --- Brand Story Split Section (Design Aligned) --- */
.about-story-section {
    background-color: var(--bg-surface);
}

.about-story-section {
    background-color: #FAF6F2;
    padding: 50px 0;
    overflow: hidden;
}

.about-story-design-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin: 0;
}

.about-story-section .story-brand-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
}

.about-story-section .story-monogram {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    color: var(--secondary-color);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 8px;
    position: relative;
}

.about-story-section .story-monogram sub {
    font-size: 34px;
    bottom: -6px;
    position: relative;
    left: -4px;
    font-family: 'Playfair Display', serif;
}

.about-story-section .story-brand-name {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-story-section .story-brand-line {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
}

.about-story-section .story-line-left,
.about-story-section .story-line-right {
    height: 1px;
    background-color: var(--secondary-color);
    flex-grow: 1;
    opacity: 0.35;
}

.about-story-section .story-diamond {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    transform: rotate(45deg);
    margin: 0 12px;
    opacity: 0.7;
    flex-shrink: 0;
}

.about-story-section .story-design-heading {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.3;
    margin-top: 0px;
    margin-bottom: 0px;
    letter-spacing: -0.5px;
}

.about-story-section .story-narrative {
    margin-top: 24px;
    margin-bottom: 0px;
    text-align: left;
}

.about-story-section .story-lead {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    color: var(--secondary-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.about-story-section .story-narrative p:not(.story-lead) {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-on-surface-variant);
    line-height: 1.85;
    margin-bottom: 16px;
    opacity: 0.9;
    letter-spacing: 0.01em;
}

.about-story-section .story-narrative p:last-child {
    margin-bottom: 0;
}

.about-story-section .story-mid-divider {
    margin-top: 28px;
    margin-bottom: 28px;
    width: 180px;
}

.about-story-section .story-elements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    max-width: 320px;
    margin: 0 0 28px 0;
}

.about-story-section .story-element-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-story-section .story-element-icon-wrap {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 44px;
    width: 44px;
    transition: transform 0.3s ease;
}

.about-story-section .story-element-col:hover .story-element-icon-wrap {
    transform: translateY(-4px);
}

.about-story-section .story-element-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-on-surface-variant);
    text-transform: uppercase;
}

.about-story-section .story-taglines {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-story-section .story-tagline-item {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-style: italic;
    color: var(--secondary-dark);
    line-height: 1.5;
    margin-bottom: 4px;
}

.about-story-section .story-tagline-item:last-child {
    margin-bottom: 0;
}

.about-story-section .story-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 580px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.about-story-section .story-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-story-section .story-image-container:hover img {
    transform: scale(1.02);
}

@media (max-width: 1199.98px) {
    .about-story-section {
        padding: 80px 0;
    }

    .about-story-section .story-image-container {
        height: 520px;
    }

}

@media (max-width: 991.98px) {
    .about-story-section {
        padding: 60px 0;
    }

    .about-story-design-content {
        max-width: 100%;
        align-items: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .about-story-section .story-brand-header {
        align-items: center;
    }

    .about-story-section .story-diamond {
        margin: 0 8px;
    }

    .about-story-section .story-narrative {
        text-align: center;
    }

    .about-story-section .story-elements-grid {
        margin: 0 auto 24px;
    }

    .about-story-section .story-element-col {
        align-items: center;
    }

    .about-story-section .story-element-icon-wrap {
        justify-content: center;
    }

    .about-story-section .story-taglines {
        align-items: center;
    }

    .about-story-section .story-image-container {
        height: 480px;
    }

}

@media (max-width: 575.98px) {
    .about-story-section {
        padding: 48px 0;
    }

    .about-story-section .story-design-heading {
        font-size: 32px;
    }

    .about-story-section .story-monogram {
        font-size: 44px;
    }

    .about-story-section .story-monogram sub {
        font-size: 28px;
    }

    .about-story-section .story-elements-grid {
        max-width: 280px;
        margin-bottom: 24px;
    }

    .about-story-section .story-element-icon-wrap {
        font-size: 24px;
    }

    .about-story-section .story-tagline-item {
        font-size: 14px;
    }

    .about-story-section .story-image-container {
        height: 380px;
    }

}

/* --- Mission & Vision Section --- */
.about-mission-section {
    background-color: var(--bg-container-low);
}

.about-mission-section .mission-card {
    padding: 48px 40px;
    border: 1px solid var(--outline-variant);
    background-color: var(--bg-surface);
    height: 100%;
    transition: var(--transition-premium);
    position: relative;
    overflow: hidden;
}

.about-mission-section .mission-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-mission-section .mission-card:hover::before {
    transform: scaleX(1);
}

.about-mission-section .mission-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.about-mission-section .mission-card .mission-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(198, 164, 108, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.about-mission-section .mission-card .mission-icon i {
    font-size: 24px;
    color: var(--secondary-dark);
}

.about-mission-section .mission-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.about-mission-section .mission-card p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-on-surface-variant);
    line-height: 1.8;
    margin-bottom: 0;
}

/* --- Journey / Timeline Section --- */
.about-journey-section {
    background-color: var(--bg-surface);
    padding: 50px 0;
    overflow: hidden;
}

.about-journey-section .journey-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    padding: 0 15px;
}

.about-journey-section .journey-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.about-journey-section .journey-heading {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.25;
}

.about-journey-section .journey-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-on-surface-variant);
    line-height: 1.8;
    margin-bottom: 0px;
}

/* Split Column Layout spacing */
.journey-split-row {
    align-items: flex-start;
}

/* Right Column: Timeline Tree Container */
.journey-timeline-col {
    position: relative;
}

.timeline-list-container {
    position: relative;
    padding-left: 0px;
    margin-top: 0;
}

/* Continuous Gold Vertical Connector Line */
.timeline-progress-line {
    position: absolute;
    left: 120px;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background-color: var(--secondary-color);
    opacity: 0.25;
}

/* Timeline Item Layout */
.timeline-item {
    display: grid;
    grid-template-columns: 100px 40px 80px 1fr;
    align-items: flex-start;
    gap: 0px;
    position: relative;
    padding: 0 0 30px;
    transition: transform 0.3s ease;
}

.timeline-item-year {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--secondary-color);
    text-align: right;
    padding-right: 15px;
    line-height: 1.1;
    padding-top: 14px;
}

.timeline-item-node {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 64px;
    position: relative;
    z-index: 2;
}

.node-dot {
    width: 7px;
    height: 7px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 0 4px var(--bg-surface);
}

.timeline-item-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 64px;
}

.badge-circle {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(198, 164, 108, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-surface);
    color: var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Beautiful custom line-art vector SVGs styling */
.badge-circle .badge-svg {
    width: 32px;
    height: 32px;
    color: var(--secondary-color);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Fix browser default black filling for vector path line-art */
.badge-circle .badge-svg path,
.badge-circle .badge-svg circle,
.badge-circle .badge-svg line,
.badge-circle .badge-svg polyline,
.badge-circle .badge-svg polygon {
    fill: none !important;
}

.badge-circle .badge-svg [fill="currentColor"] {
    fill: currentColor !important;
}

/* Timeline Content */
.timeline-item-content {
    padding-left: 20px;
    padding-top: 0;
}

.timeline-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.timeline-item-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-on-surface-variant);
    line-height: 1.75;
    margin-bottom: 12px;
    font-weight: 300;
}

.timeline-item-text:last-child {
    margin-bottom: 0px;
}

/* Hover effects */
.timeline-item:hover {
    transform: translateX(4px);
}

.timeline-item:hover .badge-circle {
    border-color: var(--secondary-color);
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(198, 164, 108, 0.2);
}

.timeline-item:hover .badge-svg {
    color: #ffffff;
    transform: scale(1.08);
}

/* ==========================================================================
   6. Highlighted FUTURE Timeline Card Styling
   ========================================================================== */
.timeline-item-highlight .highlight-year {
    color: var(--primary-color);
    font-weight: 600;
}

.timeline-item-highlight .active-dot {
    width: 9px;
    height: 9px;
    background-color: var(--primary-color);
    box-shadow: 0 0 0 6px var(--bg-surface);
}

.timeline-item-highlight .wildlife-badge {
    width: 56px;
    height: 56px;
    border: none;
    background: transparent;
    color: var(--primary-color);
}

.timeline-item-highlight .wildlife-badge svg {
    width: 100%;
    height: 100%;
}

/* Beautiful absolute highlight backdrop card */
.highlight-content-card {
    position: relative;
    padding: 36px 36px;
    background-color: rgba(19, 34, 25, 0.04);
    border: 1px solid rgba(19, 34, 25, 0.06);
    border-radius: 12px;
    margin-left: 20px;
    transition: all 0.4s ease;
}

.timeline-item-highlight:hover {
    transform: translateY(-2px);
}

.timeline-item-highlight:hover .highlight-content-card {
    background-color: rgba(19, 34, 25, 0.06);
    border-color: rgba(198, 164, 108, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.02);
}

/* Inner card split: Text block and Brand Logo */
.vanya-content-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.vanya-text-block {
    flex: 1;
}

.vanya-title {
    color: var(--primary-color);
}

.vanya-text {
    font-size: 13.5px;
    line-height: 1.7;
}

/* Premium Vanya Logo styling on the right side */
.vanya-brand-logo-container {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vanya-logo-badge {
    background-color: #132219;
    padding: 20px 15px;
    border-radius: 8px;
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(198, 164, 108, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.vanya-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: screen;
    /* Renders black backdrop completely transparent */
}

/* ==========================================================================
   7. Timeline Media Queries (Responsive Breakpoints)
   ========================================================================== */

@media (max-width: 1199.98px) {
    .about-journey-section {
        padding: 80px 0;
    }

    .highlight-content-card {
        padding: 28px;
    }

    .vanya-content-wrapper {
        gap: 20px;
    }

    .vanya-logo-badge {
        width: 95px;
        height: 95px;
    }

}

@media (max-width: 991.98px) {
    .about-journey-section {
        padding: 60px 0;
    }

    .about-journey-section .journey-section-header {
        margin-bottom: 40px;
    }

    .about-journey-section .timeline-progress-line {
        left: 90px;
    }

    .about-journey-section .timeline-item {
        grid-template-columns: 75px 30px 70px 1fr;
    }

    .about-journey-section .timeline-item-year {
        font-size: 26px;
        padding-right: 10px;
        padding-top: 10px;
    }

    .about-journey-section .badge-circle {
        width: 56px;
        height: 56px;
    }

    .about-journey-section .badge-circle .badge-svg {
        width: 28px;
        height: 28px;
    }

    .about-journey-section .timeline-item-node,
    .about-journey-section .timeline-item-badge {
        height: 56px;
    }

    .about-journey-section .timeline-item-content {
        padding-top: 0;
    }

}

@media (max-width: 767.98px) {
    .vanya-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .vanya-brand-logo-container {
        align-self: center;
        width: 100%;
    }

    .vanya-logo-badge {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

}

@media (max-width: 575.98px) {
    .about-journey-section {
        padding: 48px 0;
    }

    .about-journey-section .journey-heading {
        font-size: 30px;
    }

    /* Compact Timeline grid on mobile */
    .about-journey-section .timeline-progress-line {
        left: 15px;
        top: 30px;
        bottom: 30px;
    }

    .about-journey-section .timeline-item {
        display: flex;
        flex-direction: column;
        padding: 0 0 36px;
        padding-left: 36px;
    }

    .about-journey-section .timeline-item-year {
        text-align: left;
        font-size: 24px;
        padding-right: 0;
        padding-top: 0;
        margin-bottom: 8px;
    }

    /* Hide grid nodes and badges, or style them inline */
    .about-journey-section .timeline-item-node {
        position: absolute;
        left: 11px;
        top: 34px;
        height: auto;
    }

    .about-journey-section .node-dot {
        width: 9px;
        height: 9px;
        box-shadow: 0 0 0 4px var(--bg-surface);
    }

    .about-journey-section .timeline-item-badge {
        display: none;
    }

    .about-journey-section .timeline-item-content {
        padding-left: 0px;
        padding-top: 0px;
    }

    .about-journey-section .highlight-content-card {
        margin-left: 0px;
        padding: 20px;
    }

    .about-journey-section .timeline-item-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

}

/* --- Values Grid --- */
.about-values-section {
    background-color: var(--primary-color);
    color: #ffffff;
}

.about-values-section .values-header {
    text-align: center;
    margin-bottom: 30px;
}

.about-values-section .values-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 12px;
    display: block;
}

.about-values-section .values-heading {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
}

.about-values-section .values-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Flex Grid Spacing */
.about-values-section .values-grid-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    row-gap: 30px;
}

.about-values-section .values-grid-row>[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

/* Premium Value Card */
.values-flex-card {
    display: flex;
    flex-direction: row;
    background-color: #FAF8F5;
    border: 1px solid rgba(198, 164, 108, 0.15);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
    transition: var(--transition-premium);
}

.values-flex-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

/* Left Image Column */
.values-card-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.values-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.values-flex-card:hover .values-card-image img {
    transform: scale(1.05);
}

/* Right Content Column */
.values-card-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Gold Value Icon */
.values-card-icon {
    margin-bottom: 24px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.values-card-icon .badge-circle {
    background-color: transparent;
    border-color: rgba(198, 164, 108, 0.35);
}

.values-flex-card:hover .values-card-icon .badge-circle {
    border-color: var(--secondary-color);
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(198, 164, 108, 0.25);
}

.values-flex-card:hover .values-card-icon .badge-circle .badge-svg {
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

/* Value Card Title */
.values-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

/* Value Card Text */
.values-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-on-surface-variant);
    line-height: 1.75;
    margin-bottom: 0;
    font-weight: 300;
}

/* Craftsmanship Subtext */
.values-card-subtext {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.subtext-line {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 400;
}

/* Preserve old value-card classes for safety and legacy reference */
.about-values-section .value-card {
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    height: 100%;
    transition: var(--transition-premium);
    text-align: center;
}

.about-values-section .value-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(198, 164, 108, 0.3);
    transform: translateY(-6px);
}

.about-values-section .value-card i {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
}

.about-values-section .value-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
}

.about-values-section .value-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 0;
}

/* Responsive Overrides for new values grid layout */

@media (max-width: 1199.98px) {
    .values-card-content {
        padding: 30px;
    }

    .values-card-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

}

@media (max-width: 991.98px) {
    .values-flex-card {
        flex-direction: column;
        min-height: auto;
    }

    .values-card-image {
        flex: 0 0 auto;
        width: 100%;
        height: 280px;
    }

    .values-card-content {
        padding: 40px 24px;
    }

}

@media (max-width: 575.98px) {
    .about-values-section .values-heading {
        font-size: 32px;
    }

    .values-card-image {
        height: 220px;
    }

    .values-card-content {
        padding: 30px 20px;
    }

    .values-card-title {
        font-size: 20px;
    }

}

/* --- Craftsmanship Section --- */
.about-craft-section {
    background-color: var(--bg-container-low);
}

.about-craft-section .craft-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.about-craft-section .craft-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-craft-section .craft-image-container:hover img {
    transform: scale(1.03);
}

.about-craft-section .craft-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary-dark);
    display: block;
    margin-bottom: 12px;
}

.about-craft-section .craft-brand-logo {
    margin-bottom: 24px;
    text-align: left;
}

.about-craft-section .craft-brand-logo .footer-logo-wrapper {
    margin-left: 0;
    align-items: flex-start;
}

.about-craft-section .craft-brand-logo .footer-logo-monogram {
    color: var(--secondary-color);
    font-size: 28px;
    font-family: 'Playfair Display', serif;
}

.about-craft-section .craft-brand-logo .footer-logo-text {
    color: var(--secondary-color);
    font-size: 10px;
    letter-spacing: 0.3em;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
}

.about-craft-section .craft-mini-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    width: 120px;
}

.about-craft-section .craft-mini-divider .divider-line {
    flex: 1;
    height: 1px;
    background-color: var(--secondary-color);
    opacity: 0.45;
}

.about-craft-section .craft-mini-divider .divider-diamond {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    transform: rotate(45deg);
    opacity: 0.85;
    font-size: 0;
    color: transparent;
}

.about-craft-section .craft-heading {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.25;
    margin-bottom: 24px;
}

.about-craft-section .craft-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-on-surface-variant);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-craft-section .lead-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-craft-section .craft-elements-row {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 36px;
}

.about-craft-section .craft-element-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 64px;
    cursor: pointer;
}

.about-craft-section .craft-element-item .element-icon-circle {
    width: 48px;
    height: 48px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-premium);
}

.about-craft-section .craft-element-item .element-icon-circle i {
    font-size: 20px;
    color: var(--secondary-color);
}

.about-craft-section .craft-element-item:hover .element-icon-circle {
    background-color: var(--secondary-color);
    transform: translateY(-4px);
}

.about-craft-section .craft-element-item:hover .element-icon-circle i {
    color: var(--bg-surface);
}

.about-craft-section .craft-element-item .element-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-on-surface-variant);
}

/* --- CTA / Quote Banner --- */
.about-quote-section {
    background-color: var(--bg-container-low);
    text-align: center;
}

.about-quote-section .quote-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 32px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 32px;
}

.about-quote-section .quote-attribution {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary-dark);
}

/* --- About Page Responsive --- */

@media (max-width: 991.98px) {
    .about-hero {
        min-height: 65vh;
    }

    .about-hero .about-hero-content h1 {
        font-size: 48px;
    }

    .about-mission-section .mission-card {
        padding: 36px 28px;
    }

    .about-craft-section .craft-image-container img {
        height: 380px;
    }

}

@media (max-width: 767.98px) {
    .about-hero {
        min-height: 55vh;
    }

    .about-hero .about-hero-content h1 {
        font-size: 35.2px;
    }

    .about-hero .about-hero-content .hero-tagline {
        font-size: 17.6px;
    }

    .about-story-section .story-heading {
        font-size: 28.8px;
    }

    .about-mission-section .mission-card {
        padding: 28px 20px;
    }

    .about-journey-section .timeline-item {
        flex-direction: column;
        gap: 12px;
    }

    .about-journey-section .timeline-year {
        font-size: 25.6px;
    }

    .about-values-section .values-heading,
    .about-journey-section .journey-heading {
        font-size: 28.8px;
    }

    .about-craft-section .craft-image-container img {
        height: 280px;
    }

    .about-craft-section .craft-heading {
        font-size: 27.2px;
    }

    .about-quote-section .quote-text {
        font-size: 22.4px;
    }

}

/* ==========================================================================
   8. House of Tesouro - Ultra-Luxury Animation & Transition Overhaul System
   ========================================================================== */
/* 1. Global Transitions, Keyframes & Variables */
:root {
    --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-elastic: cubic-bezier(0.25, 1.25, 0.5, 1);
    --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}



@keyframes floatElement {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }

}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(198, 164, 108, 0.15);
    }

    50% {
        box-shadow: 0 0 15px 4px rgba(198, 164, 108, 0.35);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(198, 164, 108, 0.15);
    }

}

@keyframes lineLoad {
    0% {
        width: 0;
        opacity: 0;
    }

    30% {
        width: 30%;
        opacity: 1;
    }

    80% {
        width: 80%;
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 0;
    }

}

/* 2. Brand Luxury Preloader Screen */
.luxury-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-surface);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1.2s var(--ease-luxury), opacity 1s var(--ease-luxury);
    transform-origin: top;
    pointer-events: auto;
}

.luxury-preloader.loaded {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.preloader-content {
    max-width: 320px;
    width: 100%;
    opacity: 1;
    transition: opacity 0.6s var(--ease-luxury);
}

.luxury-preloader.loaded .preloader-content {
    opacity: 0;
}

.preloader-logo-wrap {
    width: 120px;
    margin: 0 auto;
    position: relative;
}

.preloader-logo-img {
    width: 100%;
    height: auto;
    opacity: 0;
    transform: translateY(10px);
    animation: revealLogo 1.5s var(--ease-luxury) forwards;
}

@keyframes revealLogo {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.preloader-subtitle {
    display: block;
    color: var(--primary-color);
    letter-spacing: 0.35em;
    font-size: 11px;
    font-weight: 500;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(10px);
    animation: revealText 1.2s 0.8s var(--ease-luxury) forwards;
}

.preloader-line {
    width: 0;
    height: 1.5px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
    animation: lineLoad 2.4s cubic-bezier(0.65, 0.05, 0.36, 1) forwards;
}

@keyframes revealText {
    to {
        opacity: 0.8;
        transform: translateY(0);
    }

}

/* 3. Staggered Scroll Reveal System */
.reveal-fade-up,
.reveal-fade-down,
.reveal-fade-in,
.reveal-scale-in,
.reveal-slide-left,
.reveal-slide-right {
    opacity: 0;
    filter: blur(8px);
    transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1), transform 1.8s cubic-bezier(0.16, 1, 0.3, 1), filter 1.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
}

.reveal-fade-up {
    transform: translateY(60px);
}

.reveal-fade-down {
    transform: translateY(-60px);
}

.reveal-scale-in {
    transform: scale(0.95) translateY(30px);
}

.reveal-slide-left {
    transform: translateX(60px);
}

.reveal-slide-right {
    transform: translateX(-60px);
}

/* Active animation state (triggered by Intersection Observer) */
.reveal-fade-up.active,
.reveal-fade-down.active,
.reveal-scale-in.active,
.reveal-slide-left.active,
.reveal-slide-right.active,
.reveal-fade-in.active {
    opacity: 1;
    filter: blur(0);
    transform: translate(0) scale(1);
}

/* Deluxe Staggered delays for child components */
.reveal-delay-100 {
    transition-delay: 100ms !important;
}

.reveal-delay-200 {
    transition-delay: 200ms !important;
}

.reveal-delay-300 {
    transition-delay: 300ms !important;
}

.reveal-delay-400 {
    transition-delay: 400ms !important;
}

.reveal-delay-500 {
    transition-delay: 500ms !important;
}

.reveal-delay-600 {
    transition-delay: 600ms !important;
}

.reveal-delay-700 {
    transition-delay: 700ms !important;
}

.reveal-delay-800 {
    transition-delay: 800ms !important;
}

.logo-img {
    height: 58px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-premium);
}

/* 4. Luxury Brand Micro-interactions & Hovers */
/* Elegant Navigation Menu hover outlines */
.luxury-navbar .nav-link {
    position: relative;
    transition: color 0.4s var(--ease-luxury) !important;
}

.luxury-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-luxury);
}

.luxury-navbar .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Magnetic Button Visual Wrapper */
.btn-luxury,
.btn-luxury-outline {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.4s var(--ease-elastic), color 0.4s var(--ease-luxury), border-color 0.4s var(--ease-luxury);
}

.btn-luxury::before,
.btn-luxury-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130%;
    height: 130%;
    background-color: var(--secondary-color);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.8s var(--ease-luxury);
}

.btn-luxury-outline::before {
    background-color: var(--primary-color);
}

.btn-luxury:hover::before,
.btn-luxury-outline:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
}

.btn-luxury:hover {
    color: #ffffff !important;
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 10px 25px rgba(25, 51, 38, 0.15);
}

.btn-luxury-outline:hover {
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 10px 25px rgba(117, 90, 41, 0.1);
}

/* Floating animation on luxury line details */
.luxury-line {
    position: relative;
    overflow: hidden;
    height: 1px;
    background-color: rgba(198, 164, 108, 0.2);
}

.luxury-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    transition: transform 1.2s var(--ease-luxury);
}

.reveal-item.active .luxury-line::after,
.reveal-fade-up.active .luxury-line::after {
    transform: translateX(300%);
    transition: transform 2.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

/* Grid Zoom Card enhancements with glow */
.element-grid-card {
    position: relative;
    border-radius: 1px;
    transition: box-shadow 0.6s var(--ease-luxury), transform 0.6s var(--ease-luxury) !important;
}

.element-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(25, 51, 38, 0.18);
    animation: glowPulse 3s infinite 0.6s;
}

/* Image frame offset interactive floating */
.element-image-wrapper:hover .offset-border.offset-left {
    transform: translate(-20px, 20px);
    border-color: var(--secondary-color);
    transition: transform 0.8s var(--ease-luxury), border-color 0.8s var(--ease-luxury);
}

.element-image-wrapper:hover .offset-border.offset-right {
    transform: translate(20px, -20px);
    border-color: var(--secondary-color);
    transition: transform 0.8s var(--ease-luxury), border-color 0.8s var(--ease-luxury);
}

.element-image-wrapper .offset-border {
    transition: transform 0.8s var(--ease-luxury), border-color 0.8s var(--ease-luxury);
}

/* Parallax zoom transitions */
.hero-section {
    perspective: 1000px;
    overflow: hidden;
}

.hero-section img {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) !important;
    will-change: transform;
}

/* 5. Concierge & Shopping Bag dynamic transitions */
.luxury-offcanvas {
    transition: transform 0.8s var(--ease-luxury) !important;
}

.search-overlay {
    transition: opacity 0.8s var(--ease-luxury) !important;
}

.search-container {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: transform 0.8s var(--ease-luxury), opacity 0.8s var(--ease-luxury);
}

.search-overlay.active .search-container {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.15s;
}

/* 6. Accessibility & Reduced Motion settings */

@media (prefers-reduced-motion: reduce) {

    .luxury-preloader,
    .preloader-content,
    .reveal-fade-up,
    .reveal-fade-down,
    .reveal-scale-in,
    .reveal-slide-left,
    .reveal-slide-right,
    .reveal-fade-in,
    .btn-luxury,
    .btn-luxury-outline,
    .element-grid-card,
    .element-image-wrapper img {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .luxury-preloader {
        display: none !important;
    }

}

/* ==========================================================================
   9. Tablet & Mobile App-Like Styling Overrides
   ========================================================================== */
/* Escaped selectors for left-sliding drawer border */
.luxury-offcanvas.offcanvas-start {
    border-right: 1px solid var(--outline-variant) !important;
    border-left: none !important;
}

/* Hide Bootstrap default collapse scrollbars on mobile */

@media (max-width: 1199.98px) {

    /* ==========================================================================
       12a. Consolidated Luxury Navbar (Glassmorphism, Spacing & Elevations)
       ========================================================================== */
    .luxury-navbar {
        height: 60px !important;
        padding: 12px 16px !important;
        background: rgba(253, 249, 241, 0.85) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(114, 121, 115, 0.12) !important;
        display: flex !important;
        align-items: center !important;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02) !important;
    }

    /* Force hide the desktop collapsible menu links on mobile to prevent overlapping */
    .luxury-navbar .navbar-collapse {
        display: none !important;
    }

    .luxury-navbar .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    /* Brand logo on the left side */
    .luxury-navbar .navbar-brand {
        position: static !important;
        transform: none !important;
        order: 1;
        margin: 0 !important;
        margin-right: auto !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    .logo-img {
        height: 32px !important;
        width: auto !important;
    }

    /* Group action icons and menu icon on the right side */
    .luxury-navbar .header-actions {
        order: 2;
        display: flex;
        gap: 12px;
        align-items: center;
        margin-right: 15px;
    }

    .luxury-navbar .navbar-toggler {
        order: 3;
        display: block !important;
    }

    .header-action-btn i {
        font-size: 22px !important;
        color: var(--primary-color) !important;
    }

    /* ==========================================================================
       12b. Mobile Menu Drawer Spacing Refinements (Tightened Spacing)
       ========================================================================== */
    #mobileMenuDrawer .offcanvas-header {
        padding-top: 24px !important;
        padding-bottom: 0px !important;
    }

    #mobileMenuDrawer .offcanvas-body {
        padding-top: 8px;
    }

    #mobileMenuDrawer .offcanvas-title {
        margin-bottom: 0;
    }

    #mobileMenuDrawer .offcanvas-body ul {
        margin-top: 0;
        margin-bottom: 0;
    }

    /* Elegant Sidebar Menu item adjustments */
    #mobileMenuDrawer .offcanvas-body a {
        transition: var(--transition-micro);
    }

    #mobileMenuDrawer .offcanvas-body a:hover {
        color: var(--secondary-dark) !important;
        padding-left: 6px;
    }

}

/* Mobile App-like Bottom Navigation bar & adjustments */
.mobile-app-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(253, 249, 241, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(114, 121, 115, 0.16);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1030;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.03);
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: 54px !important;
    }

    .back-to-top {
        bottom: 84px !important;
    }

    /* Touch-friendly margins */
    .floating-form-group {
        margin-bottom: 30px !important;
    }

}

/* ==========================================================================
   10. Comprehensive Responsive System - All 10 Breakpoints
   ========================================================================== */
/* --- 1680.98px --- */

@media (max-width: 1680.98px) {
    .display-3 {
        font-size: 51.2px !important;
    }

    .display-4 {
        font-size: 41.6px !important;
    }

    .display-5 {
        font-size: 36.8px !important;
    }

    .display-6 {
        font-size: 32px !important;
    }

    .about-hero .about-hero-content h1 {
        font-size: 60.8px;
    }

    .about-craft-section .craft-image-container img {
        height: 470px;
    }

    .element-image-wrapper .image-frame img {
        height: 490px;
    }

}

/* --- 1440.98px --- */

@media (max-width: 1440.98px) {
    .display-3 {
        font-size: 48px !important;
    }

    .display-4 {
        font-size: 38.4px !important;
    }

    .display-5 {
        font-size: 33.6px !important;
    }

    .display-6 {
        font-size: 30.4px !important;
    }

    .btn-luxury,
    .btn-luxury-outline,
    .btn-luxury-gold {
        padding: 15px 32px;
    }

    .hero-content {
        max-width: 650px;
    }

    .about-hero .about-hero-content h1 {
        font-size: 56px;
    }

    .about-craft-section .craft-image-container img {
        height: 440px;
    }

    .element-image-wrapper .image-frame img {
        height: 460px;
    }

    .journal-card-title {
        font-size: 20px;
    }

}

/* --- 1399.98px --- */

@media (max-width: 1399.98px) {
    .display-3 {
        font-size: 45.6px !important;
    }

    .display-4 {
        font-size: 36.8px !important;
    }

    .display-5 {
        font-size: 32px !important;
    }

    .display-6 {
        font-size: 29.6px !important;
    }

    .hero-content {
        max-width: 600px;
    }

    .about-hero .about-hero-content h1 {
        font-size: 52.8px;
    }

    .about-story-section .story-heading {
        font-size: 36.8px;
    }

    .about-craft-section .craft-image-container img {
        height: 420px;
    }

    .about-craft-section .craft-heading {
        font-size: 32px;
    }

    .element-image-wrapper .image-frame img {
        height: 440px;
    }

    .element-section-title {
        font-size: 43.2px;
    }

}

/* --- 1280.98px --- */

@media (max-width: 1280.98px) {
    .display-3 {
        font-size: 43.2px !important;
    }

    .display-4 {
        font-size: 34.4px !important;
    }

    .display-5 {
        font-size: 30.4px !important;
    }

    .display-6 {
        font-size: 28px !important;
    }

    .btn-luxury,
    .btn-luxury-outline,
    .btn-luxury-gold {
        padding: 14px 30px;
        font-size: 12.5px;
    }

    .hero-content {
        max-width: 560px;
    }

    .about-hero .about-hero-content h1 {
        font-size: 49.6px;
    }

    .about-craft-section .craft-image-container img {
        height: 400px;
    }

    .element-image-wrapper .image-frame img {
        height: 420px;
    }

    .element-section-title {
        font-size: 40px;
    }

    .journal-card-title {
        font-size: 19px;
    }

    .sustainability-section .sustainability-images img {
        height: 230px;
    }

}

/* --- 1199.98px --- */

@media (max-width: 1199.98px) {
    .display-3 {
        font-size: 40px !important;
    }

    .display-4 {
        font-size: 32px !important;
    }

    .display-5 {
        font-size: 28.8px !important;
    }

    .display-6 {
        font-size: 27.2px !important;
    }

    .hero-content {
        max-width: 90%;
    }

    /* Sticky bars must align with mobile header height */
    .collections-sticky-bar,
    .elements-sticky-nav,
    .journal-sticky-bar {
        top: 60px;
    }

    .about-hero {
        min-height: 70vh;
    }

    .about-hero .about-hero-content h1 {
        font-size: 44.8px;
    }

    .about-hero .about-hero-content .hero-tagline {
        font-size: 19.2px;
    }

    .about-story-section .story-heading {
        font-size: 33.6px;
    }

    .about-craft-section .craft-image-container img {
        height: 380px;
    }

    .about-craft-section .craft-heading {
        font-size: 30.4px;
    }

    .about-craft-section .craft-stat .stat-number {
        font-size: 38.4px;
    }

    .about-values-section .values-heading,
    .about-journey-section .journey-heading {
        font-size: 33.6px;
    }

    .about-quote-section .quote-text {
        font-size: 27.2px;
    }

    .element-hero-header {
        min-height: 65vh;
    }

    .element-image-wrapper .image-frame img {
        height: 400px;
    }

    .element-section-title {
        font-size: 36.8px;
    }

    .element-description {
        font-size: 16px;
    }

    .sustainability-section .sustainability-images img {
        height: 210px;
    }

    .script-card-text {
        font-size: 18px;
    }

}

/* --- 991.98px --- */

@media (max-width: 991.98px) {
    .display-3 {
        font-size: 37.6px !important;
        line-height: 1.2 !important;
    }

    .display-4 {
        font-size: 30.4px !important;
    }

    .display-5 {
        font-size: 27.2px !important;
    }

    .display-6 {
        font-size: 25.6px !important;
    }

    .btn-luxury,
    .btn-luxury-outline,
    .btn-luxury-gold {
        padding: 14px 28px;
        font-size: 12px;
    }

    .hero-content {
        max-width: 90%;
    }

    .hero-gradient {
        background: linear-gradient(to right, var(--bg-surface) 50%, rgba(253, 249, 241, 0.5) 80%, transparent 100%);
    }

    .about-hero {
        min-height: 60vh;
    }

    .about-hero .about-hero-content h1 {
        font-size: 41.6px;
    }

    .about-story-section .story-heading {
        font-size: 32px;
    }

    .about-craft-section .craft-image-container img {
        height: 350px;
    }

    .about-craft-section .craft-heading {
        font-size: 28.8px;
    }

    .about-craft-section .craft-stat .stat-number {
        font-size: 35.2px;
    }

    .about-values-section .values-heading,
    .about-journey-section .journey-heading {
        font-size: 30.4px;
    }

    .about-values-section .values-subtitle,
    .about-journey-section .journey-subtitle {
        margin-bottom: 40px;
    }

    .about-values-section .value-card {
        padding: 32px 24px;
    }

    .about-quote-section .quote-text {
        font-size: 24.8px;
    }

    .element-hero-header {
        min-height: 55vh;
    }

    .element-image-wrapper .image-frame img {
        height: 360px;
    }

    .element-section-title {
        font-size: 33.6px;
    }

    .element-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .sustainability-section .sustainability-images img {
        height: 190px;
    }

    .script-card-mockup {
        padding: 30px;
        min-height: 200px;
    }

    .script-card-text {
        font-size: 17px;
    }

    .journal-card-title {
        font-size: 18px;
    }

    .search-input {
        font-size: 32px;
    }

    /* Footer adjustments */
    footer .row.gx-5 {
        --bs-gutter-x: 32px;
    }

}

/* --- 767.98px --- */

@media (max-width: 767.98px) {
    .display-3 {
        font-size: 33.6px !important;
        line-height: 1.25 !important;
    }

    .display-4 {
        font-size: 28px !important;
    }

    .display-5 {
        font-size: 24.8px !important;
    }

    .display-6 {
        font-size: 23.2px !important;
    }

    .btn-luxury,
    .btn-luxury-outline,
    .btn-luxury-gold {
        padding: 12px 24px;
        font-size: 12px;
        letter-spacing: 0.15em;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content .d-flex {
        justify-content: center;
    }

    .element-card-overlay {
        padding: 24px 16px;
    }

    .element-card-desc {
        font-size: 13px;
    }

    .about-hero {
        min-height: 50vh;
    }

    .about-hero .about-hero-content .hero-tagline {
        font-size: 16.8px;
    }

    .about-values-section .values-heading,
    .about-journey-section .journey-heading {
        font-size: 27.2px;
    }

    .about-values-section .value-card {
        padding: 28px 20px;
    }

    .about-craft-section .craft-image-container img {
        height: 260px;
    }

    .about-craft-section .craft-heading {
        font-size: 26.4px;
    }

    .about-craft-section .craft-stat .stat-number {
        font-size: 32px;
    }

    .about-quote-section .quote-text {
        font-size: 21.6px;
    }

    .element-hero-header {
        min-height: 45vh;
    }

    .element-image-wrapper .image-frame img {
        height: 300px;
    }

    .element-section-title {
        font-size: 29.6px;
    }

    .element-description {
        font-size: 14.5px;
        margin-bottom: 25px;
    }

    .element-image-wrapper .offset-border {
        display: none;
    }

    .sustainability-section .sustainability-images img {
        height: 170px;
    }

    .sustainability-section .sustainability-quote {
        font-size: 17.6px;
    }

    .script-card-mockup {
        padding: 24px;
        min-height: 180px;
    }

    .script-card-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .script-card-wax-seal {
        width: 38px;
        height: 38px;
        font-size: 11px;
        top: 20px;
        right: 20px;
    }

    .journal-card-title {
        font-size: 17px;
    }

    .search-input {
        font-size: 28px;
    }

    .search-close {
        top: 24px;
        right: 24px;
        font-size: 28px;
    }

    /* Product page adjustments */
    .product-thumbnail {
        flex: 0 0 60px;
    }

    .tier-btn {
        padding: 12px 16px;
        font-size: 12px;
    }

    .personalize-card {
        padding: 16px;
    }

    /* Footer adjustments */
    footer .col-lg-5 {
        margin-bottom: 24px;
    }

}

/* --- 575.98px --- */

@media (max-width: 575.98px) {
    .display-3 {
        font-size: 29.6px !important;
        line-height: 1.2 !important;
    }

    .display-4 {
        font-size: 24.8px !important;
    }

    .display-5 {
        font-size: 22.4px !important;
    }

    .display-6 {
        font-size: 20.8px !important;
    }

    .btn-luxury,
    .btn-luxury-outline,
    .btn-luxury-gold {
        padding: 11px 20px;
        font-size: 11px;
        letter-spacing: 0.15em;
    }

    .hero-section .hero-content .display-3 br {
        display: none;
    }

    .element-card-overlay {
        padding: 20px 12px;
    }

    .element-card-overlay h3 {
        font-size: 17.6px !important;
    }

    .element-card-desc {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .about-hero {
        min-height: 45vh;
    }

    .about-hero .about-hero-content h1 {
        font-size: 29.6px;
    }

    .about-hero .about-hero-content .hero-tagline {
        font-size: 15.2px;
    }

    .about-hero .about-hero-content .hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.2em;
    }

    .about-story-section .story-heading {
        font-size: 24.8px;
    }

    .about-story-section .story-text {
        font-size: 14.5px;
    }

    .about-mission-section .mission-card {
        padding: 24px 18px;
    }

    .about-mission-section .mission-card h3 {
        font-size: 20px;
    }

    .about-mission-section .mission-card p {
        font-size: 14px;
    }

    .about-journey-section .timeline-year {
        font-size: 22.4px;
    }

    .about-journey-section .timeline-content h4 {
        font-size: 14px;
    }

    .about-journey-section .timeline-content p {
        font-size: 14px;
    }

    .about-values-section .values-heading,
    .about-journey-section .journey-heading {
        font-size: 24px;
    }

    .about-values-section .value-card {
        padding: 24px 18px;
    }

    .about-values-section .value-card h4 {
        font-size: 17.6px;
    }

    .about-values-section .value-card p {
        font-size: 13px;
    }

    .about-craft-section .craft-image-container img {
        height: 220px;
    }

    .about-craft-section .craft-heading {
        font-size: 23.2px;
    }

    .about-craft-section .craft-text {
        font-size: 14.5px;
    }

    .about-craft-section .craft-stat .stat-number {
        font-size: 28.8px;
    }

    .about-quote-section .quote-text {
        font-size: 19.2px;
    }

    .element-hero-header {
        min-height: 40vh;
    }

    .element-hero-header .hero-content {
        padding: 30px 15px;
    }

    .element-image-wrapper .image-frame img {
        height: 250px;
    }

    .element-section-title {
        font-size: 25.6px;
    }

    .element-description {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 20px;
    }

    .element-nav-dot {
        padding: 5px 8px;
        font-size: 9px;
        gap: 3px;
        letter-spacing: 0.1em;
    }

    .element-nav-dot i {
        font-size: 13px;
    }

    .sustainability-section .sustainability-images img {
        height: 150px;
    }

    .sustainability-section .sustainability-quote {
        font-size: 16px;
        padding-left: 15px;
    }

    .sustainability-section .sustainability-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }

    .sustainability-section .sustainability-icon i {
        font-size: 25.6px;
    }

    .script-card-mockup {
        padding: 20px;
        min-height: 160px;
    }

    .script-card-text {
        font-size: 15px;
        line-height: 1.65;
    }

    .script-card-wax-seal {
        width: 34px;
        height: 34px;
        font-size: 10px;
        top: 16px;
        right: 16px;
    }

    .journal-card-title {
        font-size: 16px;
    }

    .journal-card-footer {
        font-size: 10px;
        padding-top: 12px;
        margin-top: 14px;
    }

    .search-input {
        font-size: 24px;
        padding: 8px 0;
    }

    .search-close {
        font-size: 24px;
        top: 20px;
        right: 20px;
    }

    /* Product detail page */
    .tier-btn {
        padding: 10px 14px;
        font-size: 11px;
    }

    .personalize-card {
        padding: 14px;
    }

    .inside-box-card {
        padding: 12px;
    }

    /* Footer */
    footer .d-flex.gap-4 {
        gap: 12px !important;
    }

}

/* --- 480.98px --- */

@media (max-width: 480.98px) {
    .display-3 {
        font-size: 27.2px !important;
    }

    .display-4 {
        font-size: 23.2px !important;
    }

    .display-5 {
        font-size: 20.8px !important;
    }

    .display-6 {
        font-size: 19.2px !important;
    }

    .btn-luxury,
    .btn-luxury-outline,
    .btn-luxury-gold {
        padding: 10px 18px;
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .element-card-overlay {
        padding: 16px 10px;
    }

    .element-card-overlay h3 {
        font-size: 16px !important;
    }

    .about-hero {
        min-height: 42vh;
    }

    .about-hero .about-hero-content h1 {
        font-size: 26.4px;
    }

    .about-hero .about-hero-content .hero-tagline {
        font-size: 14.4px;
    }

    .about-story-section .story-heading {
        font-size: 22.4px;
    }

    .about-story-section .story-text {
        font-size: 14px;
    }

    .about-craft-section .craft-image-container img {
        height: 200px;
    }

    .about-craft-section .craft-heading {
        font-size: 21.6px;
    }

    .about-craft-section .craft-stat .stat-number {
        font-size: 25.6px;
    }

    .about-values-section .values-heading,
    .about-journey-section .journey-heading {
        font-size: 21.6px;
    }

    .about-quote-section .quote-text {
        font-size: 17.6px;
    }

    .element-hero-header {
        min-height: 35vh;
    }

    .element-image-wrapper .image-frame img {
        height: 220px;
    }

    .element-section-title {
        font-size: 23.2px;
    }

    .sustainability-section .sustainability-images img {
        height: 130px;
    }

    .journal-card-title {
        font-size: 15px;
    }

    .search-input {
        font-size: 20px;
    }

    .materials-pill {
        font-size: 12px;
        padding: 8px 14px;
    }

    .floating-form-group {
        margin-bottom: 28px !important;
    }

    .floating-label {
        font-size: 11px;
    }

    .floating-input {
        font-size: 15px;
    }

    /* Mobile nav adjustments */
    .mobile-app-nav {
        height: 58px;
    }

    .mobile-nav-link {
        font-size: 8px;
    }

    .mobile-nav-link i {
        font-size: 18px;
    }

}

/* --- 360.98px --- */

@media (max-width: 360.98px) {
    .display-3 {
        font-size: 24px !important;
    }

    .display-4 {
        font-size: 20.8px !important;
    }

    .display-5 {
        font-size: 19.2px !important;
    }

    .display-6 {
        font-size: 17.6px !important;
    }

    .btn-luxury,
    .btn-luxury-outline,
    .btn-luxury-gold {
        padding: 9px 16px;
        font-size: 10px;
        letter-spacing: 0.1em;
    }

    .element-card-overlay {
        padding: 14px 8px;
    }

    .element-card-overlay h3 {
        font-size: 14.4px !important;
    }

    .element-card-desc {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .gold-underline,
    .element-card-overlay a {
        font-size: 10px !important;
    }

    .about-hero {
        min-height: 38vh;
    }

    .about-hero .about-hero-content h1 {
        font-size: 24px;
    }

    .about-hero .about-hero-content .hero-tagline {
        font-size: 13.6px;
    }

    .about-hero .about-hero-content .hero-eyebrow {
        font-size: 9px;
    }

    .about-story-section .story-heading {
        font-size: 20.8px;
    }

    .about-story-section .story-text {
        font-size: 13.5px;
    }

    .about-mission-section .mission-card {
        padding: 20px 15px;
    }

    .about-mission-section .mission-card h3 {
        font-size: 17.6px;
    }

    .about-mission-section .mission-card p {
        font-size: 13px;
    }

    .about-journey-section .timeline-year {
        font-size: 20.8px;
    }

    .about-journey-section .timeline-content h4 {
        font-size: 13px;
    }

    .about-journey-section .timeline-content p {
        font-size: 13px;
    }

    .about-values-section .values-heading,
    .about-journey-section .journey-heading {
        font-size: 20px;
    }

    .about-values-section .value-card {
        padding: 20px 14px;
    }

    .about-values-section .value-card h4 {
        font-size: 16px;
    }

    .about-values-section .value-card p {
        font-size: 12px;
    }

    .about-craft-section .craft-image-container img {
        height: 180px;
    }

    .about-craft-section .craft-heading {
        font-size: 20px;
    }

    .about-craft-section .craft-text {
        font-size: 13.5px;
    }

    .about-craft-section .craft-stat .stat-number {
        font-size: 24px;
    }

    .about-craft-section .craft-stat .stat-label {
        font-size: 10px;
    }

    .about-quote-section .quote-text {
        font-size: 16px;
    }

    .element-hero-header {
        min-height: 32vh;
    }

    .element-hero-header .hero-content {
        padding: 20px 10px;
    }

    .element-image-wrapper .image-frame img {
        height: 200px;
    }

    .element-section-title {
        font-size: 20.8px;
    }

    .element-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .element-nav-dot {
        padding: 4px 6px;
        font-size: 8px;
        gap: 2px;
    }

    .element-nav-dot i {
        font-size: 12px;
    }

    .sustainability-section .sustainability-images img {
        height: 120px;
    }

    .sustainability-section .sustainability-quote {
        font-size: 14.4px;
    }

    .sustainability-section .sustainability-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .sustainability-section .sustainability-icon i {
        font-size: 22.4px;
    }

    .script-card-mockup {
        padding: 16px;
        min-height: 140px;
    }

    .script-card-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .script-card-wax-seal {
        width: 30px;
        height: 30px;
        font-size: 9px;
        top: 12px;
        right: 12px;
    }

    .journal-card-title {
        font-size: 14px;
    }

    .journal-card-footer {
        font-size: 9px;
        padding-top: 10px;
        margin-top: 12px;
    }

    .search-input {
        font-size: 18px;
    }

    .search-close {
        font-size: 22px;
        top: 16px;
        right: 16px;
    }

    .materials-pill {
        font-size: 11px;
        padding: 7px 12px;
    }

    .tier-btn {
        padding: 9px 12px;
        font-size: 10px;
    }

    .floating-label {
        font-size: 10px;
    }

    .floating-input {
        font-size: 14px;
        padding: 10px 0;
    }

    .mobile-app-nav {
        height: 54px;
    }

    .mobile-nav-link {
        font-size: 7px;
    }

    .mobile-nav-link i {
        font-size: 16px;
    }

    /* Footer final compaction */
    footer h4 {
        margin-bottom: 12px !important;
        font-size: 11px !important;
    }

    footer .logo-img {
        height: 28px !important;
    }

}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-on-surface-variant);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    width: 20%;
    height: 100%;
    transition: var(--transition-micro);
}

.mobile-nav-link i {
    font-size: 20px;
    margin-bottom: 3px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--secondary-dark);
}

.mobile-nav-link.active i {
    transform: scale(1.1) translateY(-2px);
    color: var(--secondary-dark);
}

/* ==========================================================================
   11. Luxurious Custom Cursor System
   ========================================================================== */

@media (min-width: 992px) {

    /* Hide default cursor on desktop for custom interactive feel */
    body {
        cursor: none !important;
    }

    a,
    button,
    select,
    input,
    textarea,
    [role="button"],
    .social-tile img,
    .element-grid-card {
        cursor: none !important;
    }

    .luxury-cursor-dot {
        width: 8px;
        height: 8px;
        background-color: var(--secondary-dark);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 100000;
        transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    }

    .luxury-cursor-ring {
        width: 36px;
        height: 36px;
        border: 1px solid var(--secondary-color);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 99999;
        transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1), height 0.35s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.35s ease, background-color 0.35s ease;
    }

    /* Hover States for Interactive items */
    .luxury-cursor-dot.hovered {
        width: 10px;
        height: 10px;
        background-color: var(--primary-color);
        box-shadow: 0 0 6px rgba(198, 164, 108, 0.6);
    }

    .luxury-cursor-ring.hovered {
        width: 60px;
        height: 60px;
        border-color: var(--secondary-dark);
        background-color: rgba(186, 150, 89, 0.12);
        box-shadow: 0 0 12px rgba(186, 150, 89, 0.25);
    }

    /* Active/Click States */
    .luxury-cursor-dot.active {
        transform: translate(-50%, -50%) scale(0.5);
    }

    .luxury-cursor-ring.active {
        transform: translate(-50%, -50%) scale(0.85);
        background-color: rgba(186, 150, 89, 0.12);
    }

}

/* ==========================================================================
   12. Account Drawer - Premium Luxury Design System
   ========================================================================== */
/* --- Branded Monogram Seal --- */
.account-monogram {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.account-monogram span {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-dark);
    letter-spacing: 0.08em;
}

/* --- Gold Ornamental Divider --- */
.account-ornament {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
}

.account-ornament::before,
.account-ornament::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

.account-ornament-diamond {
    padding: 0 12px;
    font-size: 8px;
    color: var(--secondary-color);
    line-height: 1;
}

/* --- Luxury Tab Switcher --- */
.luxury-tabs .nav-link {
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.18em !important;
    color: var(--text-on-surface-variant) !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    padding: 10px 0 10px !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    outline: none !important;
    box-shadow: none !important;
    position: relative !important;
}

.luxury-tabs .nav-link.active,
.luxury-tabs .nav-link:hover,
.luxury-tabs .nav-link:focus {
    color: var(--primary-color) !important;
    border-bottom: 2px solid var(--secondary-color) !important;
    background: transparent !important;
}

/* --- Account Form Spacing --- */
.account-form {
    padding-top: 0;
}

/* --- Trust Strip --- */
.account-trust-strip {
    padding-bottom: 4px;
}

/* --- Floating Label Form Inputs --- */
.floating-form-group {
    position: relative;
    margin-bottom: 20px;
}

.floating-input {
    width: 100%;
    padding: 18px 14px 6px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--primary-color);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--outline-variant);
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s ease;
}

.floating-input:focus {
    border-bottom-color: var(--secondary-color);
    box-shadow: none;
}

.floating-label {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-on-surface-variant);
    letter-spacing: 0.04em;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.floating-input:focus~.floating-label,
.floating-input:not(:placeholder-shown)~.floating-label,
.floating-input.has-value~.floating-label {
    top: 6px;
    transform: translateY(0);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary-dark);
}

/* --- Utility: Serif Italic --- */
.font-serif-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

/* --- Luxury CTA Button --- */
.btn-luxury {
    background-color: var(--primary-color);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: 1px solid var(--primary-color);
    border-radius: 0;
    padding: 14px 24px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-luxury:hover,
.btn-luxury:focus {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: #fff;
}

/* ==========================================================================
   13. Offcanvas Social Buttons
   ========================================================================== */
.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--bg-container-low);
    color: var(--primary-color) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-btn:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--bg-surface) !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(25, 51, 38, 0.12);
}

/* --- Utility Classes (Replacing Inline Styles) --- */
.h-32px {
    height: 32px !important;
}

.h-40px {
    height: 40px !important;
}

.h-550px {
    height: 550px !important;
}

.h-650px {
    height: 650px !important;
}

.w-88px {
    width: 88px !important;
    height: 88px !important;
}

.opacity-80 {
    opacity: 0.8 !important;
}

.opacity-95 {
    opacity: 0.95 !important;
}

.fs-8px {
    font-size: 8px !important;
}

.fs-9px {
    font-size: 9px !important;
}

.fs-10px {
    font-size: 10px !important;
}

.fs-11px {
    font-size: 11px !important;
}

.fs-12px {
    font-size: 12px !important;
}

.fs-15px {
    font-size: 15px !important;
}

.fs-18px {
    font-size: 18px !important;
}

.fs-20px {
    font-size: 20px !important;
}

.fs-22px {
    font-size: 22px !important;
}

.ls-004em {
    letter-spacing: 0.04em !important;
}

.ls-008em {
    letter-spacing: 0.08em !important;
}

.ls-01em {
    letter-spacing: 0.1em !important;
}

.ls-012em {
    letter-spacing: 0.12em !important;
}

.ls-014em {
    letter-spacing: 0.14em !important;
}

.ls-015em {
    letter-spacing: 0.15em !important;
}

.ls-018em {
    letter-spacing: 0.18em !important;
}

.z-0 {
    z-index: 0 !important;
}

.outline-none-shadow-none {
    outline: none !important;
    box-shadow: none !important;
}

.btn-transparent-icon {
    border: none !important;
    background: none !important;
}

.translate-y-n44 {
    transform: translateY(-44px) !important;
}

.progress-connector-pill {
    position: absolute;
    left: 50% !important;
    top: 0;
    transform: translate(-50%, -44px) !important;
    z-index: 3;
}

.textarea-gift {
    min-height: 120px !important;
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    resize: none !important;
}

.glow-effect-1 {
    width: 250px !important;
    height: 250px !important;
    top: -50px !important;
    left: -50px !important;
    filter: blur(80px) !important;
    opacity: 0.15 !important;
    -webkit-filter: blur(80px) !important;
}

.glow-effect-2 {
    width: 320px !important;
    height: 320px !important;
    bottom: -80px !important;
    right: -80px !important;
    filter: blur(90px) !important;
    opacity: 0.4 !important;
    -webkit-filter: blur(90px) !important;
}

.text-secondary-color-override {
    color: var(--secondary-color) !important;
}

.btn-outline-white-glass {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
}

.h-380px {
    height: 380px !important;
}

.min-h-120px {
    min-height: 120px !important;
}

.min-h-80px {
    min-height: 80px !important;
}

.max-w-240px {
    max-width: 240px !important;
}

.min-h-520px {
    min-height: 520px !important;
}

.h-420px {
    height: 420px !important;
}

.w-64px {
    width: 64px !important;
    height: 64px !important;
}

.bg-dark-overlay {
    background-color: rgba(0, 0, 0, 0.25) !important;
}

.w-20px {
    width: 20px !important;
    height: 20px !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.pb-2px {
    padding-bottom: 2px !important;
}

/* ==========================================================================
   14. Product List & Product Details Pages (Semantic Architecture)
   ========================================================================== */
/* --- Product Grid Layout (products.html) --- */
.product-catalog-section {
    background-color: var(--bg-surface);
}

.product-grid-layout {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}

@media (min-width: 768px) {
    .product-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

}

@media (min-width: 992px) {
    .product-grid-layout {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

}

@media (min-width: 1200px) {
    .product-grid-layout {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }

}

/* --- Product Card (products.html) --- */
.product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background-color: var(--bg-surface);
    border: 1px solid var(--outline-variant);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-premium);
    position: relative;
    group: product-card;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-card-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 0;
    background-color: var(--bg-surface);
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-image {
    transform: scale(1.05);
}

.product-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--bg-surface);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 12px;
    z-index: 2;
}

.product-card-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(25, 51, 38, 0.95);
    /* primary color transparent */
    color: #fff;
    border: none;
    padding: 15px 0;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    cursor: pointer;
}

.product-card:hover .product-card-quick-add {
    transform: translateY(0);
}

.product-card-quick-add:hover {
    background-color: var(--secondary-color);
    color: var(--primary-dark);
}

.product-card-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--outline-variant);
    flex-grow: 1;
}

.product-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-on-surface-variant);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.product-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card-title a:hover {
    color: var(--secondary-color);
}

.product-card-price {
    font-family: 'Inter', sans-serif;
    font-size: 18.4px;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 20px;
}

/* --- Product Details Section (product-details.html) --- */
.product-details-section {
    background-color: var(--bg-surface);
}

.product-details-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
}

@media (min-width: 992px) {
    .product-details-layout {
        flex-direction: row;
        align-items: stretch;
    }

}

/* --- V2 Product Gallery (Edge to Edge) --- */
.gallery {
    display: flex;
    flex-direction: column-reverse;
    /* Mobile: main image top, thumbs bottom */
    width: 100%;
}

@media (min-width: 992px) {
    .gallery {
        width: 50%;
        flex-direction: row;
        position: sticky;
        top: 0;
        height: 100vh;
    }

}

.thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 15px;
    background-color: var(--primary-color);
    /* Deep Sage Green Background */
}

@media (min-width: 992px) {
    .thumbnails {
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
        width: 120px;
        min-width: 120px;
        flex-shrink: 0;
        height: 100%;
        overflow-y: auto;
        align-items: center;
        /* Center thumbnails inside column */
        padding: 20px 15px;
        /* Hide scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .thumbnails::-webkit-scrollbar {
        display: none;
    }

}

.thumbnails .product-gallery-thumbnail {
    width: 100%;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 0;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-premium);
}

@media (min-width: 992px) {
    .thumbnails .product-gallery-thumbnail {
        width: 85px;
        height: auto;
        aspect-ratio: 1 / 1;
    }

}

.thumbnails .product-gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.thumbnails .product-gallery-thumbnail.active {
    border-color: var(--secondary-color);
}

.thumbnails .product-gallery-thumbnail.active img,
.thumbnails .product-gallery-thumbnail:hover img {
    opacity: 1;
}

.main-image {
    width: 100%;
    position: relative;
    border-radius: 0;
    aspect-ratio: 4/5;
}

@media (min-width: 992px) {
    .main-image {
        height: 100%;
        flex-grow: 1;
        flex-shrink: 1;
        width: calc(100% - 120px);
        aspect-ratio: auto;
    }

}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* --- High-End Gallery Slide Show Slider --- */
.gallery-slider-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slider-strip {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: auto;
    cursor: zoom-in;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slide img:hover {
    transform: scale(1.08);
}

.image-counter-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--bg-surface);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
}

.image-counter-overlay i {
    cursor: pointer;
    transition: color 0.3s;
}

.image-counter-overlay i:hover {
    color: var(--secondary-color);
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.4s ease;
}

/* Standalone .product-gallery-thumbnail styles removed —
   all thumbnail styling now consolidated under .thumbnails rules above */
/* --- V2 Info Panel --- */
.info-panel {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-surface-alt);
}

@media (min-width: 992px) {
    .info-panel {
        width: 50%;
        padding: 60px 5%;
        min-height: 100vh;
    }

}

/* Info Card Wrapper — clean, no border frame per Figma */
.info-card {
    border: none;
    background-color: transparent;
    position: relative;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
}

.info-card::after {
    display: none;
}

.product-title {
    font-size: 28.8px;
    font-weight: 400;
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .product-title {
        font-size: 33.6px;
    }

}

@media (max-width: 360.98px) {
    .product-title {
        font-size: 24px;
        white-space: normal;
    }

}

/* Diamond Divider — compact per Figma */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

.divider-line {
    height: 1px;
    flex-grow: 1;
    background-color: var(--outline-variant);
}

.divider-diamond {
    width: 5px;
    height: 5px;
    background-color: var(--secondary-color);
    transform: rotate(45deg);
}

/* Features Row — compact with dot dividers per Figma */
.features-row {
    width: 100%;
    margin: 0 auto;
    gap: 0;
}

.feature-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
}

.feature-icon {
    width: 26px;
    height: 26px;
    opacity: 0.75;
    filter: sepia(0.3) saturate(0.8);
}

.feature-text {
    font-size: 8px;
    line-height: 1.35;
    letter-spacing: 0.12em;
}

.feature-divider {
    width: 4px;
    height: 4px;
    background-color: var(--outline-variant);
    border-radius: 50%;
    align-self: center;
    flex-shrink: 0;
}

/* Actions Row — compact, single-row per Figma */
.actions-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 10px !important;
}

.qty {
    flex-shrink: 0;
    width: 110px;
    border: 1px solid var(--outline-variant);
    border-radius: 0;
    margin-bottom: 0;
}

.add-btn,
.buy-btn {
    border-radius: 0;
    font-size: 10px;
    letter-spacing: 0.15em;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    flex: 1;
}

.custom-accordion {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
}

.custom-accordion .accordion-header {
    cursor: pointer;
}

.custom-accordion .accordion-header[aria-expanded="true"] #customAccordionIcon {
    transform: rotate(90deg);
}

.transition-transform {
    transition: transform 0.3s ease;
}

/* --- Product Info Panel --- */
.product-info-panel {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}

.product-info-breadcrumbs {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-on-surface-variant);
    margin-bottom: 20px;
}

.product-info-breadcrumbs a {
    color: var(--text-on-surface-variant);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-info-breadcrumbs a:hover {
    color: var(--secondary-dark);
}

.product-info-breadcrumbs span {
    margin: 0 8px;
    color: var(--outline-variant);
}

.product-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 15px;
}

.product-info-price {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 30px;
}

.product-info-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-on-surface-variant);
    margin-bottom: 40px;
}

.product-info-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--outline-variant);
}

@media (min-width: 576px) {
    .product-info-actions {
        flex-direction: row;
        align-items: stretch;
    }

}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--outline-variant);
    height: 44px;
}

.quantity-btn {
    width: 36px;
    height: 100%;
    background: transparent;
    border: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.3s ease;
}

.quantity-btn:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.quantity-input {
    width: 40px;
    height: 100%;
    border: none;
    background: transparent;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--primary-color);
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-to-cart-btn {
    flex-grow: 1;
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.add-to-cart-btn:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

/* --- Product Accordion --- */
.product-accordion {
    display: flex;
    flex-direction: column;
}

.product-accordion-item {
    border-bottom: 1px solid var(--outline-variant);
}

.product-accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    cursor: pointer;
}

.product-accordion-icon {
    font-size: 18px;
    color: var(--secondary-dark);
    transition: transform 0.3s ease;
}

.product-accordion-header[aria-expanded="true"] .product-accordion-icon {
    transform: rotate(45deg);
}

.product-accordion-body {
    padding-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 15.2px;
    line-height: 1.7;
    color: var(--text-on-surface-variant);
}

.product-accordion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-accordion-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
}

.product-accordion-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* --- Related Products Section --- */
.related-products-section {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--outline-variant);
}

.related-products-header {
    text-align: center;
    margin-bottom: 60px;
}

.related-products-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 400;
}

/* ==========================================================================
   15. Product Catalog Split Layout (Sidebar + Grid)
   ========================================================================== */
.products-toolbar {
    background-color: var(--bg-surface);
}

@media (max-width: 1199.98px) {}

@media (max-width: 767.98px) {}

.product-catalog-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

@media (min-width: 992px) {
    .product-catalog-layout {
        flex-direction: row;
        gap: 0px;
        transition: gap 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .product-catalog-layout.filters-open {
        gap: 50px;
    }

}

/* --- Sidebar --- */
.product-sidebar {
    width: 100%;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .product-sidebar {
        width: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        margin-bottom: 0;
        transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s;
        flex-shrink: 0;
        position: sticky;
        top: 100px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--outline-variant) transparent;
    }

    .product-sidebar::-webkit-scrollbar {
        width: 4px;
    }

    .product-sidebar::-webkit-scrollbar-thumb {
        background-color: var(--outline-variant);
        border-radius: 4px;
    }

}

/* State: Sidebar Open */
.product-catalog-layout.filters-open .product-sidebar {
    width: 280px;
    opacity: 1;
    visibility: visible;
}

/* Sidebar Lists & Links */
.sidebar-inner {
    width: 250px;
}

@media (max-width: 991.98px) {
    .sidebar-inner {
        width: 100%;
    }

    /* On mobile, make it an offcanvas drawer instead of pushing content */
    .product-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background-color: var(--bg-surface);
        z-index: 1050;
        padding: 40px 30px;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }

    .product-catalog-layout.filters-open .product-sidebar {
        left: 0;
    }

    /* Backdrop for mobile */
    .product-sidebar-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }

    .product-catalog-layout.filters-open .product-sidebar-backdrop {
        opacity: 1;
        visibility: visible;
    }

}

.sidebar-menu-list li {
    margin-bottom: 24px;
}

.sidebar-menu-list a {
    color: var(--primary-color);
    opacity: 0.8;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.sidebar-menu-list a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.sidebar-menu-list a.active {
    opacity: 1;
    font-weight: 600;
}

/* Range Slider */
.price-range-display {
    letter-spacing: 0.15em;
    font-weight: 500;
}

.range-slider-wrap {
    padding: 0 10px;
}

.luxury-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 24px;
    background: transparent;
    outline: none;
    margin-top: 5px;
}

.luxury-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: #E8EDF2;
    border-radius: 3px;
    cursor: pointer;
}

.luxury-range::-moz-range-track {
    width: 100%;
    height: 6px;
    background: #E8EDF2;
    border-radius: 3px;
    cursor: pointer;
}

.luxury-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 3px solid #C6A46C;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: -7px;
}

.luxury-range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.luxury-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 3px solid #C6A46C;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.luxury-range::-moz-range-thumb:hover {
    transform: scale(1.1);
}

/* --- Right Grid Area --- */
.product-grid-area {
    width: 100%;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 992px) {
    .product-grid-area {
        flex-grow: 1;
    }

}

/* Adjusted Grid Columns when Sidebar Open */
.product-catalog-layout.filters-open .product-grid-layout {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1400px) {
    .product-catalog-layout.filters-open .product-grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* Force Column View Overrides */
.product-grid-layout.grid-4-col {
    grid-template-columns: repeat(4, 1fr) !important;
}

@media (min-width: 768px) {
    .product-grid-layout.grid-2-col {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Elegant Horizontal Card layout for 2-column view */
    .product-grid-layout.grid-2-col .product-card {
        flex-direction: row;
        align-items: stretch;
    }

    .product-grid-layout.grid-2-col .product-card-image-wrap {
        width: 45%;
        aspect-ratio: auto;
        border-right: 1px solid var(--outline-variant);
        flex-shrink: 0;
    }

    .product-grid-layout.grid-2-col .product-card-image {
        height: 100%;
        width: 100%;
        object-fit: cover;
        position: absolute;
        /* Ensures the image fills the 100% height of the stretched flex child */
    }

    .product-grid-layout.grid-2-col .product-card-info {
        width: 55%;
        border-top: none;
        padding: 30px;
        justify-content: center;
    }

    .product-grid-layout.grid-2-col .btn-underline-add-cart {
        margin-top: 30px;
    }

}

.active-grid-btn {
    color: var(--secondary-color) !important;
}

/* --- Updated Product Card v2 --- */
.card {
    text-align: left;
}

.card .product-card-info {
    align-items: flex-start;
    text-align: left;
}

.card .product-card-image-wrap {
    aspect-ratio: 1/1;
    background-color: var(--bg-surface-alt);
    margin-bottom: 0;
}

.btn-underline-add-cart {
    background: transparent;
    border: 1px solid var(--outline-variant);
    padding: 12px 20px;
    width: 100%;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 4px;
    margin-top: auto;
}

.btn-underline-add-cart:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Responsive Overrides for Breakpoints */

@media (max-width: 991.98px) {
    .product-info-panel {
        padding-top: 0;
    }

    .product-details-layout {
        gap: 40px;
    }

    .product-info-title {
        font-size: 35.2px;
    }

}

@media (max-width: 767.98px) {
    .related-products-header {
        margin-bottom: 40px;
    }

    .product-info-title {
        font-size: 28.8px;
    }

    .product-info-price {
        font-size: 20.8px;
        margin-bottom: 20px;
    }

    .product-info-description {
        margin-bottom: 30px;
    }

    .product-info-actions {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

}

/* --- Footer Dark Theme Utilities --- */
.bg-primary-dark {
    background-color: #132219 !important;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.opacity-60 {
    opacity: 0.6 !important;
}

.hover-bg-secondary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: white !important;
}

.hover-text-primary:hover {
    color: var(--primary-color) !important;
}

.hover-text-white:hover {
    color: white !important;
}

.transition-all {
    transition: all 0.3s ease !important;
}

.filter-brightness-0 {
    filter: brightness(0) !important;
}

.filter-invert {
    filter: invert(1) !important;
}

.h-50px {
    height: 50px !important;
}

/* ==========================================================================
   16. High-End Layout & Style Managers
   ========================================================================== */
/* Mobile Offcanvas Drawer Logo Sizing */
.offcanvas .logo-img-mobile-drawer {
    height: 32px !important;
    width: auto !important;
    object-fit: contain !important;
    transition: var(--transition-premium) !important;
}

/* ==========================================================================
   17. Figma Aligned Luxury Footer Styling
   ========================================================================== */
.luxury-footer {
    position: relative;
    background-color: #132219;
    color: #ffffff;
    padding-top: 80px;
    padding-bottom: 40px;
    overflow: visible;
    z-index: 1;
    border-top: 1px solid var(--secondary-color);
}

/* Leafy branch watermark illustration (Right side) */
.footer-branch-decor {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 320px;
    height: 520px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
    background-image: url('../images/footer-plant.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    mix-blend-mode: screen;
    transform: scaleX(-1);
    transition: var(--transition-premium);
}

.footer-branch-decor svg {
    display: none;
}

/* Ambient luxury glow */
.footer-ambient-glow {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

/* Container */
.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-left: 24px;
    padding-right: 24px;
}

/* Main Layout Row */
.footer-main-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

/* Columns */
.footer-col {
    display: flex;
    flex-direction: column;
}

/* Brand Column */
.footer-brand-column {
    flex: 1 1 320px;
    max-width: 380px;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.footer-brand-logo-link {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: var(--transition-premium);
    width: 150px;
}

.footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-monogram {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--secondary-color);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 4px;
    position: relative;
}

.footer-logo-monogram sub {
    font-size: 26px;
    bottom: -4px;
    position: relative;
    left: -3px;
    font-family: 'Playfair Display', serif;
}

.footer-logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

/* Brand Dividers */
.footer-brand-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    margin: 12px auto;
}

.footer-divider-line {
    height: 1px;
    background-color: var(--secondary-color);
    flex-grow: 1;
    opacity: 0.45;
}

.footer-divider-diamond {
    font-size: 10px;
    color: var(--secondary-color);
    margin: 0 8px;
    opacity: 0.85;
}

.footer-quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.85;
    margin: 0;
    text-align: center;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.footer-socials .social-icon-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    border: 1px solid var(--secondary-color) !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    background-color: transparent !important;
    transition: var(--transition-premium) !important;
}

.footer-socials .social-icon-btn:hover {
    background-color: var(--secondary-color) !important;
    color: #132219 !important;
    transform: translateY(-3px);
}

.footer-socials .social-icon-btn i {
    font-size: 16px;
}

/* Menu Columns */
.footer-menu-column {
    flex: 1 1 180px;
    max-width: 240px;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.footer-column-heading {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.footer-heading-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    margin: 12px auto 20px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    opacity: 0.8;
    transition: var(--transition-premium);
    display: inline-block;
}

.footer-link:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.footer-menu-column .footer-link:hover {
    transform: translateY(-2px);
}

/* Join Column */
.footer-join-column {
    display: none !important;
}

.footer-join-description {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.8;
    margin-top: 0;
    margin-bottom: 24px;
}

.footer-subscription-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 8px;
    width: 100%;
}

.footer-sub-input {
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 300 !important;
    padding: 8px 0 !important;
    width: 100% !important;
    outline: none !important;
    box-shadow: none !important;
}

.footer-sub-input::placeholder {
    color: #ffffff;
    opacity: 0.5;
}

.footer-sub-btn {
    background-color: transparent !important;
    border: none !important;
    color: var(--secondary-color) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    padding: 8px 0 8px 16px !important;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition-premium) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-sub-btn:hover {
    color: #ffffff !important;
}

/* Copyright & Cities Row */
.footer-copyright-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.copyright-text {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.6;
    margin: 0;
}

.footer-cities {
    display: flex;
    align-items: center;
    gap: 16px;
}

.city-name {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.8;
}

.city-separator {
    color: var(--secondary-color);
    opacity: 0.5;
    font-size: 11px;
}

/* ==========================================================================
   18. Responsive Overrides (Exact Required Breakpoints Only)
   ========================================================================== */

@media (max-width: 1199.98px) {
    .luxury-footer {
        padding-top: 70px;
    }

}

@media (max-width: 991.98px) {
    .luxury-footer {
        padding-top: 60px;
    }

    .footer-brand-column {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .footer-menu-column {
        flex: 1 1 50%;
        max-width: 50%;
    }

    .footer-join-column {
        flex: 1 1 100%;
        max-width: 100%;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .footer-branch-decor {
        opacity: 0.20;
        width: 240px;
        height: 390px;
        right: 0px;
        bottom: 0px;
    }

}

@media (max-width: 767.98px) {
    .footer-copyright-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

}

@media (max-width: 575.98px) {
    .luxury-footer {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer-menu-column {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 36px;
    }

    .footer-cities {
        gap: 12px;
    }

    .city-name {
        font-size: 10px;
        letter-spacing: 1px;
    }

}

/* Offcanvas Cart Drawer Styles */
.cart-summary .cart-subtotal-label {
    text-transform: uppercase !important;
    color: var(--text-on-surface-variant) !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 11px !important;
    letter-spacing: 0.18em !important;
}

.cart-summary .cart-subtotal-value {
    color: var(--primary-color) !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}

.cart-summary .cart-complimentary-note {
    text-align: center !important;
    color: var(--text-on-surface-variant) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    letter-spacing: 0.04em !important;
}

.cart-summary .cart-continue-shopping {
    color: var(--text-on-surface-variant) !important;
    text-decoration: none !important;
    font-family: 'Inter', sans-serif !important;
    text-transform: uppercase !important;
    font-size: 10px !important;
    letter-spacing: 0.15em !important;
    transition: var(--transition-premium) !important;
}

.cart-summary .cart-continue-shopping:hover {
    color: var(--secondary-color) !important;
}

/* Cart Item Row Components */
.cart-item-row .cart-remove-btn {
    font-size: 18px !important;
    border: none !important;
    background: none !important;
    color: var(--text-on-surface-variant) !important;
    padding: 0 !important;
    transition: var(--transition-premium) !important;
}

.cart-item-row .cart-remove-btn:hover {
    color: var(--secondary-color) !important;
}

.cart-item-row .cart-qty-btn {
    border: 1px solid var(--outline-variant) !important;
    background: transparent !important;
    padding: 0px 8px !important;
    border-radius: 0 !important;
    font-size: 12px !important;
    transition: var(--transition-premium) !important;
    color: var(--text-on-surface) !important;
}

.cart-item-row .cart-qty-btn:hover {
    border-color: var(--secondary-color) !important;
    color: var(--secondary-color) !important;
}

/* Forgot Password Text Override */
.account-form .account-reset-msg {
    color: var(--text-on-surface-variant) !important;
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    font-size: 15px !important;
}

/* Gifting Process Badge Override */
.gifting-process-badge {
    font-size: 9px !important;
    letter-spacing: 0.15em !important;
    line-height: 1 !important;
    color: var(--primary-color) !important;
}

/* --- Custom Gallery Lightbox System --- */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(20, 36, 28, 0.98);
    /* Deep brand sage dark */
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-lightbox.show {
    opacity: 1;
}

.lightbox-content {
    max-width: 85vw;
    max-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease, opacity 0.25s ease;
    opacity: 1;
}

.lightbox-content img:hover {
    transform: scale(1.05);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: var(--secondary-color);
    font-size: 32px;
    cursor: pointer;
    transition: var(--transition-micro);
    z-index: 10002;
}

.lightbox-close:hover {
    color: white;
    transform: rotate(90deg);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-micro);
    z-index: 10001;
}

.lightbox-arrow:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-thumbnails {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10001;
}

.lightbox-thumb {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-micro);
}

.lightbox-thumb:hover,
.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--secondary-color);
    transform: translateY(-4px);
}

@media (max-width: 767.98px) {
    .lightbox-arrow {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }

    .lightbox-thumbnails {
        display: none;
    }

    /* Product Details - Mobile Responsive Enhancements */
    .features-row {
        flex-wrap: wrap;
        gap: 30px 0 !important;
    }

    .feature-col {
        flex: 0 0 50%;
        padding: 0 10px;
    }

    .feature-divider {
        display: none;
    }

    .actions-row {
        flex-wrap: wrap;
        gap: 12px !important;
    }

    .actions-row .qty {
        flex: 0 0 120px;
        width: 120px;
    }

    .actions-row .add-btn {
        flex: 1;
        min-width: 0;
    }

    .actions-row .buy-btn {
        flex: 0 0 100%;
        width: 100%;
    }

}

/* ==========================================================================
   19. Hero Section Custom Redesign Overrides (Design Fidelity)
   ========================================================================== */
.hero-content-col {
    padding-left: 60px;
    padding-right: 20px;
}

.hero-content {
    max-width: 520px;
    margin-right: auto;
    background-color: rgba(248, 244, 236, 0.45);
    /* Soft premium micro-backdrop for extreme readability on medium screens */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 40px;
    border: 1px solid rgba(47, 74, 60, 0.05);
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
}

@media (min-width: 1400px) {
    .hero-content {
        background-color: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        padding: 0;
        box-shadow: none;
    }

}

/* Luxury Header Monogram styling */
.hero-brand-header {
    margin-bottom: 25px;
}

.hero-monogram {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 400;
    color: var(--secondary-dark);
    line-height: 1;
    letter-spacing: 0.05em;
}

.hero-brand-name {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--secondary-dark);
    margin-top: 5px;
}

.hero-brand-subline {
    width: 60px;
    height: 1px;
    background-color: var(--secondary-color);
    opacity: 0.5;
    margin: 12px auto 0;
}

/* Subtitle and Title Styles */
.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--secondary-dark);
    margin-bottom: 12px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.25;
}

.hero-title-main {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-color);
}

/* Custom Diamond Divider */
.hero-title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 20px auto 25px;
}

.hero-title-divider .divider-line {
    width: 80px;
    height: 1px;
    background-color: var(--secondary-color);
    opacity: 0.65;
}

.hero-title-divider .divider-diamond {
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    transform: rotate(45deg);
}

/* Paragraph Text Block */
.hero-body-text {
    margin-bottom: 35px;
}

.hero-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-on-surface-variant);
    margin-bottom: 18px;
    text-align: justify;
}

.hero-paragraph:last-child {
    margin-bottom: 0;
}

/* Horizontal Elements Row */
.hero-elements-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(198, 164, 108, 0.25);
    padding-top: 30px;
    margin-top: 25px;
}

.hero-element-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-premium);
}

.hero-element-icon-wrap {
    font-size: 26px;
    color: var(--secondary-dark);
    margin-bottom: 6px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-element-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-on-surface-variant);
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Premium micro-animations for elements row */
.hero-element-item:hover .hero-element-icon-wrap {
    transform: translateY(-4px) scale(1.1);
    color: var(--secondary-color);
}

.hero-element-item:hover .hero-element-label {
    color: var(--primary-color);
}

/* --- Responsive Adjustments using Mandatory Breakpoints --- */

@media (max-width: 1199.98px) {
    .hero-content-col {
        padding-left: 30px;
    }

    .hero-title {
        font-size: 38px;
    }

}

@media (max-width: 991.98px) {
    .hero-content-col {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-content {
        max-width: 580px;
        margin: 0 auto;
        padding: 35px;
    }

}

@media (max-width: 575.98px) {
    .hero-content {
        padding: 25px 20px;
    }

    .hero-monogram {
        font-size: 44px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-paragraph {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 14px;
    }

    .hero-elements-row {
        padding-top: 20px;
    }

    .hero-element-icon-wrap {
        font-size: 22px;
    }

}

/* ==========================================================================
   20. "Living the Elements" Redesign Overrides (Design Fidelity)
   ========================================================================== */
.elements-moments-section {
    background-color: var(--bg-surface);
    position: relative;
}

/* Header Container */
.elements-header-container {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.elements-header-content {
    text-align: center;
    max-width: 600px;
}

.elements-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Elegant Header Divider */
.elements-title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 15px auto 20px;
}

.elements-title-divider .elements-divider-line {
    width: 80px;
    height: 1px;
    background-color: var(--secondary-color);
    opacity: 0.65;
}

.elements-title-divider .elements-divider-diamond {
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    transform: rotate(45deg);
}

.elements-section-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 17px;
    color: var(--text-on-surface-variant);
    margin-bottom: 0;
}

/* Header Social Link (Top-Right aligned) */
.elements-header-social {
    position: absolute;
    right: 15px;
    bottom: 5px;
}

.elements-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-on-surface-variant);
    transition: var(--transition-premium);
}

.elements-social-link i {
    font-size: 18px;
    color: var(--secondary-color);
}

.elements-social-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.elements-social-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* CSS Grid for Elements Cards */
.elements-moments-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    width: 100%;
    margin-bottom: 0;
}

.elements-moment-card {
    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    cursor: pointer;
}

.element-span-2 {
    grid-column: span 2;
}

.element-span-3 {
    grid-column: span 3;
}

/* Card Image Wrapping & Zoom */
.elements-card-image-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.elements-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Micro-Shadows and Premium Transitions */
.elements-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(28, 28, 23, 0.75) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: background 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.elements-card-content {
    width: 100%;
    text-align: left;
    transform: translateY(15px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.elements-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.elements-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* Card Divider - Gold Underline Indicator */
.elements-card-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    width: fit-content;
    opacity: 0.65;
    transition: opacity 0.5s ease;
}

.elements-card-divider-line {
    width: 30px;
    height: 1px;
    background-color: var(--secondary-color);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.elements-card-divider-diamond {
    width: 4px;
    height: 4px;
    background-color: var(--secondary-color);
    transform: rotate(45deg);
}

/* Hover States for Cards */
.elements-moment-card:hover .elements-card-image {
    transform: scale(1.06);
}

.elements-moment-card:hover .elements-card-overlay {
    background: linear-gradient(180deg, rgba(47, 74, 60, 0.2) 20%, rgba(47, 74, 60, 0.85) 100%);
}

.elements-moment-card:hover .elements-card-content {
    transform: translateY(0);
}

.elements-moment-card:hover .elements-card-divider {
    opacity: 1;
}

.elements-moment-card:hover .elements-card-divider-line {
    width: 55px;
}

/* Integrated Footer Pillars styling */
.elements-pillars-row {
    border-top: 1px solid rgba(198, 164, 108, 0.25);
    border-bottom: 1px solid rgba(198, 164, 108, 0.25);
    padding: 40px 0;
    margin-top: 50px;
    margin-bottom: 0;
}

.elements-pillars-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.elements-pillar-col {
    position: relative;
    padding: 10px 20px;
}

/* Centered Vertical Divider */
.elements-pillar-col::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 45px;
    background-color: rgba(198, 164, 108, 0.25);
}

.elements-pillar-col:last-child::after {
    display: none;
}

.elements-pillar-item {
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
    height: 100%;
}

.elements-pillar-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.elements-pillar-svg {
    width: 44px;
    height: 44px;
    stroke: var(--secondary-color);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.4s ease;
}

.elements-pillar-text {
    flex: 1;
}

.elements-pillar-title {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 4px;
    line-height: 1.2;
    white-space: normal;
}

.elements-pillar-desc {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    line-height: 1.4;
    color: var(--text-on-surface-variant);
    margin-bottom: 0;
}

/* Hover effect on Pillar icons */
.elements-pillar-item:hover .elements-pillar-svg {
    transform: scale(1.1) translateY(-2px);
    stroke: var(--secondary-dark);
}

/* ==========================================================================
   21. Responsive Overrides (Exact Breakpoints)
   ========================================================================== */

@media (max-width: 1199.98px) {
    .elements-section-title {
        font-size: 36px;
    }

    .elements-moment-card {
        height: 340px;
    }

    .elements-pillar-col {
        padding: 10px 10px;
    }

    .elements-pillar-item {
        gap: 12px;
    }

    .elements-pillar-icon-wrap {
        width: 40px;
        height: 40px;
    }

    .elements-pillar-svg {
        width: 36px;
        height: 36px;
    }

    .elements-pillar-title {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .elements-pillar-desc {
        font-size: 10.5px;
    }

}

@media (max-width: 991.98px) {
    .elements-header-container {
        flex-direction: column;
        align-items: center;
        margin-bottom: 35px;
    }

    .elements-header-social {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
    }

    /* Grid Adjustments for Tablet */
    .elements-moments-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .elements-moment-card {
        height: 320px;
    }

    /* AIR and WATER occupy half screen each */
    .elements-moments-grid .elements-moment-card:nth-child(1),
    .elements-moments-grid .elements-moment-card:nth-child(2) {
        grid-column: span 2;
    }

    /* EARTH occupies full width in middle row */
    .elements-moments-grid .elements-moment-card:nth-child(3) {
        grid-column: span 4;
    }

    /* FIRE and VANYA occupy half width each on bottom row */
    .elements-moments-grid .elements-moment-card:nth-child(4),
    .elements-moments-grid .elements-moment-card:nth-child(5) {
        grid-column: span 2;
    }

    .elements-pillar-col {
        padding: 15px 20px;
    }

    /* Hide desktop dividers */
    .elements-pillar-col::after {
        display: none !important;
    }

    /* Tablet 2x2 dividers: display only on odd columns (left side) */
    .elements-pillar-col:nth-child(odd)::after {
        content: '';
        display: block !important;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 45px;
        background-color: rgba(198, 164, 108, 0.25);
    }

    /* Make sure even columns have no divider */
    .elements-pillar-col:nth-child(even)::after {
        display: none !important;
    }

    .elements-pillar-title {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .elements-pillar-desc {
        font-size: 11px;
    }

}

@media (max-width: 767.98px) {
    .elements-moments-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .element-span-2,
    .element-span-3 {
        grid-column: span 1 !important;
    }

    .elements-moments-grid .elements-moment-card:nth-child(3) {
        grid-column: span 1 !important;
    }

    .elements-moment-card {
        height: 300px;
    }

    /* Pillars collapse to single-column stacking */
    .elements-pillar-col {
        padding: 15px 10px;
    }

    .elements-pillar-col::after {
        display: none !important;
    }

    .elements-pillar-item {
        gap: 16px;
    }

}

@media (max-width: 575.98px) {
    .elements-section-title {
        font-size: 28px;
    }

    .elements-section-subtitle {
        font-size: 15px;
    }

    .elements-moment-card {
        height: 260px;
    }

}

/* ==========================================================================
   22. Collections Grid & Features Section (Figma Aligned)
   ========================================================================== */
.collections-products-section {
    display: block;
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-surface);
}

/* Filter & Navigation Bar */
.collections-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f7f4eb;
    /* Elegantly light beige filter bar */
    padding: 15px 40px;
    border-bottom: 1px solid rgba(47, 74, 60, 0.1);
    width: 100%;
    z-index: 10;
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-label {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.filter-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-micro);
}

.filter-icon-svg {
    width: 20px;
    height: 20px;
}

.filter-toggle-btn:hover {
    color: var(--secondary-color);
}

.filter-center {
    display: flex;
    align-items: center;
}

.filter-nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.filter-nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--text-on-surface-variant);
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 20px;
    transition: var(--transition-micro);
    display: inline-block;
    white-space: nowrap;
}

.filter-nav-link:hover {
    color: var(--primary-color);
}

.filter-nav-link.active {
    background-color: #3b4d3c;
    /* Dark olive-green */
    color: #ffffff !important;
}

.filter-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-label {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--text-on-surface-variant);
}

.sort-dropdown {
    position: relative;
}

.sort-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-bottom: 1px solid transparent;
    transition: var(--transition-micro);
}

.sort-btn:hover {
    color: var(--secondary-color);
}

/* Massive 4-Column Element Grid */
.collections-grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 0;
    /* Zero column gutters */
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.collections-grid-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Perfect Square */
    overflow: hidden;
}

.card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.collections-grid-card:hover .card-bg-img {
    transform: scale(1.08);
    /* Sophisticated subtle zoom */
}

.card-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(28, 28, 23, 0.4) 0%, rgba(28, 28, 23, 0.75) 100%);
    backdrop-filter: blur(0px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    color: #ffffff;
    transition: var(--transition-premium);
}

.collections-grid-card:hover .card-content-overlay {
    background: linear-gradient(180deg, rgba(28, 28, 23, 0.5) 0%, rgba(28, 28, 23, 0.85) 100%);
}

.card-icon-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-premium);
}

.card-badge-svg {
    width: 28px;
    height: 28px;
    color: #3b4d3c;
    /* Olive/deep-sage */
    transition: var(--transition-premium);
}

.collections-grid-card:hover .card-icon-badge {
    transform: translateY(-5px);
    background-color: var(--secondary-color);
    /* Turns gold */
}

.collections-grid-card:hover .card-badge-svg {
    color: #ffffff;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--secondary-color);
    /* Gold color */
    margin-bottom: 5px;
    text-transform: uppercase;
}

.card-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 2px;
    color: #f7f4eb;
    margin-bottom: 15px;
}

.card-gold-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin-bottom: 20px;
}

.card-description {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    max-width: 280px;
    color: #eae5db;
    margin-bottom: 25px;
}

.card-explore-btn {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: transparent;
    transition: var(--transition-premium);
}

.card-explore-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Features Bar Section */
.collections-features-bar {
    position: relative;
    background-color: #fcfbfa;
    /* Pristine premium light-beige background */
    padding: 40px 60px;
    margin: 40px;
    /* Elegant outer frame spacing matching Figma design */
    border: 1px solid rgba(198, 164, 108, 0.22);
    /* Sophisticated thin border all around */
    overflow: hidden;
}

/* Corner Watermarks */
.features-watermark {
    position: absolute;
    bottom: 0;
    width: 65px;
    /* Refined width for subtle accent */
    height: 100px;
    color: var(--secondary-color);
    opacity: 0.25;
    /* Highly visible yet subtle luxury watermark */
    pointer-events: none;
    z-index: 1;
}

.watermark-left {
    left: 15px;
    transform: rotate(5deg);
}

.watermark-right {
    right: 15px;
    transform: scaleX(-1) rotate(5deg);
    /* Symmetric reflection */
}

.features-columns-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    gap: 40px;
    /* Luxurious generous spacing between features */
}

.feature-col-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 220px;
    position: relative;
}

/* Elegant vertical divider line between feature boxes */
.feature-col-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    /* Centered exactly in the 40px gap */
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 36px;
    /* Elegant medium-height separator line */
    background-color: rgba(198, 164, 108, 0.25);
    /* Luxurious subtle gold line */
}

.feature-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    color: var(--secondary-color);
    transition: var(--transition-premium);
}

.feature-col-item:hover .feature-icon-circle {
    transform: scale(1.08);
    /* Sophisticated micro-interaction scale */
}

.feature-circle-svg {
    width: 100%;
    height: 100%;
}

.feature-text-block {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.feature-desc {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--text-on-surface-variant);
    line-height: 1.4;
}

/* ==========================================================================
   23. Responsive Breakpoints Overrides (Mandatory Breakpoints Only)
   ========================================================================== */

@media (max-width: 1199.98px) {
    .collections-features-bar {
        padding: 35px 40px;
        margin: 30px;
    }

    .features-columns-container {
        gap: 20px;
    }

    .feature-col-item:not(:last-child)::after {
        right: -10px;
        /* Keep separator centered */
    }

}

@media (max-width: 991.98px) {
    .collections-filter-bar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .filter-center {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .filter-nav-list {
        width: max-content;
        margin: 0 auto;
    }

    /* 2 Columns on Tablet */
    .collections-grid-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-columns-container {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 35px;
    }

    .feature-col-item {
        min-width: unset;
    }

    /* Hide desktop vertical dividers on tablet wrap */
    .feature-col-item::after {
        display: none !important;
    }

}

@media (max-width: 575.98px) {

    /* Stack elements grid in 1 column on Mobile */
    .collections-grid-row {
        grid-template-columns: 1fr;
    }

    .features-columns-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .collections-features-bar {
        padding: 30px 20px;
        margin: 25px 15px;
        /* Compact margin on mobile */
    }

    .watermark-left,
    .features-watermark.watermark-right {
        display: none;
        /* Hide watermarks on mobile screen width */
    }

}

/* --- Air Section Background Linen Gradient --- */
.air-section {
    background: linear-gradient(135deg, #f2ebe1 0%, #FAF8F5 50%, #f5ece2 100%);
    position: relative;
    overflow: hidden;
}

/* --- Water Section Redesign Styles --- */
.water-section {
    background: linear-gradient(135deg, #e4edf0 0%, #f4f8f9 50%, #eef5f6 100%);
    position: relative;
    overflow: hidden;
}

.water-content-wrapper {
    max-width: 540px;
    padding-left: 0;
}

.water-drop-icon-container {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}

.water-drop-svg {
    width: 100%;
    height: 100%;
}

.water-titledisplay {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.water-subtitletext {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.water-divider {
    position: relative;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(198, 164, 108, 0.4), var(--secondary-color), rgba(198, 164, 108, 0.4), transparent);
    width: 100%;
    max-width: 320px;
    margin: 28px 0;
}

.water-divider::after {
    content: '♦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary-color);
    font-size: 10px;
    background: #eef5f6;
    /* Blends with section gradient background */
    padding: 0 8px;
}

.water-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-on-surface-variant);
    line-height: 1.8;
    margin-bottom: 20px;
}

.water-footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary-dark);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 0px;
}

/* Water Responsive Media Queries (Using mandatory breakpoints) */

@media (max-width: 1199.98px) {
    .water-titledisplay {
        font-size: 60px;
    }

}

@media (max-width: 991.98px) {
    .water-content-wrapper {
        max-width: 100%;
        padding-left: 0;
        margin-bottom: 50px;
    }

    .water-titledisplay {
        font-size: 52px;
    }

    .water-divider {
        max-width: 280px;
    }

    .water-divider::after {
        background: #f4f8f9;
    }

}

@media (max-width: 575.98px) {
    .water-titledisplay {
        font-size: 44px;
    }

    .water-divider {
        margin: 20px 0;
    }

    .water-description {
        font-size: 15px;
    }

    .water-footer-text {
        margin-top: 30px;
        font-size: 10px;
        letter-spacing: 0.15em;
    }

}

/* --- Earth Section Redesign Styles --- */
.earth-section {
    background: linear-gradient(135deg, #f3ede2 0%, #faf8f5 50%, #f6f0e7 100%);
    position: relative;
    overflow: hidden;
}

.earth-content-wrapper {
    max-width: 540px;
}

.earth-mountain-icon-container {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}

.earth-mountain-svg {
    width: 100%;
    height: 100%;
}

.earth-titledisplay {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.earth-subtitletext {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.earth-divider {
    position: relative;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(198, 164, 108, 0.4), var(--secondary-color), rgba(198, 164, 108, 0.4), transparent);
    width: 100%;
    max-width: 320px;
    margin: 28px 0;
}

.earth-divider::after {
    content: '♦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary-color);
    font-size: 10px;
    background: #f6f0e7;
    /* Blends with section gradient background */
    padding: 0 8px;
}

.earth-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-on-surface-variant);
    line-height: 1.8;
    margin-bottom: 20px;
}

.earth-footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary-dark);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 0px;
}

/* Earth Responsive Media Queries (Using mandatory breakpoints) */

@media (max-width: 1199.98px) {
    .earth-titledisplay {
        font-size: 60px;
    }

}

@media (max-width: 991.98px) {
    .earth-content-wrapper {
        max-width: 100%;
        padding-left: 0;
        margin-bottom: 50px;
    }

    .earth-titledisplay {
        font-size: 52px;
    }

    .earth-divider {
        max-width: 280px;
    }

    .earth-divider::after {
        background: #faf8f5;
    }

}

@media (max-width: 575.98px) {
    .earth-titledisplay {
        font-size: 44px;
    }

    .earth-divider {
        margin: 20px 0;
    }

    .earth-description {
        font-size: 15px;
    }

    .earth-footer-text {
        margin-top: 30px;
        font-size: 10px;
        letter-spacing: 0.15em;
    }

}

/* --- Fire Section Redesign Styles --- */
.fire-section {
    background: linear-gradient(135deg, #100b09 0%, #1c1310 50%, #120c0a 100%);
    position: relative;
    overflow: hidden;
}

.fire-flame-icon-container {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}

.fire-flame-svg {
    width: 100%;
    height: 100%;
}

.fire-titledisplay {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #ffffff !important;
}

.fire-subtitletext {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #C6A46C;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.fire-divider {
    position: relative;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(198, 164, 108, 0.4), #C6A46C, rgba(198, 164, 108, 0.4), transparent);
    width: 100%;
    max-width: 320px;
    margin: 28px 0;
}

.fire-divider::after {
    content: '♦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #C6A46C;
    font-size: 10px;
    background: #16100e;
    /* Blends with section dark background middle zone */
    padding: 0 8px;
}

.fire-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #D5CDC3;
    line-height: 1.8;
    margin-bottom: 20px;
}

.fire-footer-container {
    margin-top: 40px;
}

.fire-footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #C6A46C;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 8px;
}

.fire-footer-text:last-child {
    margin-bottom: 0px;
}

/* Fire Responsive Media Queries (Using mandatory breakpoints) */

@media (max-width: 1199.98px) {
    .fire-titledisplay {
        font-size: 60px;
    }

}

@media (max-width: 991.98px) {
    .fire-content-wrapper {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .fire-titledisplay {
        font-size: 52px;
    }

    .fire-divider {
        max-width: 280px;
    }

    .fire-divider::after {
        background: #1c1310;
    }

}

@media (max-width: 575.98px) {
    .fire-titledisplay {
        font-size: 44px;
    }

    .fire-divider {
        margin: 20px 0;
    }

    .fire-description {
        font-size: 15px;
    }

    .fire-footer-text {
        font-size: 10px;
        letter-spacing: 0.15em;
    }

}

/* ==========================================================================
   24. The Almanac Section Styling Overrides (No rem, px exclusively)
   ========================================================================== */
.almanac-section {
    background-color: #132219;
    position: relative;
    overflow: hidden;
}

.almanac-hero-row {
    margin-bottom: 75px;
}

.almanac-gold-tag {
    color: #C6A46C;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.almanac-hero-title {
    color: #F8F4EC;
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    line-height: 70px;
    font-weight: 400;
    margin-bottom: 25px;
}

.almanac-hero-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.almanac-divider-left {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.almanac-div-line {
    height: 1px;
    width: 80px;
    background-color: rgba(198, 164, 108, 0.35);
    display: inline-block;
}

.almanac-div-diamond {
    color: #C6A46C;
    font-size: 9px;
    line-height: 1;
}

.almanac-hero-description {
    color: rgba(248, 244, 236, 0.75);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    max-width: 520px;
    margin-bottom: 40px;
}

.almanac-meaning-block {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.almanac-meaning-block .meaning-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-style: italic;
    color: #C6A46C;
}

.almanac-meaning-block .meaning-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #F8F4EC;
}

.almanac-tradition-highlight {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    line-height: 28px;
    color: #FFF9F2;
    font-style: italic;
    display: block;
    margin-bottom: 15px;
    font-weight: 400;
}

.btn-almanac-explore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(198, 164, 108, 0.45);
    color: #F8F4EC;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 35px;
    text-decoration: none;
    transition: var(--transition-premium);
    width: fit-content;
}

.btn-almanac-explore:hover {
    border-color: #C6A46C;
    color: #132219;
    background-color: #C6A46C;
}

.btn-almanac-explore .arrow-symbol {
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-almanac-explore:hover .arrow-symbol {
    transform: translateX(6px);
}

/* Notebook Right Column Still Life styling */
.almanac-book-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    height: 480px;
}

.almanac-book-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-luxury);
}

.almanac-book-wrapper:hover .almanac-book-img {
    transform: scale(1.04);
}

.almanac-book-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #132219 0%, rgba(18, 32, 23, 0.1) 40%, rgba(18, 32, 23, 0) 100%);
    pointer-events: none;
}

/* Category cards row (4 columns) */
.almanac-cards-row {
    margin-top: 20px;
}

.almanac-pillar-card {
    position: relative;
    border: 1px solid rgba(198, 164, 108, 0.15);
    background-color: rgba(18, 32, 23, 0.4);
    height: 100%;
    transition: var(--transition-premium);
}

.almanac-pillar-card:hover {
    border-color: rgba(198, 164, 108, 0.4);
    background-color: rgba(18, 32, 23, 0.65);
    transform: translateY(-5px);
}

.almanac-card-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.almanac-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-luxury);
}

.almanac-pillar-card:hover .almanac-card-img {
    transform: scale(1.06);
}

/* Floating overlapping circular icon on bottom-left */
.almanac-card-icon-circle {
    position: absolute;
    top: 215px;
    left: 25px;
    width: 50px;
    height: 50px;
    background-color: #132219;
    border: 1px solid #C6A46C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition-premium);
}

.almanac-pillar-card:hover .almanac-card-icon-circle {
    background-color: #C6A46C;
}

.almanac-card-icon-svg {
    width: 32px;
    height: 32px;
}

.almanac-pillar-card:hover .almanac-card-icon-circle svg path,
.almanac-pillar-card:hover .almanac-card-icon-circle svg polygon,
.almanac-pillar-card:hover .almanac-card-icon-circle svg line {
    stroke: #132219 !important;
}

.almanac-card-content {
    padding: 45px 25px 35px 25px;
}

.almanac-card-tagline {
    color: #C6A46C;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.almanac-card-text {
    color: rgba(248, 244, 236, 0.75);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
    margin-bottom: 25px;
    min-height: 48px;
}

.almanac-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C6A46C;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-premium);
    width: fit-content;
}

.almanac-card-link:hover {
    color: #F8F4EC;
}

.almanac-card-link .card-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.almanac-card-link:hover .card-arrow {
    transform: translateX(4px);
}

/* Quote banner styling */
.almanac-quote-banner {
    background-color: #FAF8F5;
    text-align: center;
    border-bottom: 1px solid rgba(47, 74, 60, 0.08);
}

.almanac-blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 26px;
    line-height: 38px;
    color: #2F4A3C;
    max-width: 800px;
    margin: 0 auto 25px auto;
    font-weight: 400;
}

.almanac-quote-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.almanac-q-line {
    height: 1px;
    width: 60px;
    background-color: rgba(198, 164, 108, 0.35);
}

.almanac-q-diamond {
    color: #C6A46C;
    font-size: 9px;
    line-height: 1;
}

.almanac-quote-author {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #C6A46C;
    text-transform: uppercase;
    display: block;
}

/* Responsive styles using the exact mandatory breakpoints */

@media (max-width: 1680.98px) {
    .almanac-hero-title {
        font-size: 54px;
        line-height: 66px;
    }

}

@media (max-width: 1440.98px) {
    .almanac-hero-title {
        font-size: 50px;
        line-height: 60px;
    }

}

@media (max-width: 1199.98px) {
    .almanac-hero-title {
        font-size: 46px;
        line-height: 56px;
    }

    .almanac-book-wrapper {
        height: 400px;
    }

}

@media (max-width: 991.98px) {
    .almanac-hero-row {
        margin-bottom: 50px;
    }

    .almanac-hero-title {
        font-size: 40px;
        line-height: 48px;
    }

    .almanac-book-wrapper {
        height: 360px;
        margin-top: 40px;
    }

    .almanac-cards-row {
        row-gap: 30px;
    }

    .almanac-blockquote {
        font-size: 22px;
        line-height: 32px;
        max-width: 90%;
    }

}

@media (max-width: 767.98px) {
    .almanac-hero-title {
        font-size: 36px;
        line-height: 44px;
    }

}

@media (max-width: 575.98px) {
    .almanac-hero-title {
        font-size: 30px;
        line-height: 38px;
    }

    .almanac-hero-description {
        font-size: 15px;
        line-height: 25px;
    }

    .almanac-tradition-highlight {
        font-size: 17px;
        line-height: 25px;
        margin-bottom: 12px;
    }

    .almanac-meaning-block {
        margin-bottom: 20px;
        gap: 6px;
    }

    .almanac-meaning-block .meaning-title {
        font-size: 15px;
    }

    .almanac-meaning-block .meaning-text {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .almanac-book-wrapper {
        height: 300px;
    }

    .almanac-blockquote {
        font-size: 18px;
        line-height: 26px;
    }

}

/* ==========================================================================
   25. Gifting Page - Hero Curation Showcase Redesign Styles
   ========================================================================== */
.gifting-hero-section {
    background-color: var(--bg-surface);
    overflow: hidden;
}

.gifting-hero-row {
    margin: 0;
    display: flex;
    align-items: center;
}

.gifting-hero-text-col {
    padding-right: 40px;
}

.gifting-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--secondary-color);
    /* #C6A46C */
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.gifting-hero-tagline-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.gifting-divider-line {
    height: 1px;
    width: 30px;
    background-color: rgba(198, 164, 108, 0.35);
}

.gifting-divider-diamond {
    color: var(--secondary-color);
    font-size: 8px;
    line-height: 1;
}

.gifting-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--primary-color);
    /* #2F4A3C */
    margin-bottom: 25px;
}

.gifting-hero-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

.gifting-hero-heading-divider {
    height: 1px;
    width: 180px;
    background-color: rgba(198, 164, 108, 0.4);
    margin-bottom: 30px;
}

.gifting-hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #555c4d;
    /* Muted primary color */
    margin-bottom: 20px;
    max-width: 480px;
}

.gifting-hero-btn-wrap {
    margin-top: 20px;
}

.btn-gifting-explore {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #ffffff;
    background-color: var(--primary-color);
    /* #2F4A3C */
    padding: 16px 36px;
    border: 1px solid var(--primary-color);
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gifting-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.3, 1);
    z-index: -1;
}

.btn-gifting-explore:hover::before {
    transform: translateX(100%);
}

.btn-gifting-explore:hover {
    color: #ffffff;
    border-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(47, 74, 60, 0.15);
}

.gifting-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.btn-gifting-explore:hover .gifting-arrow {
    transform: translateX(5px);
}

.gifting-hero-img-col {
    padding-left: 40px;
}

.gifting-hero-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(47, 74, 60, 0.1);
    width: 100%;
    height: 520px;
    background-color: var(--bg-surface);
}

.gifting-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.3, 1);
}

.gifting-hero-img-wrapper:hover .gifting-hero-img {
    transform: scale(1.05);
}

.gifting-hero-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 74, 60, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

/* Responsive Gifting Hero Styles using Mandatory Breakpoints */

@media (max-width: 1440.98px) {
    .gifting-hero-title {
        font-size: 50px;
    }

}

@media (max-width: 1199.98px) {
    .gifting-hero-title {
        font-size: 44px;
    }

    .gifting-hero-description {
        font-size: 15px;
    }

    .gifting-hero-img-wrapper {
        height: 440px;
    }

}

@media (max-width: 991.98px) {
    .gifting-hero-row {
        flex-direction: column-reverse;
        row-gap: 50px;
    }

    .gifting-hero-text-col {
        padding-right: 15px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gifting-hero-img-col {
        padding-left: 15px;
        width: 100%;
    }

    .gifting-hero-tagline-divider {
        justify-content: center;
    }

    .gifting-hero-title {
        font-size: 40px;
        text-align: center;
    }

    .gifting-hero-heading-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .gifting-hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .gifting-hero-img-wrapper {
        height: 380px;
    }

}

@media (max-width: 767.98px) {
    .gifting-hero-title {
        font-size: 36px;
    }

}

@media (max-width: 575.98px) {
    .gifting-hero-title {
        font-size: 30px;
    }

    .gifting-hero-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .btn-gifting-explore {
        padding: 14px 28px;
        font-size: 11px;
    }

    .gifting-hero-img-wrapper {
        height: 280px;
    }

}

@media (max-width: 360.98px) {
    .gifting-hero-title {
        font-size: 26px;
    }

}

/* ==========================================================================
   26. The Art of Gifting Progress Timeline Section
   ========================================================================== */
.gifting-process-section {
    background-color: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

/* Header & Decorative Dividers */
.gifting-process-header {
    text-align: center;
    margin-bottom: 80px;
}

.gifting-process-header-decor-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 12px;
}

.gifting-process-header-decor-top .decor-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, rgba(198, 164, 108, 0), rgba(198, 164, 108, 0.7));
}

.gifting-process-header-decor-top .decor-line:last-child {
    background: linear-gradient(to left, rgba(198, 164, 108, 0), rgba(198, 164, 108, 0.7));
}

.gifting-process-header-decor-top .decor-diamond {
    color: var(--secondary-color);
    font-size: 8px;
    line-height: 1;
}

.gifting-process-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.gifting-process-header-decor-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.gifting-process-header-decor-sub .decor-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, rgba(198, 164, 108, 0), rgba(198, 164, 108, 0.7));
}

.gifting-process-header-decor-sub .decor-line:last-child {
    background: linear-gradient(to left, rgba(198, 164, 108, 0), rgba(198, 164, 108, 0.7));
}

.gifting-process-header-decor-sub .decor-crest {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gifting-process-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    color: var(--primary-color);
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline Core Container */
.gifting-timeline-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Desktop Horizontal Connector Line */
.gifting-timeline-line {
    position: absolute;
    top: 75px;
    /* Perfect center align for 110px outer circle (20px container padding + 55px radius) */
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: var(--secondary-color);
    z-index: 1;
    opacity: 0.8;
}

.gifting-timeline-vertical-line {
    display: none;
}

.gifting-timeline-row {
    position: relative;
    z-index: 2;
}

/* Symmetrical Steps Grid */
.gifting-timeline-col {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Double-Concentric Circles */
.gifting-step-circle-wrapper {
    position: relative;
    margin-bottom: 10px;
}

.gifting-step-circle {
    width: 110px;
    height: 110px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 0 rgba(198, 164, 108, 0);
}

.gifting-step-circle-inner {
    width: 94px;
    height: 94px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(47, 74, 60, 0.04);
}

.gifting-step-icon-svg {
    color: var(--primary-color);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Downward Vertical Connector */
.gifting-step-vertical-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 40px;
    margin: 15px auto;
}

.gifting-step-vertical-connector .connector-dot-top,
.gifting-step-vertical-connector .connector-dot-bottom {
    width: 4px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.gifting-step-vertical-connector .connector-line-vert {
    width: 1px;
    flex-grow: 1;
    background-color: var(--secondary-color);
    opacity: 0.6;
}

/* Typography & Sizing Details */
.gifting-step-number {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.gifting-step-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.gifting-step-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--primary-color);
    opacity: 0.8;
    max-width: 200px;
    margin: 0 auto;
}

/* Autonomous Premium Hover Effects */
.gifting-step-circle:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(47, 74, 60, 0.08);
}

.gifting-step-circle:hover .gifting-step-circle-inner {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 35px rgba(198, 164, 108, 0.3);
}

.gifting-step-circle:hover .gifting-step-icon-svg {
    color: #ffffff !important;
}

.gifting-step-circle:hover .gifting-step-icon-svg text {
    fill: #ffffff !important;
}

.gifting-step-circle:hover .gifting-step-icon-svg circle {
    fill: var(--primary-color) !important;
    stroke: var(--primary-color) !important;
}

/* --- Responsive Timeline Breakpoints --- */

@media (max-width: 1680.98px) {
    .gifting-timeline-line {
        left: 10%;
        right: 10%;
    }

}

@media (max-width: 1440.98px) {
    .gifting-process-main-title {
        font-size: 30px;
    }

    .gifting-step-title {
        font-size: 22px;
    }

    .gifting-step-desc {
        font-size: 13.5px;
        max-width: 180px;
    }

}

@media (max-width: 1399.98px) {
    .gifting-timeline-line {
        left: 9%;
        right: 9%;
    }

}

@media (max-width: 1280.98px) {
    .gifting-timeline-line {
        left: 8%;
        right: 8%;
    }

    .gifting-step-circle {
        width: 100px;
        height: 100px;
    }

    .gifting-step-circle-inner {
        width: 84px;
        height: 84px;
    }

    .gifting-timeline-line {
        top: 70px;
        /* 20px padding + 50px (half of 100px circle) */
    }

    .gifting-step-icon-svg {
        width: 38px;
        height: 38px;
    }

}

@media (max-width: 1199.98px) {
    .gifting-process-header {
        margin-bottom: 60px;
    }

    .gifting-process-main-title {
        font-size: 28px;
    }

    .gifting-process-subtitle {
        font-size: 16px;
    }

    .gifting-step-title {
        font-size: 20px;
    }

    .gifting-step-desc {
        font-size: 13px;
        max-width: 160px;
    }

}

@media (max-width: 991.98px) {
    .gifting-timeline-container {
        padding: 10px 15px;
    }

    .gifting-timeline-line {
        display: none;
    }

    .gifting-timeline-vertical-line {
        display: block;
        position: absolute;
        top: 10px;
        bottom: 50px;
        left: 70px;
        width: 1px;
        background-color: var(--secondary-color);
        z-index: 1;
        opacity: 0.8;
    }

    .gifting-timeline-row {
        flex-direction: column;
        row-gap: 50px;
    }

    .gifting-timeline-col {
        position: relative;
        padding-left: 140px;
        text-align: left;
        min-height: 110px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .gifting-step-circle-wrapper {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        margin-bottom: 0;
    }

    .gifting-step-circle {
        width: 110px;
        height: 110px;
    }

    .gifting-step-circle-inner {
        width: 94px;
        height: 94px;
    }

    /* Mobile Scale Hover State in vertical layout */
    .gifting-step-circle:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(47, 74, 60, 0.08);
    }

    .gifting-step-vertical-connector {
        display: none;
    }

    .gifting-step-number {
        text-align: left;
        margin-bottom: 4px;
        font-size: 16px;
    }

    .gifting-step-title {
        text-align: left;
        font-size: 20px;
        margin-bottom: 6px;
    }

    .gifting-step-desc {
        text-align: left;
        margin: 0;
        max-width: 100%;
        font-size: 14px;
    }

}

@media (max-width: 767.98px) {
    .gifting-process-main-title {
        font-size: 24px;
    }

    .gifting-process-subtitle {
        font-size: 15px;
    }

    .gifting-timeline-row {
        row-gap: 40px;
    }

}

@media (max-width: 575.98px) {
    .gifting-process-header {
        margin-bottom: 40px;
    }

    .gifting-process-main-title {
        font-size: 20px;
    }

    .gifting-process-subtitle {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 15px;
    }

    /* Compact roadmap sizes for mobile viewports */
    .gifting-timeline-vertical-line {
        left: 55px;
    }

    .gifting-timeline-col {
        padding-left: 105px;
        min-height: 80px;
    }

    .gifting-step-circle-wrapper {
        left: 15px;
    }

    .gifting-step-circle {
        width: 80px;
        height: 80px;
    }

    .gifting-step-circle-inner {
        width: 68px;
        height: 68px;
    }

    .gifting-step-icon-svg {
        width: 32px;
        height: 32px;
    }

    .gifting-step-number {
        font-size: 15px;
    }

    .gifting-step-title {
        font-size: 18px;
    }

    .gifting-step-desc {
        font-size: 13px;
    }

}

@media (max-width: 480.98px) {
    .gifting-process-main-title {
        font-size: 19px;
    }

    .gifting-timeline-row {
        row-gap: 35px;
    }

}

@media (max-width: 360.98px) {
    .gifting-process-main-title {
        font-size: 18px;
    }

    .gifting-timeline-vertical-line {
        left: 50px;
    }

    .gifting-timeline-container {
        padding: 10px 10px;
    }

    .gifting-timeline-col {
        padding-left: 95px;
    }

    .gifting-step-circle-wrapper {
        left: 10px;
    }

    .gifting-step-title {
        font-size: 16px;
    }

    .gifting-step-desc {
        font-size: 12px;
    }

}

/* ==========================================================================
   27. Gifting - The Signature Details Section
   ========================================================================== */
.gifting-signature-section {
    background-color: var(--bg-container-low);
    overflow: hidden;
}

.gifting-signature-row {
    align-items: center;
    row-gap: 50px;
}

/* Left Column - Editorial Details */
.gifting-signature-text-col {
    padding-right: 60px;
}

.gifting-signature-header-block {
    margin-bottom: 40px;
}

.gifting-signature-crest {
    display: inline-block;
    margin-bottom: 15px;
}

.gifting-signature-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0 0 16px 0;
}

/* Line-Dot-Line Gold Divider */
.gifting-signature-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.gifting-signature-divider-line {
    flex-grow: 1;
    max-width: 60px;
    height: 1px;
    background-color: var(--secondary-color);
    opacity: 0.7;
}

.gifting-signature-divider-dot {
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.gifting-signature-desc-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: var(--secondary-dark);
    margin-bottom: 16px;
}

.gifting-signature-lead-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-on-surface-variant);
    margin: 0;
}

/* Symmetrical Feature List */
.gifting-signature-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gifting-signature-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Concentric white/gold circular wrapper */
.gifting-signature-icon-outer {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    background-color: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-premium);
    box-shadow: 0 4px 15px rgba(198, 164, 108, 0.05);
}

.gifting-signature-icon-inner {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(198, 164, 108, 0.3);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: var(--transition-premium);
}

.gifting-signature-icon-svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    transition: var(--transition-premium);
}

.gifting-signature-feature-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gifting-signature-feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0;
    transition: var(--transition-premium);
}

.gifting-signature-feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-on-surface-variant);
    margin: 0;
}

/* Premium Hover Transitions & Effects */
.gifting-signature-feature-item:hover {
    transform: translateX(6px);
}

.gifting-signature-feature-item:hover .gifting-signature-icon-outer {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(198, 164, 108, 0.2);
}

.gifting-signature-feature-item:hover .gifting-signature-icon-inner {
    border-color: rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.gifting-signature-feature-item:hover .gifting-signature-icon-svg {
    color: #ffffff;
}

.gifting-signature-feature-item:hover .gifting-signature-feature-title {
    color: var(--secondary-dark);
}

/* Right Column - Visual Showcase Card */
.gifting-signature-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gifting-signature-image-card-wrapper {
    width: 100%;
    max-width: 540px;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(47, 74, 60, 0.08);
    margin: 0 auto;
}

.gifting-signature-image-zoom-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.gifting-signature-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gifting-signature-image-card-wrapper:hover .gifting-signature-showcase-img {
    transform: scale(1.04);
}

/* ==========================================================================
   28. Responsive Overrides for The Signature Details
   ========================================================================== */

@media (max-width: 1440.98px) {
    .gifting-signature-main-title {
        font-size: 30px;
    }

    .gifting-signature-desc-italic {
        font-size: 17.5px;
    }

    .gifting-signature-feature-title {
        font-size: 20px;
    }

    .gifting-signature-feature-text {
        font-size: 14.5px;
    }

}

@media (max-width: 1199.98px) {
    .gifting-signature-text-col {
        padding-right: 30px;
    }

    .gifting-signature-main-title {
        font-size: 28px;
    }

    .gifting-signature-desc-italic {
        font-size: 16px;
    }

    .gifting-signature-feature-title {
        font-size: 18px;
    }

    .gifting-signature-feature-text {
        font-size: 14px;
    }

}

@media (max-width: 991.98px) {
    .gifting-signature-section {
        padding: 80px 0;
    }

    .gifting-signature-text-col {
        padding-right: 15px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gifting-signature-divider {
        justify-content: center;
        width: 100%;
    }

    .gifting-signature-features-list {
        align-items: center;
        max-width: 550px;
        width: 100%;
    }

    .gifting-signature-feature-item {
        width: 100%;
        text-align: left;
    }

    .gifting-signature-feature-item:hover {
        transform: translateY(-4px);
    }

    .gifting-signature-main-title {
        font-size: 28px;
    }

    .gifting-signature-desc-italic {
        font-size: 16px;
    }

    .gifting-signature-feature-title {
        font-size: 18px;
    }

    .gifting-signature-feature-text {
        font-size: 14px;
    }

    .gifting-signature-image-card-wrapper {
        max-width: 480px;
        margin: 40px auto 0;
    }

}

@media (max-width: 767.98px) {
    .gifting-signature-main-title {
        font-size: 24px;
    }

    .gifting-signature-desc-italic {
        font-size: 15px;
    }

}

@media (max-width: 575.98px) {
    .gifting-signature-section {
        padding: 60px 0;
    }

    .gifting-signature-main-title {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .gifting-signature-desc-italic {
        font-size: 14px;
    }

    .gifting-signature-lead-desc {
        font-size: 14.5px;
    }

    .gifting-signature-icon-outer {
        width: 64px;
        height: 64px;
    }

    .gifting-signature-icon-inner {
        width: 52px;
        height: 52px;
    }

    .gifting-signature-icon-svg {
        width: 26px;
        height: 26px;
    }

    .gifting-signature-feature-title {
        font-size: 16px;
    }

    .gifting-signature-feature-text {
        font-size: 13px;
    }

}

@media (max-width: 480.98px) {
    .gifting-signature-main-title {
        font-size: 19px;
    }

}

@media (max-width: 360.98px) {
    .gifting-signature-main-title {
        font-size: 18px;
    }

    .gifting-signature-icon-outer {
        width: 56px;
        height: 56px;
    }

    .gifting-signature-icon-inner {
        width: 44px;
        height: 44px;
    }

    .gifting-signature-icon-svg {
        width: 22px;
        height: 22px;
    }

}

/* ==========================================================================
   29. Personal Gifting Concierge Section Styles
   ========================================================================== */
.gifting-concierge-card {
    background-color: #132219;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gifting-concierge-card:hover {
    box-shadow: 0 20px 45px rgba(198, 164, 108, 0.15);
}

/* Overlay Decorative Frame */
.gifting-concierge-frame {
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 16px;
    right: 16px;
    border: 1px solid #C6A46C;
    z-index: 10;
    pointer-events: none;
}

/* Center Fleurons */
.frame-fleuron {
    position: absolute;
    background-color: #132219;
    color: #C6A46C;
    z-index: 11;
}

.fleuron-top {
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding-left: 15px;
    padding-right: 15px;
}

.fleuron-bottom {
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%) scaleY(-1);
    padding-left: 15px;
    padding-right: 15px;
}

.fleuron-svg {
    width: 24px;
    height: 24px;
    display: block;
}

/* Corner Brackets */
.frame-corner {
    position: absolute;
    color: #C6A46C;
    width: 40px;
    height: 40px;
    z-index: 11;
}

.corner-tl {
    top: -1px;
    left: -1px;
}

.corner-tr {
    top: -1px;
    right: -1px;
}

.corner-bl {
    bottom: -1px;
    left: -1px;
}

.corner-br {
    bottom: -1px;
    right: -1px;
}

.corner-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Row & Column Configurations */
.gifting-concierge-row {
    margin: 0;
}

.gifting-concierge-text-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    z-index: 2;
}

.gifting-concierge-content {
    width: 100%;
    max-width: 480px;
    text-align: center;
}

/* Typography & Decorative Crests */
.gifting-concierge-crest {
    color: #C6A46C;
    margin-bottom: 25px;
}

.gifting-concierge-crest .gold-crest-svg {
    width: 24px;
    height: 24px;
    display: inline-block;
}

.gifting-concierge-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 4px;
    color: #C6A46C;
    margin-bottom: 25px;
}

.gifting-concierge-desc {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    color: #eae5db;
    margin-bottom: 30px;
}

.desktop-only-br {
    display: inline;
}

/* Divider Setup */
.gifting-concierge-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.gifting-concierge-divider-line {
    height: 1px;
    width: 50px;
    background-color: rgba(198, 164, 108, 0.4);
}

.gifting-concierge-divider-crest {
    width: 14px;
    height: 14px;
    color: #C6A46C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gifting-concierge-divider-crest svg {
    width: 100%;
    height: 100%;
}

/* Contacts Layout */
.gifting-concierge-contacts {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 35px;
}

.gifting-concierge-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #eae5db;
    font-size: 14px;
    letter-spacing: 1px;
}

.gifting-concierge-contact-icon {
    color: #C6A46C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gifting-concierge-contact-icon svg {
    width: 16px;
    height: 16px;
}

.gifting-concierge-contact-link {
    color: #eae5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gifting-concierge-contact-link:hover {
    color: #C6A46C;
}

/* Button CTA Setup */
.gifting-concierge-btn {
    display: inline-block;
    padding: 16px 36px;
    border: 1px solid #C6A46C;
    color: #C6A46C;
    background-color: transparent;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.gifting-concierge-btn:hover {
    background-color: #C6A46C;
    color: #132219;
}

.gifting-concierge-btn:hover .btn-arrow {
    transform: translateX(6px);
}

.gifting-concierge-btn .btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

/* Image Configurations */
.gifting-concierge-image-col {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.gifting-concierge-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5;
    position: relative;
}

.gifting-concierge-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gifting-concierge-img:hover {
    transform: scale(1.03);
}

/* ==========================================================================
   30. Responsive Scaling and Breakpoints (Strict Override Rules)
   ========================================================================== */

@media (max-width: 1440.98px) {
    .gifting-concierge-title {
        font-size: 30px;
    }

    .gifting-concierge-text-col {
        padding: 50px;
    }

}

@media (max-width: 1399.98px) {
    .gifting-concierge-title {
        font-size: 28px;
    }

    .gifting-concierge-text-col {
        padding: 45px;
    }

}

@media (max-width: 1280.98px) {
    .gifting-concierge-title {
        font-size: 26px;
    }

}

@media (max-width: 1199.98px) {
    .gifting-concierge-title {
        font-size: 24px;
    }

    .gifting-concierge-text-col {
        padding: 40px;
    }

}

@media (max-width: 991.98px) {
    .gifting-concierge-row {
        min-height: auto;
    }

    .gifting-concierge-text-col {
        padding: 60px 40px;
        width: 100%;
    }

    .desktop-only-br {
        display: none;
    }

    .gifting-concierge-image-col {
        width: 100%;
    }

    /* Gaps covered properly with background colors */
    .fleuron-bottom {
        background-color: transparent;
        bottom: auto;
        top: calc(100% - 13px);
    }

}

@media (max-width: 767.98px) {
    .gifting-concierge-title {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .gifting-concierge-desc {
        font-size: 14px;
        line-height: 1.7;
    }

    .gifting-concierge-text-col {
        padding: 50px 30px;
    }

}

@media (max-width: 575.98px) {
    .gifting-concierge-frame {
        top: 10px;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }

    .gifting-concierge-text-col {
        padding: 40px 20px;
    }

    .gifting-concierge-title {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .gifting-concierge-btn {
        padding: 14px 28px;
        font-size: 11px;
    }

    .frame-corner {
        width: 30px;
        height: 30px;
    }

    .fleuron-top,
    .fleuron-bottom {
        padding-left: 10px;
        padding-right: 10px;
    }

    .fleuron-svg {
        width: 18px;
        height: 18px;
    }

}

@media (max-width: 480.98px) {
    .gifting-concierge-title {
        font-size: 18px;
    }

    .gifting-concierge-desc {
        font-size: 13px;
    }

}

@media (max-width: 360.98px) {
    .gifting-concierge-title {
        font-size: 17px;
    }

    .gifting-concierge-text-col {
        padding: 35px 15px;
    }

}

/* ==========================================================================
   31. Appointment / Consultation Section Styles (Custom Luxury Design)
   ========================================================================== */
.appointment-hero-section {
    background-color: var(--bg-surface);
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.appointment-hero-row {
    margin: 0px;
    display: flex;
    align-items: stretch;
    --bs-gutter-x: 0px;
    --bs-gutter-y: 0px;
}

/* Left Brand/Text Column */
.appointment-hero-text-col {
    background-color: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 80px;
    z-index: 2;
    position: relative;
}

.appointment-hero-text-wrapper {
    width: 100%;
    max-width: 480px;
    text-align: center;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.appointment-hero-crest {
    color: var(--secondary-color);
    display: inline-block;
    margin-bottom: 24px;
}

.appointment-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0px 0px 12px 0px;
    text-align: center;
}

.appointment-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--secondary-color);
    display: block;
    margin: 0px 0px 24px 0px;
    text-align: center;
}

/* Gold line-dot-line divider */
.appointment-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.appointment-hero-divider-line {
    height: 1px;
    width: 40px;
    background-color: var(--secondary-color);
    opacity: 0.7;
}

.appointment-hero-divider-diamond {
    font-size: 10px;
    color: var(--secondary-color);
    display: inline-block;
}

.appointment-hero-description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-on-surface-variant);
    text-align: center;
    margin: 0px;
}

/* Right Visual Column */
.appointment-hero-visual-col {
    padding: 0px;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-surface);
}

.appointment-hero-image-wrapper {
    width: 100%;
    min-height: 550px;
    max-height: 550px;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-surface);
}

.appointment-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 35%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 35%);
}

.appointment-hero-image-wrapper:hover .appointment-hero-image {
    transform: scale(1.04);
}

/* ==========================================================================
   32. Appointment Symmetrical Grid: Studio Hours vs Booking Card
   ========================================================================== */
.appointment-details-section {
    background-color: var(--bg-surface);
    position: relative;
}

.appointment-details-container {
    width: 100%;
    max-width: 1320px;
    margin: 0px auto;
    padding: 0px 40px;
}

.appointment-details-row {
    display: flex;
    flex-wrap: wrap;
    --bs-gutter-x: 0px;
    --bs-gutter-y: 0px;
}

/* Left Card: Studio Hours */
.appointment-hours-card {
    background-color: #F3EEE5;
    /* Warm cream */
    border: 1px solid rgba(198, 164, 108, 0.25);
    border-right: none;
    border-radius: 0px;
    padding: 60px 48px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.appointment-hours-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.2px solid var(--secondary-color);
    background-color: transparent;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.appointment-hours-card:hover .appointment-hours-icon-wrapper {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.appointment-hours-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0px 0px 16px 0px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.appointment-hours-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin: 20px 0px;
}

.appointment-hours-divider-line {
    height: 1px;
    width: 40px;
    background-color: rgba(198, 164, 108, 0.4);
}

.appointment-hours-divider-dot {
    width: 5px;
    height: 5px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.appointment-hours-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.appointment-hours-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-on-surface-variant);
    border-bottom: 1px solid rgba(198, 164, 108, 0.15);
    padding-bottom: 12px;
    margin-bottom: 4px;
}

.appointment-hours-item span:first-child {
    font-weight: 500;
    color: var(--text-on-surface);
}

.appointment-hours-item:last-child {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.appointment-hours-note {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-on-surface-variant);
    text-align: center;
    margin-top: 16px;
    margin-bottom: 0px;
}

/* Right Card: Booking Form */
.appointment-booking-card {
    background-color: #FAF8F5;
    /* Off-white */
    border: 1px solid rgba(198, 164, 108, 0.25);
    border-radius: 0px;
    padding: 60px 48px;
    box-shadow: none;
    height: 100%;
    transition: all 0.4s ease;
}

.appointment-booking-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0px 0px 16px 0px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.appointment-booking-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin: 20px 0px;
}

.appointment-booking-divider-line {
    height: 1px;
    width: 40px;
    background-color: rgba(198, 164, 108, 0.4);
}

.appointment-booking-divider-dot {
    width: 5px;
    height: 5px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.appointment-booking-intro {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-on-surface-variant);
    text-align: center;
    margin-bottom: 36px;
}

.appointment-booking-form {
    width: 100%;
}

.appointment-form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.appointment-form-group {
    flex: 1;
    position: relative;
}

.appointment-form-group.full-width {
    width: 100%;
    margin-bottom: 24px;
}

.appointment-form-input,
.appointment-form-textarea {
    width: 100%;
    padding: 16px 20px;
    background-color: #ffffff;
    border: 1px solid rgba(198, 164, 108, 0.25);
    border-radius: 0px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-on-surface);
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: none;
}

.appointment-form-input::placeholder,
.appointment-form-textarea::placeholder {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: rgba(28, 28, 23, 0.4);
    text-transform: uppercase;
}

.appointment-form-input:focus,
.appointment-form-textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
    outline: none;
    background-color: #ffffff;
}

.appointment-form-textarea {
    height: 140px;
    resize: none;
}

.appointment-submit-btn {
    display: block;
    width: 100%;
    padding: 18px 36px;
    background-color: var(--primary-color);
    color: #ffffff !important;
    border: 1px solid var(--primary-color);
    border-radius: 0px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.appointment-submit-btn:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: none;
    box-shadow: none;
}

.appointment-submit-btn:active {
    transform: translateY(0px);
}

/* ==========================================================================
   33. Responsive Overrides for Appointment & Consultation Layouts (Mandatory Breakpoints)
   ========================================================================== */

@media (max-width: 1680.98px) {
    .appointment-hero-title {
        font-size: 50px;
    }

}

@media (max-width: 1440.98px) {
    .appointment-hero-title {
        font-size: 46px;
    }

    .appointment-hours-card,
    .appointment-booking-card {
        padding: 50px 40px;
    }

}

@media (max-width: 1399.98px) {
    .appointment-hero-title {
        font-size: 42px;
    }

}

@media (max-width: 1280.98px) {
    .appointment-hero-text-col {
        padding: 80px 50px;
    }

    .appointment-hero-image-wrapper {
        min-height: 560px;
    }

    .appointment-hours-card,
    .appointment-booking-card {
        padding: 45px 32px;
    }

}

@media (max-width: 1199.98px) {
    .appointment-hero-title {
        font-size: 38px;
    }

    .appointment-hero-text-col {
        padding: 60px 40px;
    }

    .appointment-hero-text-wrapper {
        max-width: 440px;
    }

    .appointment-hero-image-wrapper {
        min-height: 500px;
    }

    .appointment-details-container {
        padding: 0px 30px;
    }

}

@media (max-width: 991.98px) {
    .appointment-hero-title {
        font-size: 36px;
    }

    .appointment-hero-image-wrapper {
        min-height: 460px;
    }

    .appointment-details-container {
        padding: 0px 24px;
    }

    .appointment-hours-col {
        margin-bottom: 32px;
    }

    .appointment-hours-card,
    .appointment-booking-card {
        padding: 50px 40px;
    }

}

@media (max-width: 767.98px) {
    .appointment-hero-row {
        flex-direction: column;
    }

    .appointment-hero-text-col {
        width: 100%;
        padding: 60px 24px;
        text-align: center;
    }

    .appointment-hero-text-wrapper {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .appointment-hero-title {
        font-size: 34px;
    }

    .appointment-hero-divider {
        justify-content: center;
    }

    .appointment-hero-visual-col {
        width: 100%;
    }

    .appointment-hero-image-wrapper {
        min-height: 350px;
    }

    .appointment-hero-image {
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 25%);
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 25%);
    }

    .appointment-form-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .appointment-form-group.full-width {
        margin-bottom: 20px;
    }

    .appointment-hours-col {
        margin-bottom: 0px;
    }

    .appointment-hours-card {
        border-right: 1px solid rgba(198, 164, 108, 0.25);
        border-bottom: none;
    }

}

@media (max-width: 575.98px) {
    .appointment-hero-title {
        font-size: 32px;
    }

    .appointment-hero-description {
        font-size: 16px;
    }

    .appointment-hours-card,
    .appointment-booking-card {
        padding: 40px 24px;
    }

    .appointment-hours-title,
    .appointment-booking-title {
        font-size: 24px;
    }

}

@media (max-width: 480.98px) {
    .appointment-hero-title {
        font-size: 28px;
    }

    .appointment-hero-image-wrapper {
        min-height: 280px;
    }

    .appointment-hours-card,
    .appointment-booking-card {
        padding: 30px 16px;
    }

    .appointment-hours-title,
    .appointment-booking-title {
        font-size: 22px;
    }

    .appointment-form-input,
    .appointment-form-textarea {
        padding: 14px 16px;
    }

    .appointment-submit-btn {
        padding: 16px 24px;
        font-size: 12px;
    }

}

@media (max-width: 360.98px) {
    .appointment-hero-title {
        font-size: 24px;
    }

    .appointment-hero-image-wrapper {
        min-height: 240px;
    }

    .appointment-hours-list {
        gap: 16px;
    }

    .appointment-hours-item {
        font-size: 14px;
    }

}

/* ==========================================================================
   34. Refined Account Drawer Luxury Design Overrides
   ========================================================================== */
#accountDrawerTabContent .tab-pane {
    display: none !important;
}

#accountDrawerTabContent .tab-pane.active {
    display: block !important;
}

.offcanvas.account-drawer-new .btn-close {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.offcanvas.account-drawer-new .btn-close:hover {
    opacity: 1;
}

.account-drawer-brand {
    text-align: center;
}

.account-monogram-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.account-circle-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--primary-color);
    text-transform: uppercase;
    text-align: center;
}

.account-circle-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: rgba(28, 28, 23, 0.7);
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
}

.account-drawer-divider {
    border: none;
    border-top: 1px solid rgba(28, 28, 23, 0.25);
    opacity: 1;
    margin: 20px 0;
}

.drawer-nav-tabs.d-none {
    display: none !important;
}

.drawer-nav-tabs {
    border-bottom: none;
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 25px;
    padding: 0;
}

.drawer-nav-tabs .nav-item {
    list-style: none;
}

.drawer-nav-tabs .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: rgba(28, 28, 23, 0.4);
    background: transparent;
    border: none;
    border-bottom: 1.5px solid transparent;
    padding: 0 4px 6px 4px;
    text-transform: uppercase;
    opacity: 1;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.drawer-nav-tabs .nav-link:hover {
    color: var(--primary-color);
}

.drawer-nav-tabs .nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--primary-color);
}

.drawer-form-container {
    padding-top: 0;
    text-align: left;
}

.drawer-form-group {
    margin-bottom: 20px;
    position: relative;
    text-align: left;
}

.drawer-form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(28, 28, 23, 0.7);
    margin-bottom: 8px;
}

.drawer-form-input {
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(28, 28, 23, 0.3);
    border-radius: 0;
    box-shadow: none;
    padding: 12px 14px;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    height: 44px;
}

.drawer-form-input::placeholder {
    color: rgba(28, 28, 23, 0.25);
    font-size: 10.5px;
    letter-spacing: 0.05em;
}

.drawer-form-input:focus {
    border-color: rgba(28, 28, 23, 0.8);
    outline: none;
    background-color: transparent;
}

.drawer-submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: #FAF8F5;
    border: 1px solid var(--primary-color);
    border-radius: 0;
    box-shadow: none;
    padding: 14px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
}

.drawer-submit-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.drawer-form-footer {
    text-align: center;
    margin-top: 24px;
}

.drawer-forgot-link {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition-micro);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}

.drawer-forgot-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-forgot-link:hover {
    color: var(--secondary-dark);
}

.drawer-forgot-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    background-color: var(--secondary-dark);
}

.drawer-privacy-notice {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: rgba(28, 28, 23, 0.6);
    margin-top: 16px;
    text-align: center;
}

.drawer-privacy-notice a {
    color: var(--primary-color);
    text-decoration: none;
}

.drawer-privacy-notice a:hover {
    text-decoration: underline;
}

.drawer-form-row {
    margin-left: -6px;
    margin-right: -6px;
    display: flex;
    flex-wrap: wrap;
}

.drawer-form-col {
    padding-left: 6px;
    padding-right: 6px;
    flex: 0 0 50%;
    max-width: 50%;
}

.drawer-register-privileges {
    margin-top: 36px;
    text-align: left;
}

.privileges-title {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.privileges-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privileges-list li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.privileges-list li .bullet {
    font-size: 10px;
    color: var(--primary-color);
}

.account-drawer-assistance {
    margin-top: auto;
    text-align: center;
}

.assistance-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 12px;
    color: rgba(28, 28, 23, 0.7);
    letter-spacing: 0.02em;
}

.assistance-link {
    font-family: 'Inter', sans-serif;
    display: block;
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease;
}

.assistance-link:hover {
    opacity: 0.7;
}

.assistance-action {
    margin-top: 24px;
}

.account-action-btn {
    background-color: var(--primary-color);
    color: white !important;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: 1px solid var(--primary-color);
    padding: 14px 30px;
    border-radius: 0px;
    transition: var(--transition-premium);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1;
    width: 100%;
    text-decoration: none;
}

.account-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: -1;
    transform: translateY(101%);
    transition: var(--transition-premium);
}

.account-action-btn:hover {
    color: var(--primary-color) !important;
    border-color: var(--secondary-color);
    opacity: 1;
}

.account-action-btn:hover::before {
    transform: translateY(0);
}

.account-action-btn:active {
    transform: scale(0.98);
}

.offcanvas.luxury-offcanvas .offcanvas-header {
    border-bottom: none;
    padding-bottom: 0;
    display: flex;
    justify-content: flex-end;
}

/* --- Reinforce Native Offcanvas Scrolling with Flex Containment --- */
.account-drawer-body {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
    /* Prevents nested flex expansion on Safari/Chrome */
}

#mobileMenuDrawer .offcanvas-body {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
}

#cartList {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
}

/* --- Reset Password (Forgot Password) Pane Refinements --- */
#drawer-forgot-pane {
    padding-top: 10px;
}

.drawer-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    color: var(--primary-color);
    text-transform: none;
    /* Matches 'Reset Password' Title Case */
    text-align: left;
}

.drawer-form-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: rgba(28, 28, 23, 0.7);
    margin-bottom: 24px;
    text-align: left;
}

.account-drawer-privileges {
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: left;
}

/* ==========================================================================
   35. Shopping Bag Empty State Redesign (Luxury Flow)
   ========================================================================== */
#cartDrawer.is-empty .offcanvas-body {
    padding: 0 !important;
}

#cartDrawer.is-empty .cart-summary {
    display: none !important;
}

#cartDrawer.is-empty .offcanvas-header {
    justify-content: center !important;
    position: relative;
    padding-top: 40px;
    padding-bottom: 20px;
}

#cartDrawer.is-empty .offcanvas-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    color: var(--primary-color);
}

#cartDrawer.is-empty .offcanvas-header .btn-close {
    position: absolute;
    right: 30px;
    top: 40px;
}

.cart-empty-flow {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cart-empty-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    animation: luxuryFadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.cart-empty-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cart-empty-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    color: var(--text-on-surface-variant);
    margin-bottom: 30px;
}

.cart-empty-btn {
    margin-top: 12px;
    padding: 12px 28px !important;
    font-size: 12px !important;
    letter-spacing: 0.15em !important;
}

.cart-flow-divider {
    border-top: 1px solid var(--outline-variant);
    margin: 0;
    width: 100%;
}

.cart-includes-section {
    padding: 40px 30px;
    animation: luxuryFadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.15s;
    opacity: 0;
}

.cart-includes-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.cart-includes-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.cart-includes-list li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: var(--text-on-surface-variant);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.cart-includes-list li:last-child {
    margin-bottom: 0;
}

.cart-includes-list li .checkmark {
    color: var(--secondary-color);
    margin-right: 12px;
    font-size: 14px;
}

.cart-empty-footer {
    padding: 40px 30px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: luxuryFadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.cart-empty-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subtotal-label {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
}

.subtotal-value {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
}

.cart-explore-link {
    width: 100%;
    text-align: center;
    padding: 12px 28px !important;
    font-size: 12px !important;
    letter-spacing: 0.15em !important;
}

/* --- Premium fade-in and slide-up animation for empty cart content --- */

/* --- appointment.html Styles --- */
.appointment-feedback-alert {
    display: none;
    margin-bottom: 24px;
    padding: 16px 20px;
    border: 1px solid transparent;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.appointment-feedback-alert.alert-success {
    background-color: #fcfbf7;
    border-color: rgba(40, 167, 69, 0.3);
    color: #1b5e20;
}
.appointment-feedback-alert.alert-danger {
    background-color: #fdfaf7;
    border-color: #c6a46c;
    color: #c6a46c;
}
.appointment-feedback-alert i {
    font-size: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

/* CAPTCHA Row Styling */
.captcha-row {
    align-items: center;
}
.captcha-box-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}
.captcha-question-box {
    flex-grow: 1;
    padding: 15px 20px;
    background-color: #fdfcf7;
    border: 1px solid rgba(198, 164, 108, 0.25);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    text-align: center;
    text-transform: uppercase;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.01);
}
.btn-refresh-captcha {
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 8px;
    font-size: 20px;
    transition: color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-refresh-captcha:hover {
    color: var(--primary-color);
    transform: rotate(45deg);
}
.btn-refresh-captcha:focus {
    outline: none;
}

/* Validation High-Visibility Red Borders */
.appointment-form-input.is-invalid,
.appointment-form-textarea.is-invalid {
    border-color: #c6a46c !important;
    background-color: #fffdfd !important;
}
.appointment-form-input.is-invalid:focus,
.appointment-form-textarea.is-invalid:focus {
    border-color: #c6a46c !important;
    box-shadow: 0 0 0 3px rgba(183, 28, 28, 0.08) !important;
}

/* Premium Date Input UI Integration */
.date-input-field {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c6a46c'%3E%3Cpath d='M17 3h4a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h4V1h2v2h6V1h2v2zm3 8H4v10h16V11zm-2-6H6v4h12V5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 18px;
    padding-right: 50px !important;
}
.appointment-form-input[type="date"] {
    min-height: 53.5px;
    box-sizing: border-box;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}
.appointment-form-input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    -webkit-appearance: none;
}

@keyframes luxuryFadeUp {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}

/* --- Responsive Adaptations --- */

@media (max-width: 575.98px) {
    .cart-empty-hero {
        padding: 30px 20px;
    }

    .cart-includes-section {
        padding: 30px 20px;
    }

    .cart-empty-footer {
        padding: 30px 20px;
    }

    .cart-empty-title {
        font-size: 20px;
    }

    .cart-empty-desc {
        font-size: 13px;
    }

    .luxury-offcanvas {
        max-width: 100% !important;
        width: 100% !important;
    }

}

/* ==========================================================================
   36. Vanya Page Styles
   ========================================================================== */
.vanya-hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    overflow: hidden;
    background-color: #0b0f0a;
}

.vanya-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 12s ease-out;
}

.vanya-hero-section:hover .vanya-hero-bg {
    transform: scale(1);
}

.vanya-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 15, 10, 0.4) 0%, rgba(11, 15, 10, 0.85) 100%);
    z-index: 2;
}

.vanya-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 30px;
    text-align: center;
}

.vanya-badge {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--secondary-color);
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 600;
}

.vanya-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 6vw, 76px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #FFF9F2;
}

.vanya-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 249, 242, 0.8);
    max-width: 650px;
    margin: 0 auto 35px auto;
}

/* Scroll indicator */
.vanya-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s;
    cursor: pointer;
}

.vanya-scroll-indicator:hover {
    opacity: 1;
}

.vanya-scroll-text {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.vanya-scroll-line {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.vanya-scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--secondary-color);
    animation: vanya-scroll-down 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes vanya-scroll-down {
    0% {
        top: -20px;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 100%;
    }

}

/* Philosophy Intro */
.vanya-philosophy-section {
    padding: 50px 0;
    background-color: var(--bg-container-low);
}

.vanya-editorial-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.vanya-editorial-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-on-surface-variant);
    margin-bottom: 25px;
    font-weight: 300;
}

.vanya-editorial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    line-height: 1.5;
    color: var(--secondary-dark);
    border-left: 2px solid var(--secondary-color);
    padding-left: 30px;
    margin: 40px 0;
}

/* Stat Metrics */
.vanya-metrics-container {
    border-top: 1px solid var(--outline-variant);
    padding-top: 60px;
    margin-top: 60px;
}

.vanya-stat-card {
    text-align: center;
    padding: 0;
    transition: transform 0.4s var(--ease-luxury);
}

.vanya-stat-card:hover {
    transform: translateY(-5px);
}

.vanya-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.vanya-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary-dark);
    font-weight: 500;
}

/* Ecosystem Showcase Grid */
.vanya-ecosystem-section {
    padding: 50px 0;
    background-color: var(--bg-surface);
}

.vanya-ecosystem-card {
    background-color: var(--bg-container-low);
    border: 1px solid var(--outline-variant);
    padding: 45px;
    height: 100%;
    transition: all 0.4s var(--ease-luxury);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vanya-ecosystem-card:hover {
    border-color: var(--secondary-color);
    background-color: #faf6ee;
    transform: translateY(-8px);
}

.ecosystem-num {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: block;
}

.ecosystem-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.ecosystem-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-on-surface-variant);
    margin-bottom: 0;
    font-weight: 300;
}

/* Call To Action Block */
.vanya-cta-section {
    padding: 50px 0;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-container-low) 100%);
    text-align: center;
}

.vanya-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vanya-cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-on-surface-variant);
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    font-weight: 300;
}

.vanya-ticker-wrap {
    background-color: var(--primary-color);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.vanya-ticker {
    display: inline-block;
    animation: vanya-ticker-anim 25s linear infinite;
}

.vanya-ticker-item {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 0 40px;
}

@keyframes vanya-ticker-anim {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }

}

/* ==========================================================================
   37. Element Hero Header Split Layout Responsive Overrides
   ========================================================================== */

@media (max-width: 1199.98px) {
    .element-hero-header .philosophy-title {
        font-size: 54px;
    }

    .elements-hero-row {
        --bs-gutter-x: 40px;
    }

}

@media (max-width: 991.98px) {
    .element-hero-header {
        min-height: auto;
    }

    .elements-hero-row {
        flex-direction: column-reverse;
        /* Put the text first, then the image */
        row-gap: 50px;
    }

    .element-hero-header .hero-content {
        max-width: 100%;
        padding: 0;
    }

    .elements-hero-image-wrapper {
        max-width: 100%;
        aspect-ratio: 16 / 10;
        /* Landscape aspect ratio on tablet/mobile is very clean */
    }

    .elements-hero-image-border {
        top: 15px;
        left: 15px;
        right: -15px;
        bottom: -15px;
    }

}

@media (max-width: 575.98px) {
    .element-hero-header .philosophy-title {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .element-hero-header .philosophy-intro {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .element-hero-header .luxury-line {
        margin-bottom: 20px;
    }

    .elements-hero-image-wrapper {
        aspect-ratio: 4 / 3;
        /* Slightly taller landscape on mobile */
    }

    .elements-hero-image-border {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
    }

}

/* ==========================================================================
   38. Vanya Page Design Enhancements (Conscious Luxury)
   ========================================================================== */
.vanya-dropcap::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 44px;
    padding-top: 4px;
    padding-right: 14px;
    padding-left: 2px;
    float: left;
    color: var(--secondary-color);
    font-weight: 500;
}

.vanya-signature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
}

.vanya-signature .signature-line {
    width: 40px;
    height: 1px;
    background-color: var(--secondary-color);
    opacity: 0.6;
}

.vanya-signature .signature-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--primary-color);
}

/* Dual Image Overlapping Collage */
.vanya-collage-container {
    position: relative;
    padding: 0 40px 40px 0;
    max-width: 500px;
    margin: 0 auto;
}

.vanya-collage-main {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.vanya-collage-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-luxury);
}

.vanya-collage-container:hover .vanya-collage-main img {
    transform: scale(1.05);
}

.vanya-collage-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--secondary-color);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    transition: all 0.6s var(--ease-luxury);
}

.vanya-collage-container:hover .vanya-collage-border {
    transform: translate(5px, 5px);
}

.vanya-collage-secondary {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    border-radius: 4px;
    overflow: hidden;
    border: 3px solid var(--bg-container-low);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.vanya-collage-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Breakout Pledge Banner */
.vanya-pledge-banner {
    background-color: #132219;
    /* Deep Forest Green */
    color: #ffffff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.vanya-pledge-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(198, 164, 108, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.vanya-pledge-crest {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.vanya-pledge-crest svg {
    width: 80px;
    height: 80px;
    opacity: 0.8;
}

.vanya-pledge-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-style: italic;
    line-height: 1.4;
    color: #FFF9F2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 30px auto;
    position: relative;
    padding: 0 40px;
}

.vanya-pledge-desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 249, 242, 0.75);
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

/* Adjust stats on dark banner */
.vanya-pledge-banner .vanya-metrics-container {
    border-color: rgba(255, 249, 242, 0.12);
    margin-top: 30px;
    padding-top: 30px;
}

.vanya-pledge-banner .vanya-stat-number {
    color: var(--secondary-color);
}

.vanya-pledge-banner .vanya-stat-label {
    color: rgba(255, 249, 242, 0.6);
}

/* Ecosystem SVG icons */
.ecosystem-icon-wrapper {
    width: 48px;
    height: 48px;
    margin-bottom: 25px;
    opacity: 0.85;
    transition: transform 0.4s var(--ease-luxury);
}

.vanya-ecosystem-card:hover .ecosystem-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.ecosystem-svg {
    width: 100%;
    height: 100%;
}

/* Habitats Trust Spotlight Section */
.vanya-partner-section {
    padding: 50px 0;
    background-color: var(--bg-container-low);
}

.vanya-partner-image-wrapper {
    position: relative;
    padding: 30px;
}

.vanya-partner-image-border {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: 1px solid var(--secondary-color);
    opacity: 0.25;
}

.vanya-partner-img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border-radius: 2px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.vanya-partner-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 500;
    color: var(--primary-color);
    margin: 15px 0 25px 0;
}

.vanya-partner-logo-box {
    margin-bottom: 30px;
}

.vanya-partner-logo-inner {
    background-color: #132219;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(198, 164, 108, 0.25);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.vanya-partner-logo-img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    mix-blend-mode: screen;
}

.vanya-partner-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-on-surface-variant);
    font-weight: 300;
    margin-bottom: 20px;
}

.vanya-partner-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--secondary-dark);
    text-decoration: none;
    margin-top: 15px;
    transition: color 0.3s;
}

.vanya-partner-link:hover {
    color: var(--secondary-color);
}

.vanya-partner-link-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s var(--ease-luxury);
}

.vanya-partner-link:hover .vanya-partner-link-icon {
    transform: translate(3px, -3px);
}

/* Custom Editorial Layout spacing overriding utilities */
.vanya-editorial-col-left {
    padding-right: 48px;
}

.vanya-editorial-col-right {
    padding-left: 48px;
}

.vanya-ecosystem-header {
    padding-bottom: 30px;
}

.vanya-ecosystem-divider {
    margin-top: 24px;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
}

.vanya-ecosystem-row {
    row-gap: 30px;
}

/* Responsive Overrides */

@media (max-width: 991.98px) {
    .vanya-philosophy-section {
        padding: 90px 0;
    }

    .vanya-collage-container {
        margin-top: 60px;
    }

    .vanya-pledge-banner {
        padding: 95px 0;
    }

    .vanya-pledge-banner .vanya-metrics-container {
        margin-top: 20px;
        padding-top: 20px;
    }

    .vanya-partner-section {
        padding: 90px 0;
    }

    .vanya-editorial-col-left {
        padding-right: 15px;
    }

    .vanya-editorial-col-right {
        padding-left: 15px;
        margin-top: 40px;
    }

}

/* ==========================================================================
   39. State-of-the-Art Mobile App-View & Comprehensive Responsive Overrides
   ========================================================================== */
/* --- Breakpoint: 1680.98px --- */

@media (max-width: 1680.98px) {}

/* --- Breakpoint: 1440.98px --- */

@media (max-width: 1440.98px) {}

/* --- Breakpoint: 1399.98px --- */

@media (max-width: 1399.98px) {}

/* --- Breakpoint: 1280.98px --- */

@media (max-width: 1280.98px) {}

/* --- Breakpoint: 1199.98px --- */

@media (max-width: 1199.98px) {}

/* --- Breakpoint: 991.98px --- */

@media (max-width: 991.98px) {

    /* Prevent any horizontal layout shifting or horizontal scrollbars */
    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
    }

}

/* --- Breakpoint: 767.98px --- */

@media (max-width: 767.98px) {

    /* Body Padding Bottom clearance matching the bottom app nav bar plus safe areas */
    body {
        padding-bottom: 74px !important;
    }

    /* Let the Back-To-Top arrow float cleanly above the bottom navigation bar */
    .back-to-top {
        bottom: 94px !important;
        right: 20px !important;
    }

    /* Premium Glassmorphic Bottom Navigation Bar (.mobile-app-nav) */
    .mobile-app-nav {
        display: flex !important;
        position: fixed !important;
        bottom: 10px !important;
        left: 12px !important;
        right: 12px !important;
        height: 64px !important;
        background: rgba(253, 249, 241, 0.85) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        border: 1px solid rgba(198, 164, 108, 0.25) !important;
        border-radius: 16px !important;
        box-shadow: 0 8px 32px rgba(25, 51, 38, 0.08) !important;
        z-index: 1030 !important;
        padding: 4px 8px !important;
        padding-bottom: calc(4px + env(safe-area-inset-bottom, 0px)) !important;
        margin-bottom: env(safe-area-inset-bottom, 0px) !important;
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    }

    /* Refined tactile mobile nav links */
    .mobile-nav-link {
        color: rgba(25, 51, 38, 0.6) !important;
        font-size: 7px !important;
        font-weight: 500 !important;
        letter-spacing: 0.1em !important;
        transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1) !important;
        height: 100% !important;
        border-radius: 12px !important;
    }

    .mobile-nav-link i {
        font-size: 20px !important;
        margin-bottom: 2px !important;
        transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    }

    /* Active state glow, scale, and luxury accent color */
    .mobile-nav-link.active {
        color: var(--secondary-color) !important;
        font-weight: 700 !important;
        background: rgba(198, 164, 108, 0.06) !important;
    }

    .mobile-nav-link.active i {
        color: var(--secondary-color) !important;
        transform: scale(1.18) translateY(-3px) !important;
        text-shadow: 0 2px 10px rgba(198, 164, 108, 0.3) !important;
    }

    /* Horizontal scroll lists for product filtering & material indicators on mobile */
    .products-toolbar .d-flex {
        overflow-x: auto !important;
        scrollbar-width: none !important;
        /* Firefox */
        -ms-overflow-style: none !important;
        /* IE and Edge */
        flex-wrap: nowrap !important;
        padding-bottom: 8px !important;
    }

    .products-toolbar .d-flex::-webkit-scrollbar {
        display: none !important;
        /* Chrome, Safari, Opera */
    }

    .products-toolbar .d-flex>* {
        flex-shrink: 0 !important;
    }

}

/* --- Breakpoint: 575.98px --- */

@media (max-width: 575.98px) {
    body {
        padding-bottom: 70px !important;
    }

    /* Clearances */
    .mobile-app-nav {
        height: 60px !important;
        bottom: 8px !important;
        left: 8px !important;
        right: 8px !important;
        border-radius: 14px !important;
    }

    .back-to-top {
        bottom: 86px !important;
    }

    .luxury-navbar .logo-img {
        height: 28px !important;
    }

    /* Switch product listings to native-app 2-column catalog grid */
    .product-grid-layout {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    /* Hide heavy hover elements and scale card details elegantly */
    .product-card {
        border-radius: 6px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    }

    .product-card-image-wrap {
        aspect-ratio: 1/1 !important;
    }

    .product-card-info {
        padding: 12px !important;
    }

    .product-card-title {
        font-size: 11px !important;
        margin-bottom: 6px !important;
        line-height: 1.3 !important;
        height: 30px !important;
        /* Cap height to keep grid rows aligned */
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .product-card-price {
        font-size: 13.5px !important;
        margin-bottom: 10px !important;
        font-weight: 600 !important;
    }

    /* Hide heavy desktop overlay quick add */
    .product-card-quick-add {
        display: none !important;
    }

    /* Refined tactile mobile buttons on cards */
    .btn-underline-add-cart {
        padding: 8px 10px !important;
        font-size: 9px !important;
        letter-spacing: 0.08em !important;
        border-radius: 4px !important;
    }

}

/* --- Breakpoint: 480.98px --- */

@media (max-width: 480.98px) {
    body {
        padding-bottom: 66px !important;
    }

    .mobile-app-nav {
        height: 58px !important;
        bottom: 6px !important;
        left: 6px !important;
        right: 6px !important;
        border-radius: 12px !important;
    }

    .back-to-top {
        bottom: 80px !important;
    }

    .product-grid-layout {
        gap: 12px !important;
    }

    .product-card-info {
        padding: 10px !important;
    }

    .product-card-title {
        font-size: 10px !important;
        height: 28px !important;
    }

    .product-card-price {
        font-size: 12.5px !important;
        margin-bottom: 8px !important;
    }

    .btn-underline-add-cart {
        padding: 6px 8px !important;
        font-size: 8.5px !important;
        letter-spacing: 0.05em !important;
    }

}

/* --- Breakpoint: 360.98px --- */

@media (max-width: 360.98px) {
    body {
        padding-bottom: 62px !important;
    }

    .mobile-app-nav {
        height: 56px !important;
        bottom: 4px !important;
        left: 4px !important;
        right: 4px !important;
        border-radius: 10px !important;
    }

    .back-to-top {
        bottom: 74px !important;
        right: 12px !important;
    }

    .luxury-navbar .logo-img {
        height: 26px !important;
    }

    .product-grid-layout {
        gap: 8px !important;
    }

    .product-card-info {
        padding: 8px !important;
    }

    .product-card-title {
        font-size: 9.5px !important;
        height: 26px !important;
    }

    .product-card-price {
        font-size: 11.5px !important;
        margin-bottom: 6px !important;
    }

    .btn-underline-add-cart {
        padding: 5px 6px !important;
        font-size: 8px !important;
        letter-spacing: 0px !important;
    }

}

/* ==========================================================================
   Five-Element Redesign Footer & Column Symmetry Overrides
   ========================================================================== */
@media (min-width: 1200px) {
    .footer-main-row {
        display: flex;
        justify-content: space-between;
    }

    /* First box: centered */
    .footer-brand-column {
        align-items: center;
        text-align: center;
    }

    .footer-logo-wrapper {
        align-items: center;
    }

    .footer-brand-divider {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* Middle box: centered for balance */
    .footer-house-col {
        align-items: center;
        text-align: center;
    }

    .footer-house-col .footer-heading-divider {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-house-col .footer-links-list {
        align-items: center;
    }

    /* Right box: centered */
    .footer-services-col {
        align-items: center;
        text-align: center;
    }

    .footer-services-col .footer-heading-divider {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-services-col .footer-links-list {
        align-items: center;
    }
}

/* ==========================================================================
   High-End Luxury Search Overlay Suggestions Design Set
   ========================================================================== */
.search-suggestions {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.suggested-title {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.suggested-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.suggested-pill {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid rgba(117, 90, 41, 0.25);
    border-radius: 50px;
    padding: 8px 20px;
    transition: all 0.4s var(--ease-luxury);
    cursor: pointer;
}

.suggested-pill:hover {
    color: #ffffff !important;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 51, 38, 0.08);
}
