* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background-color: #fcfbfa;
}

.overlay {
    display: none;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    position: absolute;
    /* Float elegantly on top of both columns */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.logo-text {
    text-align: center;
}

.logo-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    letter-spacing: 0.32em;
    font-weight: 400;
    color: #2b2520;
    /* Deep luxury espresso */
    line-height: 1.1;
    padding-left: 0.32em;
    /* visual center offset for letter-spacing */
}

.logo-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.72rem;
    color: #af956b;
    /* Rich heritage gold */
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

.nav {
    display: flex;
    gap: 3rem;
}

.nav a {
    text-decoration: none;
    color: #2b2520;
    /* Deep luxury espresso */
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav a:hover {
    color: #af956b;
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #bfa880;
    /* Premium gold */
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Header Dark Theme Overrides */
.hero-wrapper .header,
.hero-header {
    background: linear-gradient(to bottom, rgba(12, 10, 9, 0.55) 0%, rgba(12, 10, 9, 0) 100%);
}

.hero-wrapper .logo-text h1,
.hero-header .logo-text h1 {
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-wrapper .logo-text p,
.hero-header .logo-text p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.hero-wrapper .nav a,
.hero-header .nav a {
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.hero-wrapper .nav a:hover,
.hero-header .nav a:hover {
    color: #af956b;
    opacity: 1;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

body.menu-open {
    overflow: hidden;
}

/* Split Column Structure */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #16120f;
    /* Warm luxury espresso black */
    position: relative;
    overflow: hidden;
}

.hero-split-container {
    display: flex;
    flex: 1;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.hero-left-col {
    flex: 1.15;
    padding: 9rem 5rem 6rem 6rem;
    /* Large top padding to make space for absolute header */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    background: transparent;
    position: relative;
    z-index: 10;
}

.hero-right-col {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/landing_bg.webp?v=5.0');
    background-size: cover;
    background-position: 85% 70%;
    background-repeat: no-repeat;
    z-index: 5;
}

/* Rich, beautiful dual gradient to keep left-aligned texts highly legible and fade bottom to white */
.hero-right-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Left dark vignette gradient shadow */
        linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 80%),
        /* Bottom fade gradient shadow */
        linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
    z-index: 6;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.4rem;
    /* Adjusted for editorial column width */
    font-weight: 400;
    line-height: 1.08;
    color: #ffffff;
    /* Crisp white text for dark theme */
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.title-separator {
    width: 60px;
    height: 1px;
    background-color: #af956b;
    margin: 1.8rem 0;
    /* Left aligned */
}

.subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.65;
    color: #cbbfa8;
    /* Luxury warm soft champagne beige */
    margin-bottom: 2.8rem;
    max-width: 580px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #af956b;
    /* Heritage gold background */
    color: #ffffff;
    /* Crisp white text */
    text-decoration: none;
    padding: 1.15rem 2.8rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 2px;
    margin-bottom: 4.5rem;
    box-shadow: 0 4px 20px rgba(175, 149, 107, 0.15);
}

.cta-button:hover {
    background-color: #8e754d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(175, 149, 107, 0.3);
}

.features {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    /* Left aligned */
    gap: 2.5rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left aligned */
    gap: 0.8rem;
    width: auto;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(175, 149, 107, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #af956b;
    background-color: rgba(175, 149, 107, 0.04);
    /* Soft visual circle pop */
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.05);
    background-color: rgba(175, 149, 107, 0.12);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    stroke-width: 1.2;
    fill: none;
}

.feature p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: #cbbfa8;
    /* Luxury soft champagne beige text */
    line-height: 1.35;
    font-weight: 500;
}

.feature-divider {
    width: 1px;
    background-color: #af956b;
    height: 50px;
    align-self: center;
    opacity: 0.3;
}

/* Curated For Section styling */
.curated-section {
    background-color: #f7f4f0;
    /* Soft warm linen off-white */
    padding: 6rem 1.5rem;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(175, 149, 107, 0.15);
}

.section-container {
    max-width: 1050px;
    margin: 0 auto;
}

.section-tag-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
}

.section-tag-line {
    width: 30px;
    height: 1px;
    background-color: #af956b;
    opacity: 0.6;
}

.section-tag-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: #af956b;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.15;
    color: #2b2520;
    /* Deep luxury espresso */
    text-align: center;
    margin-bottom: 4.5rem;
    letter-spacing: -0.01em;
}

.curated-cards {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.curated-card {
    display: flex;
    flex-direction: column-reverse;
    background-color: #fbfafa;
    border: 1px solid rgba(175, 149, 107, 0.22);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-image-col {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(175, 149, 107, 0.15);
}

.curated-card:hover {
    border-color: rgba(175, 149, 107, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(175, 149, 107, 0.1);
}

.card-content {
    padding: 1.8rem 2.2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
}

.card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(175, 149, 107, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #af956b;
    flex-shrink: 0;
}

.card-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.card-number {
    display: none;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.25;
    color: #2b2520;
    margin-bottom: 0;
}

.card-separator {
    width: 1px;
    height: 45px;
    background-color: #af956b;
    margin: 0;
    opacity: 0.35;
    flex-shrink: 0;
}

.card-desc {
    flex: 1.3;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.45;
    color: #5a5047;
    /* Soft espresso description */
    opacity: 0.95;
    margin-bottom: 0;
}

.card-image-wrapper {
    flex: 0.9;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 10, 9, 0.4);
    border-left: 1px solid rgba(191, 168, 128, 0.1);
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    background: linear-gradient(135deg, #181512 0%, #231e1a 100%);
    border: 1px dashed rgba(191, 168, 128, 0.35);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.2rem;
    color: #bfa880;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.image-placeholder:hover {
    border-color: #d5c7ac;
    background: linear-gradient(135deg, #1f1a16 0%, #2e2821 100%);
    box-shadow: inset 0 0 25px rgba(191, 168, 128, 0.08);
}

.image-placeholder-icon {
    color: #bfa880;
    margin-bottom: 0.8rem;
    opacity: 0.75;
    transition: transform 0.3s ease;
}

.image-placeholder:hover .image-placeholder-icon {
    transform: scale(1.1);
}

.image-placeholder-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #d5c7ac;
    margin-bottom: 0.5rem;
}

.image-placeholder-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-style: italic;
    color: #a89984;
    line-height: 1.45;
    max-width: 90%;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.upload-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.9rem;
    background: rgba(191, 168, 128, 0.12);
    border: 1px solid rgba(191, 168, 128, 0.35);
    border-radius: 20px;
    color: #d5c7ac;
    transition: all 0.3s ease;
}

.image-placeholder:hover .upload-badge {
    background: rgba(191, 168, 128, 0.25);
    border-color: #d5c7ac;
}

.upload-badge.update-only {
    position: absolute;
    bottom: 1rem;
    background: rgba(18, 14, 12, 0.75);
    backdrop-filter: blur(4px);
    border-color: rgba(191, 168, 128, 0.5);
    opacity: 0;
    transform: translateY(10px);
}

.image-placeholder:hover .upload-badge.update-only {
    opacity: 1;
    transform: translateY(0);
}

/* Our Collection Section styling */
.collection-section {
    background-color: #0c0a09;
    /* Deeper cocoa/black */
    padding: 6rem 1.5rem;
    border-top: 1px solid rgba(191, 168, 128, 0.12);
    position: relative;
    z-index: 5;
}

.collection-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 5rem;
}

.collection-logo-icon {
    margin-bottom: 0.8rem;
}

.collection-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: #bfa880;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.collection-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.collection-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #bfa880;
    opacity: 0.8;
}

.product-cards {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.product-card-item {
    background: rgba(22, 19, 17, 0.45);
    border: 1px solid rgba(191, 168, 128, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 440px;
}

.product-card-item:hover {
    border-color: rgba(191, 168, 128, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 15px rgba(191, 168, 128, 0.05);
}

.product-image-wrapper {
    flex: 1;
    background: rgba(12, 10, 9, 0.35);
    position: relative;
    overflow: hidden;
}

.product-placeholder {
    min-height: 280px;
}

.product-image-display {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-item:hover .product-image-display {
    transform: scale(1.04);
}

.product-info {
    flex: 1.25;
    padding: 4.5rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.product-badge-row {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 2rem;
}

.product-badge-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(191, 168, 128, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bfa880;
    background-color: rgba(191, 168, 128, 0.03);
    flex-shrink: 0;
}

.product-badge-circle svg {
    width: 22px;
    height: 22px;
}

.product-badge-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #bfa880;
    letter-spacing: 0.05em;
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
}

.product-desc-separator {
    width: 45px;
    height: 1px;
    background-color: #bfa880;
    margin-bottom: 1.8rem;
    opacity: 0.45;
}

.product-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #cbbfa8;
    opacity: 0.9;
}

/* Redesigned Premium Footer Styling */
.landing-footer {
    background-image: linear-gradient(to bottom, rgba(12, 10, 9, 0.4) 0%, rgba(8, 6, 5, 0.85) 45%, #080605 100%), url('/static/images/footer.webp');
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    padding: 3rem 2rem 2rem 2rem;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(191, 168, 128, 0.1);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.footer-main-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(191, 168, 128, 0.08);
}

.footer-brand-col {
    flex: 1;
    text-align: left;
}

.footer-brand-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: #bfa880;
    line-height: 1.8;
    text-transform: uppercase;
}

.footer-contact-col {
    flex: 1.8;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 2.2rem;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    min-width: 140px;
}

.footer-contact-icon {
    color: #bfa880;
    margin-bottom: 0.2rem;
    opacity: 0.9;
}

.footer-contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.footer-contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(191, 168, 128, 0.5);
    text-transform: uppercase;
}

.footer-contact-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-contact-value.text-value {
    color: #ffffff;
}

.footer-contact-value:hover {
    color: #bfa880;
}

.footer-vertical-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(191, 168, 128, 0.15);
    align-self: center;
}

.footer-social-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 0;
}

.footer-social-link {
    color: #ffffff;
    opacity: 0.75;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.footer-social-link:hover {
    color: #bfa880;
    opacity: 1;
    transform: translateY(-2px);
}

.footer-social-link.leaf-social {
    cursor: default;
}

.footer-social-link.leaf-social svg {
    width: 20px;
    height: 20px;
}

.footer-social-divider {
    width: 1px;
    height: 14px;
    background-color: rgba(191, 168, 128, 0.25);
}

.footer-copyright-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    width: 100%;
}

.copyright-line {
    flex: 1;
    height: 1px;
    background-color: rgba(191, 168, 128, 0.1);
}

.copyright-diamond {
    color: #af956b;
    font-size: 0.65rem;
    opacity: 0.7;
}

.copyright-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    color: rgba(191, 168, 128, 0.45);
    letter-spacing: 0.12em;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
}


/* Testimonials & Impact Section Styling */
.testimonials-section {
    background-color: #fcfbfa;
    /* Warm luxury alabaster */
    padding: 6rem 1.5rem;
    position: relative;
    z-index: 5;
}

.featured-testimonial {
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(175, 149, 107, 0.22);
    border-radius: 8px;
    background-color: #fbfafa;
    overflow: hidden;
    margin-bottom: 3.5rem;
    box-shadow: 0 10px 30px rgba(175, 149, 107, 0.04);
}

.featured-image-col {
    flex: 1;
    min-height: 420px;
    position: relative;
}

.testimonial-placeholder {
    height: 100%;
    border-radius: 0 !important;
    border: none !important;
    background: linear-gradient(135deg, #faf8f5 0%, #f3efe9 100%) !important;
}

.featured-content-col {
    flex: 1.25;
    padding: 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.testimonial-location {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #af956b;
    text-transform: uppercase;
}

.testimonial-location-line {
    width: 25px;
    height: 1px;
    background-color: #af956b;
    margin-top: 0.5rem;
    margin-bottom: 2.2rem;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 400;
    line-height: 1.42;
    color: #2b2520;
    margin-bottom: 2.5rem;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-author {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #2b2520;
}

.testimonial-role {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: #8a7f75;
}

.passport-stamp {
    position: absolute;
    bottom: 3.5rem;
    right: 3.5rem;
    width: 105px;
    height: 105px;
    transform: rotate(6deg);

    opacity: 0.85;
    pointer-events: none;
}

.stamp-svg {
    width: 100%;
    height: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(175, 149, 107, 0.15);
    border-radius: 8px;
    background-color: #fbfafa;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(175, 149, 107, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    border-color: rgba(175, 149, 107, 0.35);
    box-shadow: 0 10px 25px rgba(175, 149, 107, 0.05);
}

.testimonial-card-body {
    padding: 1.8rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.testimonial-card-body .testimonial-quote {
    font-size: 1.18rem;
    line-height: 1.45;
    margin-bottom: 1.5rem;
    color: #3e352e;
    flex: 1;
}

.testimonial-location {
    font-size: 0.72rem;
}

.testimonial-location-line {
    margin-top: 0.3rem;
    margin-bottom: 1.2rem;
}

.testimonial-footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    width: 100%;
}



.stamp-sm {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    width: 95px;
    height: 95px;
    transform: rotate(8deg);
    opacity: 0.85;
    z-index: 5;
    pointer-events: none;
}

/* Impact Banner Styling */
.impact-banner {
    background-color: #131b15;
    /* Premium deep dark forest green */
    border-radius: 8px;
    padding: 2.2rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 15px 40px rgba(19, 27, 21, 0.18);
    max-width: 600px;
    margin: 0 auto;
}

.impact-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
}

.impact-stat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: left;
}

.impact-stat-icon {
    color: #af956b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-stat-icon svg {
    stroke: currentColor;
    fill: none;
    width: 20px;
    height: 20px;
}

.impact-stat-texts {
    display: flex;
    flex-direction: column;
}

.impact-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #af956b;
    line-height: 1;
}

.impact-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #e2d7c5;
}

.impact-divider {
    width: 1px;
    height: 35px;
    background-color: rgba(175, 149, 107, 0.25);
}

.impact-thanks {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: #e2d7c5;
    margin-top: 0.2rem;
    letter-spacing: 0.02em;
}

.impact-crest {
    margin-top: 0.2rem;
    color: #af956b;
}

.impact-crest svg {
    fill: currentColor;
}

/* Mobile Menu Drawer and Backdrop (hidden by default on desktop) */
.menu-drawer,
.menu-backdrop {
    display: none;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .hero-right-col {
        background-image: url('/static/images/landing_bg_02.webp?v=5.0') !important;
    }
}

@media (max-width: 900px) {
    .curated-card {
        flex-direction: column-reverse;
    }

    .card-image-col {
        width: 100%;
        height: 220px;
        min-height: auto;
        border-left: none;
        border-bottom: 1px solid rgba(175, 149, 107, 0.15);
    }

    .card-image-wrapper {
        border-left: none;
        border-top: 1px solid rgba(191, 168, 128, 0.1);
        padding: 2rem;
    }

    .product-cards {
        gap: 2.5rem;
    }

    .product-card-item {
        flex-direction: row;
        align-items: stretch;
        min-height: auto;
        border-radius: 10px;
    }

    .product-image-wrapper {
        width: 46%;
        height: auto;
        border-left: 1px solid rgba(191, 168, 128, 0.2);
        border-top: none;
        flex-shrink: 0;
    }

    .product-image-display {
        height: 100%;
        background-size: cover;
        background-position: center;
    }

    .product-info {
        padding: 1.5rem 1rem 1.5rem 1.2rem;
        align-items: flex-start;
        text-align: left;
        flex: 1;
        justify-content: center;
    }

    .product-badge-row {
        margin-bottom: 0.6rem;
        gap: 0.5rem;
    }

    .product-badge-circle {
        width: 32px;
        height: 32px;
    }

    .product-badge-circle svg {
        width: 14px;
        height: 14px;
    }

    .product-badge-number {
        font-size: 1.15rem;
    }

    .product-title {
        font-size: 1.35rem !important;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .product-description {
        font-size: 0.78rem !important;
        line-height: 1.4;
    }

    .product-desc-separator {
        margin-bottom: 0.6rem;
        width: 25px;
    }

    /* Redesigned Footer Mobile Overrides */
    .landing-footer {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
        background-position: center 15%;
    }

    .footer-main-row {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-brand-col {
        text-align: center;
    }

    .footer-brand-text {
        font-size: 0.78rem;
        line-height: 1.6;
    }

    .footer-contact-col {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1.2rem;
    }

    .footer-vertical-divider {
        display: none;
    }

    .footer-contact-item {
        min-width: auto;
        width: 100%;
    }

    .footer-contact-value {
        font-size: 1.05rem;
    }

    .copyright-line {
        display: none;
    }

    .footer-copyright-row {
        gap: 0.6rem;
    }

    .copyright-text {
        font-size: 0.6rem;
        letter-spacing: 0.08em;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header {
        position: absolute;
        /* Float absolutely over the product image card */
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 2rem;
        z-index: 100;
        background: linear-gradient(to bottom, rgba(17, 14, 12, 0.6) 0%, rgba(17, 14, 12, 0) 100%);
        /* Elegant top shading for header contrast */
    }

    .logo {
        align-items: flex-start;
        gap: 0.05rem;
    }

    .logo-text {
        text-align: left;
    }

    .logo-text h1 {
        font-size: 1.45rem;
        letter-spacing: 0.25em;
        padding-left: 0.25em;
    }

    .logo-text p {
        font-size: 0.58rem;
        margin-top: 0.1rem;
        letter-spacing: 0.02em;
    }

    .logo-icon {
        width: 46px !important;
        height: 17px !important;
        margin-bottom: 2px !important;
    }
    .menu-toggle {
        display: flex;
        width: 22px !important;
        height: 13px !important;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(5.5px) rotate(45deg) !important;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-5.5px) rotate(-45deg) !important;
    }

    /* Dimmed Menu Backdrop */
    .menu-backdrop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(8, 6, 5, 0.65);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 990;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    /* Sliding Side Drawer Navigation */
    .menu-drawer {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background-color: #16120f;
        /* Mountain backdrop overlay image */
        background-image: linear-gradient(to top, rgba(22, 18, 15, 0.2) 0%, rgba(22, 18, 15, 0.95) 45%, rgba(22, 18, 15, 1) 100%), url('/static/images/footer.webp');
        background-position: bottom center;
        background-repeat: no-repeat;
        background-size: 100% auto;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 2.5rem 1.8rem;
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.4);
    }

    .menu-drawer.active {
        transform: translateX(0);
    }

    /* Header Brand Area */
    .drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .drawer-brand {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .drawer-brand .logo-icon {
        width: 50px !important;
        height: 19px !important;
        margin-bottom: 0 !important;
    }

    .drawer-brand-text {
        display: flex;
        flex-direction: column;
        gap: 0.05rem;
    }

    .drawer-brand-text h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.45rem;
        font-weight: 300;
        letter-spacing: 0.28em;
        color: #ffffff;
        margin: 0;
        line-height: 1.1;
    }

    .drawer-brand-text p {
        font-family: 'Cormorant Garamond', serif;
        font-size: 0.52rem;
        font-style: italic;
        letter-spacing: 0.01em;
        color: #af956b;
        margin: 0;
        opacity: 0.85;
    }

    .drawer-close {
        background: none;
        border: none;
        cursor: pointer;
        color: #bfa880;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(191, 168, 128, 0.22);
        transition: all 0.3s ease;
        padding: 0;
    }

    .drawer-close:hover {
        background-color: rgba(191, 168, 128, 0.08);
        border-color: #bfa880;
    }

    /* Nav Links Container */
    .drawer-content {
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 2rem 0;
    }

    .drawer-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 100%;
    }

    .drawer-link-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    .drawer-icon {
        width: 26px;
        height: 26px;
        color: #bfa880;
        margin-bottom: 0.8rem;
        opacity: 0.85;
    }

    .drawer-icon svg {
        width: 100%;
        height: 100%;
        stroke: currentColor;
    }

    .drawer-link-item a {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.4rem;
        font-weight: 300;
        letter-spacing: 0.22em;
        color: #fbfafa !important;
        text-decoration: none;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }

    .drawer-link-item a:hover {
        color: #bfa880 !important;
    }

    .drawer-divider {
        width: 50px;
        height: 1px;
        background-color: rgba(191, 168, 128, 0.25);
        margin-top: 1.2rem;
    }

    /* Footer Segment */
    .drawer-footer {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .drawer-footer-divider {
        width: 100%;
        height: 1px;
        background-color: rgba(191, 168, 128, 0.15);
        margin-top: 1.5rem;
        margin-bottom: 0;
    }

    .drawer-footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .drawer-footer-content p {
        font-family: 'Cormorant Garamond', serif;
        font-size: 0.72rem;
        font-style: italic;
        letter-spacing: 0.08em;
        color: #af956b;
        margin: 0;
        opacity: 0.9;
    }

    /* Mobile Editorial Overlay (Unified Image and Text) */
    .hero-split-container {
        position: relative;
        min-height: 100vh;
        display: block;
    }

    .hero-right-col {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-image: url('/static/images/landing_bg.webp?v=5.0') !important;
        background-position: center 90% !important;
    }

    .hero-right-col::before {
        background: 
            /* Soft side vignette */
            linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%),
            /* Elegant vertical gradient that keeps text highly legible at the top,
               leaves the product in the middle bright, and adds a soft dark bottom overlay for features legibility */
            linear-gradient(to bottom, 
                rgba(17, 14, 12, 0.85) 0%, 
                rgba(17, 14, 12, 0.75) 30%, 
                rgba(17, 14, 12, 0.2) 55%, 
                rgba(17, 14, 12, 0.02) 75%, 
                rgba(17, 14, 12, 0.8) 86%,
                rgba(17, 14, 12, 1) 100%
            ) !important;
    }


    .hero-left-col {
        position: relative;
        z-index: 10;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        width: 100% !important;
        min-height: 100vh;
        padding: 12.5rem 1.8rem 3rem 1.8rem !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.7rem !important;
        font-weight: 400 !important;
        line-height: 1.12 !important;
        letter-spacing: -0.01em !important;
        margin-bottom: 0px !important;
        color: #ffffff !important;
        text-align: left !important;
    }

    .title i {
        font-family: 'Cormorant Garamond', serif;
        font-style: italic;
        font-weight: 400;
        color: #bfa880;
    }

    .title-separator {
        display: block !important;
        width: 60px !important;
        height: 1px !important;
        background-color: #af956b !important;
        margin: 1.5rem 0 !important;
    }

    .subtitle {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: 1.15rem !important;
        font-weight: 400 !important;
        line-height: 1.55 !important;
        letter-spacing: 0.01em !important;
        color: #cbbfa8 !important;
        max-width: 90% !important;
        margin: 0 0 2.2rem 0 !important;
        text-align: left !important;
    }

    .cta-button {
        margin-bottom: 3.5rem !important;
        padding: 1.1rem 2.4rem !important;
        align-self: flex-start !important;
    }

    .features {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        width: 100% !important;
        gap: 0 !important;
        flex-wrap: nowrap !important;
        margin-top: auto !important;
        padding-top: 1.5rem !important;
    }

    .feature {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0.6rem !important;
    }

    .feature-icon {
        width: 68px !important;
        height: 68px !important;
        border-radius: 50% !important;
        border: 1px solid rgba(175, 149, 107, 0.35) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #af956b !important;
        background-color: rgba(175, 149, 107, 0.04) !important;
    }

    .feature-icon svg {
        width: 42px !important;
        height: 42px !important;
    }

    .feature p {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: 0.85rem !important;
        line-height: 1.35 !important;
        color: #cbbfa8 !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 !important;
        font-weight: 500 !important;
    }

    .feature-divider {
        display: block !important;
        width: 1px !important;
        background-color: rgba(191, 168, 128, 0.3) !important;
        height: 35px !important;
        align-self: center !important;
        opacity: 0.4 !important;
        margin: 0 0.5rem !important;
    }

    .section-title,
    .collection-title {
        font-size: 2.6rem;
    }

    .card-content {
        padding: 1.1rem 0.9rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .card-header {
        gap: 0.45rem;
        flex: 1;
    }

    .card-icon {
        width: 26px !important;
        height: 26px !important;
    }

    .card-icon svg {
        width: 12px !important;
        height: 12px !important;
    }

    .card-title {
        font-size: 0.88rem;
        line-height: 1.25;
    }

    .card-separator {
        width: 1px;
        height: 32px;
        background-color: #af956b;
        margin: 0;
        opacity: 0.35;
        flex-shrink: 0;
    }

    .card-desc {
        font-size: 0.78rem;
        line-height: 1.3;
        flex: 1.25;
    }

    .curated-section {
        padding: 4rem 1rem;
    }

    .collection-section {
        padding: 4rem 1rem;
    }

    /* Testimonials Mobile Responsive Overrides */
    .testimonials-section {
        padding: 4rem 1rem;
    }

    .featured-testimonial {
        flex-direction: column;
    }

    .featured-image-col {
        min-height: 260px;
    }

    .featured-content-col {
        padding: 2.5rem 1.8rem 6.5rem 1.8rem;
    }

    .testimonial-quote {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .passport-stamp {
        bottom: 1.8rem;
        right: 1.8rem;
        width: 80px;
        height: 80px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    .testimonial-card-body {
        padding: 1.2rem 0.95rem;
    }

    .testimonial-card-body .testimonial-quote {
        font-size: 0.95rem;
        line-height: 1.35;
        margin-bottom: 1rem;
    }

    .testimonial-card-body .testimonial-author {
        font-size: 0.92rem !important;
    }

    .testimonial-card-body .testimonial-role {
        font-size: 0.75rem !important;
    }

    .testimonial-card-body .testimonial-location {
        font-size: 0.65rem !important;
    }



    .testimonial-card-body .passport-stamp {
        width: 75px !important;
        height: 75px !important;
        bottom: 0.8rem !important;
        right: 0.8rem !important;
    }

    .impact-banner {
        padding: 1.6rem 1.2rem;
        gap: 1rem;
        max-width: 92%;
        margin-top: 1.5rem;
    }

    .impact-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .impact-stat {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.3rem;
    }

    .impact-stat-icon svg {
        width: 16px;
        height: 16px;
    }

    .impact-stat-texts {
        flex-direction: column;
        align-items: center;
        gap: 0.15rem;
    }

    .impact-number {
        font-size: 1.2rem !important;
        line-height: 1.1;
    }

    .impact-label {
        font-size: 0.65rem !important;
        letter-spacing: 0.08em !important;
    }

    .impact-divider {
        width: 40px;
        height: 1px;
        background-color: rgba(175, 149, 107, 0.2);
    }

    .impact-thanks {
        font-size: 0.78rem !important;
        margin-top: 0.1rem;
        text-align: center;
    }

    .impact-crest {
        display: block;
        margin-top: 0.1rem;
    }

    .impact-crest svg {
        width: 18px;
        height: 7px;
    }

    .landing-footer {
        padding: 1.2rem 1.2rem 1rem 1.2rem;
    }

    .footer-divider-mountain {
        margin-bottom: 0.8rem;
    }

    .footer-text {
        font-size: 0.72rem;
        letter-spacing: 0.22em;
    }

    .footer-contact {
        gap: 0.8rem;
        margin-top: 1.2rem;
        justify-content: center;
    }

    .contact-item {
        gap: 0.1rem;
        flex: 1 1 40%;
    }

    .contact-link, .contact-text {
        font-size: 0.92rem;
    }

    .contact-divider {
        display: none;
    }

    .footer-social {
        margin-top: 1.8rem;
        gap: 1.2rem;
    }
}

/* Very Small Mobile Screen Optimizations */
@media (max-width: 480px) {
    .title {
        font-size: 2.15rem !important;
        line-height: 1.15 !important;
    }
}

/* Premium Floating WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    font-family: 'Inter', sans-serif;
}

.wa-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366; /* Official WhatsApp Green */
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border: none;
    outline: none;
    animation: wa-pulse 2s infinite;
}

.wa-btn:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

@keyframes wa-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.wa-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background-color: #af956b; /* Heritage Gold */
    border: 2px solid #ffffff;
    border-radius: 50%;
    animation: wa-badge-ping 1.5s infinite;
}

@keyframes wa-badge-ping {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Chat Window card */
.wa-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    background: #ffffff;
    border: 1px solid rgba(175, 149, 107, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(43, 37, 32, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10001;
}

.wa-window.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

/* Chat Header */
.wa-header {
    background: linear-gradient(135deg, #131b15 0%, #1c2b20 100%); /* Deep forest green */
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(191, 168, 128, 0.12);
}

.wa-header-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.wa-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #af956b; /* Heritage gold background */
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
}

.wa-header-info {
    display: flex;
    flex-direction: column;
}

.wa-header-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.wa-header-status {
    font-size: 0.65rem;
    color: #25D366; /* Online green */
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
}

.wa-header-status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #25D366;
    border-radius: 50%;
}

.wa-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem;
}

.wa-close:hover {
    color: #ffffff;
}

/* Chat Body */
.wa-body {
    padding: 1.5rem;
    background-color: #fcfbfa; /* Warm luxury off-white */
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-height: 280px;
    overflow-y: auto;
}

.wa-msg {
    max-width: 85%;
    padding: 0.85rem 1.1rem;
    border-radius: 12px;
    font-size: 0.82rem;
    line-height: 1.5;
}

.wa-msg-in {
    background-color: #ffffff;
    color: #3e352e;
    align-self: flex-start;
    border-top-left-radius: 2px;
    border: 1px solid rgba(175, 149, 107, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
}

.wa-msg-time {
    display: block;
    font-size: 0.62rem;
    color: #8a7f75;
    margin-top: 0.4rem;
    text-align: right;
}

/* Action Chips */
.wa-chips {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.2rem;
}

.wa-chip {
    background: #ffffff;
    border: 1px solid rgba(175, 149, 107, 0.25);
    color: #5a5047;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.wa-chip:hover {
    background-color: rgba(175, 149, 107, 0.06);
    border-color: #af956b;
    color: #af956b;
    transform: translateX(3px);
}

/* Chat Footer Input */
.wa-footer {
    padding: 1rem 1.2rem;
    background-color: #ffffff;
    border-top: 1px solid rgba(175, 149, 107, 0.12);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.wa-input {
    flex: 1;
    border: 1px solid rgba(175, 149, 107, 0.25);
    border-radius: 20px;
    padding: 0.65rem 1.2rem;
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    color: #2b2520;
    outline: none;
    transition: border-color 0.3s ease;
}

.wa-input:focus {
    border-color: #af956b;
}

.wa-send {
    background-color: #25D366;
    color: #ffffff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.wa-send:hover {
    background-color: #1ebe57;
    transform: scale(1.05);
}

.wa-send svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transform: translate(1px, 0);
}