/* General Body and Typography */
body {
    font-size: 18px;
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

h2 {
    font-size: 3rem;
}

.section {
    padding: 120px 0;
}

/* Reveal Animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* WOMEN'S COLLECTIVE REDESIGN */
.collective-header-box {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 40px;
}

.collective-badge-kicker {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(216, 161, 95, 0.15);
    color: #b28346;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid rgba(216, 161, 95, 0.35);
    margin-bottom: 16px;
}

.collective-header-box h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: #1f453f;
    margin-bottom: 12px;
    line-height: 1.15;
}

.collective-subtitle {
    font-size: 1.1rem;
    color: #6c7d75;
    font-weight: 500;
}

.collective-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 50px;
}

.collective-story-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.collective-story-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(216, 161, 95, 0.25);
    box-shadow: 0 14px 35px rgba(31, 69, 63, 0.06);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collective-story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(31, 69, 63, 0.1);
    border-color: #d8a15f;
}

.collective-story-card .card-icon {
    font-size: 2rem;
    line-height: 1;
    padding: 12px;
    background: rgba(216, 161, 95, 0.12);
    border-radius: 14px;
    flex-shrink: 0;
}

.collective-story-card p {
    font-size: 1.05rem;
    color: #3b4c44;
    line-height: 1.7;
    margin: 0;
}

.collective-pillars-card {
    background: linear-gradient(145deg, #ffffff 0%, #faf6f0 100%);
    border-radius: 24px;
    padding: 36px 30px;
    border: 1px solid rgba(216, 161, 95, 0.3);
    box-shadow: 0 16px 40px rgba(31, 69, 63, 0.08);
}

.collective-pillars-card h3 {
    font-size: 1.45rem;
    color: #1f453f;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(216, 161, 95, 0.25);
}

.collective-pillars-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.collective-pillars-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pillar-icon {
    font-size: 1.4rem;
    line-height: 1;
    background: #ffffff;
    border: 1px solid rgba(216, 161, 95, 0.3);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(31, 69, 63, 0.06);
}

.pillar-text strong {
    display: block;
    color: #1f453f;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.pillar-text p {
    font-size: 0.92rem;
    color: #5c6c64;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .collective-intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .collective-story-card {
        padding: 22px;
    }

    .collective-pillars-card {
        padding: 26px 20px;
    }
}

/* MEET THE MAKERS REDESIGN */
.makers-section-heading {
    text-align: center;
    margin: 60px 0 35px;
}

.makers-section-heading h3 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    color: #1f453f;
    margin-bottom: 8px;
}

.makers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

.maker-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 26px;
    border: 1px solid rgba(216, 161, 95, 0.25);
    box-shadow: 0 14px 35px rgba(31, 69, 63, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}

.maker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d8a15f, #b28346);
}

.maker-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(31, 69, 63, 0.12);
    border-color: #d8a15f;
}

.maker-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(216, 161, 95, 0.15);
    color: #1f453f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    border: 1px solid rgba(216, 161, 95, 0.3);
}

.maker-card h3 {
    font-size: 1.4rem;
    color: #1f453f;
    margin-bottom: 4px;
}

.maker-byline {
    display: inline-block;
    color: #b28346;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.maker-card p {
    font-size: 0.98rem;
    color: #4a5a52;
    line-height: 1.65;
    margin: 0;
}

/* COLLECTIVE CONNECT BOX REDESIGN */
.collective-connect-box {
    margin-top: 60px;
    background: linear-gradient(135deg, #1f453f 0%, #143931 100%);
    border-radius: 24px;
    padding: 44px 32px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 20px 50px rgba(31, 69, 63, 0.2);
    border: 1px solid rgba(216, 161, 95, 0.35);
    position: relative;
    overflow: hidden;
}

.collective-connect-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(216, 161, 95, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.collective-connect-box h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #ffffff;
    margin-bottom: 10px;
}

.collective-connect-box p {
    font-size: 1.05rem;
    color: #d6e2dd;
    max-width: 650px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.connect-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.connect-btn.whatsapp-btn {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.connect-btn.whatsapp-btn:hover {
    background: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

.connect-btn.instagram-btn {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.connect-btn.instagram-btn:hover {
    background: #ffffff;
    color: #1f453f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .collective-connect-box {
        padding: 32px 20px;
    }

    .connect-actions {
        flex-direction: column;
        width: 100%;
    }

    .connect-btn {
        width: 100%;
        justify-content: center;
    }
}

/* WHAT MAKES US DIFFERENT REDESIGN */
.diff-header-box {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px;
}

.diff-header-box h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: #1f453f;
    margin-bottom: 10px;
}

.diff-subtitle {
    font-size: 1.08rem;
    color: #6c7d75;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.diff-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 24px;
    border: 1px solid rgba(216, 161, 95, 0.25);
    box-shadow: 0 14px 35px rgba(31, 69, 63, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.diff-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(31, 69, 63, 0.12);
    border-color: #d8a15f;
}

.diff-icon-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.diff-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(216, 161, 95, 0.14);
    color: #1f453f;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 161, 95, 0.3);
}

.diff-check {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1f453f;
    background: rgba(31, 69, 63, 0.08);
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(31, 69, 63, 0.15);
}

.diff-card h3 {
    font-size: 1.28rem;
    color: #1f453f;
    margin-bottom: 8px;
    font-weight: 700;
}

.diff-card p {
    font-size: 0.95rem;
    color: #5c6c64;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .diff-card {
        padding: 24px 20px;
    }
}

/* CUSTOMER LOVE / TESTIMONIALS REDESIGN */
.testimonial-section {
    background: linear-gradient(180deg, #f8f3ea 0%, #f3ece0 100%);
    position: relative;
}

.testimonial-header-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.testimonial-header-box h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: #1f453f;
    margin-bottom: 10px;
}

.testimonial-subtitle {
    font-size: 1.08rem;
    color: #6c7d75;
}

.testimonial-feature-banner {
    background: linear-gradient(135deg, #ffffff 0%, #faf5ec 100%);
    border-radius: 24px;
    padding: 32px 36px;
    border: 1px solid rgba(216, 161, 95, 0.35);
    box-shadow: 0 16px 40px rgba(31, 69, 63, 0.08);
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto 45px;
}

.testimonial-feature-banner .banner-icon {
    font-size: 2.8rem;
    line-height: 1;
    padding: 16px;
    background: rgba(216, 161, 95, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(216, 161, 95, 0.3);
    flex-shrink: 0;
}

.testimonial-feature-banner h3 {
    font-size: 1.35rem;
    color: #1f453f;
    margin-bottom: 6px;
}

.testimonial-feature-banner p {
    font-size: 1rem;
    color: #4a5a52;
    line-height: 1.65;
    margin: 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 26px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 26px;
    border: 1px solid rgba(216, 161, 95, 0.25);
    box-shadow: 0 14px 35px rgba(31, 69, 63, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(31, 69, 63, 0.12);
    border-color: #d8a15f;
}

.testimonial-card .card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.testimonial-card .product-tag {
    font-size: 0.82rem;
    font-weight: 700;
    color: #b28346;
    background: rgba(216, 161, 95, 0.14);
    padding: 4px 14px;
    border-radius: 999px;
    border: 1px solid rgba(216, 161, 95, 0.3);
}

.testimonial-card .stars {
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.testimonial-card h3 {
    font-size: 1.25rem;
    color: #1f453f;
    margin-bottom: 12px;
    font-weight: 700;
}

.testimonial-card .quote {
    font-size: 0.98rem;
    color: #3b4c44;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 18px;
    flex-grow: 1;
}

.testimonial-card .author {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f453f;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed rgba(216, 161, 95, 0.25);
}

@media (max-width: 768px) {
    .testimonial-feature-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }
}

/* ABOUT SECTION REDESIGN */
.about-luxury-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(216, 161, 95, 0.3);
    box-shadow: 0 18px 45px rgba(31, 69, 63, 0.07);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 44px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

.about-copy-column h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: #1f453f;
    margin-bottom: 12px;
    line-height: 1.15;
}

.about-copy-column p {
    font-size: 1.05rem;
    color: #4a5a52;
    line-height: 1.75;
    margin-bottom: 20px;
}

.about-values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.about-value-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(216, 161, 95, 0.12);
    color: #b28346;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 999px;
    border: 1px solid rgba(216, 161, 95, 0.3);
}

.about-story-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    padding: 14px 30px;
    background: linear-gradient(135deg, #1f453f 0%, #143931 100%);
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(31, 69, 63, 0.2);
    transition: all 0.35s ease;
}

.about-story-btn:hover {
    background: linear-gradient(135deg, #2a5a52 0%, #1f453f 100%);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(31, 69, 63, 0.3);
    color: #ffffff;
}

.about-founder-box {
    background: linear-gradient(145deg, #f8f4ec 0%, #f1e8da 100%);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(216, 161, 95, 0.35);
    text-align: center;
    box-shadow: 0 12px 30px rgba(31, 69, 63, 0.05);
}

.about-founder-img-wrapper {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid rgba(216, 161, 95, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about-founder-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-founder-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f453f;
    margin-bottom: 2px;
}

.about-founder-title {
    font-size: 0.88rem;
    color: #b28346;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-quote-tag {
    font-size: 0.92rem;
    font-style: italic;
    color: #5c6c64;
    line-height: 1.5;
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(216, 161, 95, 0.2);
}

@media (max-width: 900px) {
    .about-luxury-card {
        grid-template-columns: 1fr;
        padding: 32px 20px;
        gap: 28px;
    }

    .about-founder-img-wrapper {
        height: 240px;
    }
}

/* BRAND CARDS ENHANCEMENT */
.brand-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(216, 161, 95, 0.28);
    box-shadow: 0 14px 35px rgba(31, 69, 63, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}

.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(31, 69, 63, 0.12);
    border-color: #d8a15f;
}

.brand-card h3 {
    font-size: 1.5rem;
    color: #1f453f;
    margin-bottom: 12px;
}

.brand-card p {
    font-size: 0.98rem;
    color: #5c6c64;
    line-height: 1.65;
    margin-bottom: 22px;
    flex-grow: 1;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 999px;
    background: rgba(216, 161, 95, 0.12);
    color: #1f453f;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    border: 1px solid rgba(216, 161, 95, 0.3);
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #1f453f;
    color: #ffffff;
    border-color: #1f453f;
}

/* JOURNEY STORY CALLOUT ENHANCEMENT */
.journey-story-callout {
    margin-top: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #faf4ea 100%);
    border-radius: 20px;
    padding: 28px 32px;
    border: 1px solid rgba(216, 161, 95, 0.3);
    box-shadow: 0 12px 30px rgba(31, 69, 63, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.journey-story-callout p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f453f;
    margin: 0;
}

/* STORY BOX ENHANCEMENT */
.story-box {
    max-width: 920px;
    margin: 0 auto;
    background: #ffffff;
    padding: 44px 40px;
    border-radius: 24px;
    border: 1px solid rgba(216, 161, 95, 0.3);
    box-shadow: 0 18px 45px rgba(31, 69, 63, 0.07);
    text-align: center;
    position: relative;
}

.story-box::before {
    content: '“';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: rgba(216, 161, 95, 0.25);
    position: absolute;
    top: 10px;
    left: 24px;
    line-height: 1;
}

.story-box p {
    font-size: 1.06rem;
    color: #3b4c44;
    line-height: 1.75;
    margin-bottom: 16px;
}

.story-box p:last-child {
    margin-bottom: 0;
    font-weight: 700;
    color: #1f453f;
}

/* CONTACT CARDS ENHANCEMENT */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.contact-card {
    background: #ffffff;
    padding: 32px 24px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid rgba(216, 161, 95, 0.28);
    box-shadow: 0 14px 35px rgba(31, 69, 63, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(31, 69, 63, 0.1);
    border-color: #d8a15f;
}

.contact-card .contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(216, 161, 95, 0.14);
    color: #1f453f;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid rgba(216, 161, 95, 0.3);
}

.contact-card h3 {
    color: #1f453f;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.contact-card a, .contact-card p {
    color: #4a5a52;
    font-size: 0.98rem;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: #b28346;
}

/* FOOTER ENHANCEMENT */
.footer {
    background: #122320;
    color: #e2ebe7;
    padding: 60px 0 30px;
    border-top: 3px solid #d8a15f;
}

.footer-content-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    width: 100px;
    margin-bottom: 16px;
}

.footer h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.footer-location {
    color: #d8a15f;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-reg-badges {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 22px 0;
}

.reg-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(216, 161, 95, 0.3);
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #d6e2dd;
}

.reg-badge strong {
    color: #ffffff;
}

.footer .copyright {
    color: #8fa59c;
    font-size: 0.88rem;
    margin-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* LUXURY CONTACT SECTION REDESIGN */
.contact-section-wrapper {
    background: linear-gradient(180deg, #ffffff 0%, #faf5ec 100%);
}

.contact-header-box {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.contact-header-box h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: #1f453f;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 1.08rem;
    color: #6c7d75;
    line-height: 1.6;
}

.contact-luxury-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-channels-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(216, 161, 95, 0.3);
    box-shadow: 0 18px 45px rgba(31, 69, 63, 0.07);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-channel-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.channel-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(216, 161, 95, 0.15);
    color: #1f453f;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 161, 95, 0.3);
    flex-shrink: 0;
}

.channel-details h4 {
    font-size: 1.15rem;
    color: #1f453f;
    margin-bottom: 4px;
}

.channel-details p {
    font-size: 0.94rem;
    color: #5c6c64;
    line-height: 1.5;
    margin-bottom: 8px;
}

.channel-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #b28346;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.channel-link:hover {
    color: #1f453f;
}

.channel-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.25);
    transition: all 0.3s ease;
    margin-top: 4px;
}

.channel-btn-whatsapp:hover {
    background: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
}

.contact-form-card {
    background: linear-gradient(145deg, #1f453f 0%, #143931 100%);
    border-radius: 24px;
    padding: 40px;
    color: #ffffff;
    border: 1px solid rgba(216, 161, 95, 0.35);
    box-shadow: 0 20px 50px rgba(31, 69, 63, 0.2);
    display: flex;
    flex-direction: column;
}

.contact-form-card h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.contact-form-card p {
    font-size: 0.96rem;
    color: #d6e2dd;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2ebe7;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 13px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-select option {
    background: #143931;
    color: #ffffff;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: #d8a15f;
    background: rgba(255, 255, 255, 0.18);
}

.form-submit-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(90deg, #d8a15f, #b28346);
    color: #1f453f;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(216, 161, 95, 0.3);
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit-btn:hover {
    background: linear-gradient(90deg, #e5b273, #c49454);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(216, 161, 95, 0.4);
}

@media (max-width: 900px) {
    .contact-luxury-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-channels-card, .contact-form-card {
        padding: 28px 20px;
    }
}

/* ==========================================================================
   RIMI FOODS BRAND DETAIL PAGE STYLES
   ========================================================================== */

.rimi-page-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, #143d33 0%, #1f453f 60%, #0d2822 100%);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.rimi-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(216, 161, 95, 0.15), transparent 70%);
    pointer-events: none;
}

.rimi-hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(216, 161, 95, 0.2);
    color: #d8a15f;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid rgba(216, 161, 95, 0.4);
    margin-bottom: 20px;
}

.rimi-page-hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-family: 'Cormorant Garamond', serif;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.rimi-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #e2d3bf;
    max-width: 780px;
    margin: 0 auto 35px;
    font-style: italic;
    line-height: 1.6;
}

.rimi-hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.rimi-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    background: linear-gradient(90deg, #d8a15f, #b28346);
    color: #1f453f;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(216, 161, 95, 0.35);
    transition: all 0.35s ease;
}

.rimi-hero-btn-primary:hover {
    background: linear-gradient(90deg, #e5b273, #c49454);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(216, 161, 95, 0.5);
    color: #1f453f;
}

.rimi-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.35s ease;
}

.rimi-hero-btn-secondary:hover {
    background: #ffffff;
    color: #143d33;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.35);
}

/* STORY & PHILOSOPHY CARD */
.rimi-story-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px;
    border: 1px solid rgba(216, 161, 95, 0.25);
    box-shadow: 0 16px 40px rgba(31, 69, 63, 0.08);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.rimi-story-copy h2 {
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    color: #1f453f;
    margin-bottom: 18px;
    line-height: 1.2;
}

.rimi-story-copy p {
    font-size: 1.08rem;
    color: #4a5c54;
    line-height: 1.8;
    margin-bottom: 16px;
}

.rimi-story-quote-box {
    padding: 16px 20px;
    background: rgba(216, 161, 95, 0.1);
    border-left: 4px solid #d8a15f;
    border-radius: 0 14px 14px 0;
    margin-top: 20px;
}

.rimi-story-quote-box p {
    font-size: 1.02rem;
    color: #1f453f;
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

.rimi-story-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

.rimi-story-img-wrapper img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.rimi-story-img-wrapper:hover img {
    transform: scale(1.04);
}

.rimi-badge-floating {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(31, 69, 63, 0.92);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(216, 161, 95, 0.4);
}

/* PROMISES GRID */
.rimi-promises-section {
    margin-bottom: 70px;
}

.rimi-section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.rimi-section-title h2 {
    font-size: clamp(2.1rem, 4vw, 3rem);
    color: #1f453f;
    margin-bottom: 12px;
}

.rimi-section-title p {
    font-size: 1.05rem;
    color: #6c7d75;
}

.rimi-promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.rimi-promise-item {
    background: linear-gradient(145deg, #ffffff 0%, #faf6f0 100%);
    border-radius: 20px;
    padding: 30px 24px;
    border: 1px solid rgba(216, 161, 95, 0.25);
    box-shadow: 0 10px 28px rgba(31, 69, 63, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-align: center;
}

.rimi-promise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(31, 69, 63, 0.1);
    border-color: #d8a15f;
}

.rimi-promise-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    display: inline-block;
}

.rimi-promise-item h3 {
    font-size: 1.25rem;
    color: #1f453f;
    margin-bottom: 10px;
}

.rimi-promise-item p {
    font-size: 0.95rem;
    color: #5c6c64;
    line-height: 1.6;
    margin: 0;
}

/* PRODUCT SHOWCASE CATEGORIES */
.rimi-category-block {
    margin-bottom: 60px;
}

.rimi-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(216, 161, 95, 0.3);
}

.rimi-category-header h3 {
    font-size: 1.75rem;
    color: #1f453f;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rimi-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.rimi-food-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(216, 161, 95, 0.25);
    box-shadow: 0 12px 32px rgba(31, 69, 63, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.rimi-food-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(31, 69, 63, 0.12);
    border-color: #d8a15f;
}

.rimi-food-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.rimi-food-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rimi-food-card:hover .rimi-food-img img {
    transform: scale(1.06);
}

.rimi-food-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(31, 69, 63, 0.88);
    color: #d8a15f;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(216, 161, 95, 0.3);
}

.rimi-food-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rimi-food-info h4 {
    font-size: 1.3rem;
    color: #1f453f;
    margin-bottom: 8px;
}

.rimi-food-info p {
    font-size: 0.95rem;
    color: #5c6c64;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.rimi-food-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(216, 161, 95, 0.12);
    color: #1f453f;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid rgba(216, 161, 95, 0.35);
    transition: all 0.3s ease;
}

.rimi-food-btn:hover {
    background: #1f453f;
    color: #ffffff;
    border-color: #1f453f;
}

/* CUSTOM ORDER CTA BANNER */
.rimi-custom-cta {
    background: linear-gradient(135deg, #1f453f 0%, #143d33 100%);
    border-radius: 24px;
    padding: 48px 36px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    box-shadow: 0 16px 40px rgba(31, 69, 63, 0.2);
}

.rimi-custom-cta h3 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    color: #ffffff;
    margin-bottom: 14px;
}

.rimi-custom-cta p {
    font-size: 1.1rem;
    color: #e2d3bf;
    max-width: 680px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.rimi-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.rimi-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.35s ease;
}

.rimi-wa-btn:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

.rimi-insta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.35);
    transition: all 0.35s ease;
}

.rimi-insta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(220, 39, 67, 0.5);
    color: #ffffff;
}

@media (max-width: 900px) {
    .rimi-story-card {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
    }

    .rimi-story-img-wrapper img {
        height: 280px;
    }

    .rimi-custom-cta {
        padding: 36px 20px;
    }
}
