:root {
    --primary-accent-v2: #A090D0; /* A muted, sophisticated Lilac */
    --primary-accent-v2-darker-10: #8979BE; /* Approx 10% darker than #A090D0 */
    --primary-accent-v2-darker-8: #8E7EC6;  /* Approx 8% darker than #A090D0 */
    --secondary-accent-v2: #F5F3FB; /* Very light lavender for backgrounds */
    --text-dark-v2: #2c2a35; /* Deep eggplant for primary text */
    --text-medium-v2: #5a5766;
    --text-light-v2: #8d8aa0;
    --bg-main-v2: #FFFFFF;
    --bg-offset-v2: #FAF9FE; /* Slightly off-white for section variety */
    --border-subtle-v2: #EAE8F3;
    --shadow-soft-v2: rgba(44, 42, 53, 0.06);
    --shadow-medium-v2: rgba(44, 42, 53, 0.1);

    --font-heading-v2: 'Playfair Display', serif;
    --font-body-v2: 'Poppins', sans-serif;

    --header-height-v2: 80px;
    --border-radius-v2: 6px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size for rem units */
}

body {
    font-family: var(--font-body-v2);
    line-height: 1.75;
    color: var(--text-medium-v2);
    background-color: var(--bg-main-v2);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.site-wrapper {
    overflow-x: hidden; /* Prevent horizontal scroll from AOS */
}

.container-v2 { /* Global container style */
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px; /* Default side padding */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-accent-v2);
    transition: color 0.3s ease-in-out;
}
a:hover {
    color: var(--primary-accent-v2-darker-10); /* UPDATED: Replaced darken() */
}

h1, h2, h3, h4 {
    font-family: var(--font-heading-v2);
    color: var(--text-dark-v2);
    line-height: 1.3;
    margin-bottom: 0.75em;
    font-weight: 700;
}
h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; color: var(--primary-accent-v2); } /* Product titles */
p { margin-bottom: 1.5em; }

section {
    padding: 100px 0;
    position: relative;
}
.section-subtitle-v2 {
    display: block;
    font-family: var(--font-body-v2);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-accent-v2);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.8em;
}
.section-header-v2 {
    text-align: center;
    margin-bottom: 60px;
}
.section-header-v2 p { 
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-medium-v2);
    font-size: 1.05rem;
}


.section-logo-subtitle-v2 {
    display: block;
    margin: 0 auto 15px auto;
    max-width: 180px;
    height: auto;
}


/* General visibility helpers for hero content */
.mobile-only-hero-content {
    display: none;
}

/* --- Header & Navigation V2 --- */
.site-header-v2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
    box-shadow: none;
}
.site-header-v2.sticky {
    padding: 0;
    box-shadow: 0 2px 15px var(--shadow-soft-v2);
    background-color: rgba(255, 255, 255, 0.95);
}
.nav-container-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height-v2);
    transition: height 0.3s ease-in-out;
}
.site-header-v2.sticky .nav-container-v2 {
    height: calc(var(--header-height-v2) - 10px);
}

.logo-v2 {
    display: inline-block;
    line-height: 0;
    transition: opacity 0.3s ease;
}

.logo-v2 img {
    max-height: 75px;
    width: auto;
    vertical-align: middle;
}


.main-nav-v2 ul {
    list-style: none;
    display: flex;
    align-items: center;
}
.main-nav-v2 ul li {
    margin-left: 35px;
}
.main-nav-v2 ul li a {
    color: var(--text-medium-v2);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.3px;
}
.main-nav-v2 ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-accent-v2);
    transition: width 0.35s ease-in-out;
}
.main-nav-v2 ul li a:hover::after,
.main-nav-v2 ul li a.active::after {
    width: 60%;
}
.main-nav-v2 ul li a.active {
    color: var(--primary-accent-v2);
}

.nav-toggle-v2 { display: none; }

/* --- Hero Section V2 (Homepage - DESKTOP Styles) --- */
.hero-section-v2 {
    min-height: 90vh;
    padding-top: var(--header-height-v2);
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--bg-offset-v2);
    overflow: hidden;
}
.hero-background-image-v2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://jennerafiller.com/wp-content/uploads/2024/06/BG-to1p-copy-scaled.jpg');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.6;
}
.hero-section-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-offset-v2) 30%, rgba(250, 249, 254, 0.5) 60%, rgba(250, 249, 254, 0) 100%);
    z-index: 1;
}
.hero-content-container-v2 {
    position: relative;
    z-index: 2;
}
.hero-text-v2 {
    max-width: 55%;
}
.hero-subtitle-v2.desktop-only-hero-content {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-accent-v2);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1em;
}
.hero-text-v2 .desktop-hero-h1.desktop-only-hero-content {
    color: var(--text-dark-v2);
    margin-bottom: 0.5em;
}
.hero-text-v2 .desktop-hero-p.desktop-only-hero-content {
    font-size: 1.1rem;
    color: var(--text-medium-v2);
    max-width: 90%;
    margin-bottom: 2em;
}


/* --- About Section V2 (Homepage Snippet - DESKTOP Styles) --- */
section#about-v2.about-section-v2,
.about-section-v2:not(.about-hero-section-v2):not(.core-pillars-section-v2):not(.product-list-page-section-v2) { 
    background-color: var(--bg-main-v2);
}
section#about-v2 .about-grid-v2,
.about-section-v2:not(.about-hero-section-v2):not(.core-pillars-section-v2) .about-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}
section#about-v2 .about-image-v2 img,
.about-section-v2:not(.about-hero-section-v2):not(.core-pillars-section-v2) .about-image-v2 img {
    border-radius: var(--border-radius-v2);
    box-shadow: 0 15px 40px var(--shadow-medium-v2);
}
section#about-v2 .about-text-v2 h2,
.about-section-v2:not(.about-hero-section-v2):not(.core-pillars-section-v2) .about-text-v2 h2 {
    margin-bottom: 0.6em;
}
.link-styled-v2 {
    font-weight: 600;
    color: var(--primary-accent-v2);
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}
.link-styled-v2 i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.link-styled-v2:hover {
    color: var(--primary-accent-v2-darker-10); /* UPDATED: Replaced darken() */
}
.link-styled-v2:hover i {
    transform: translateX(5px);
}

/* --- Products Section V2 (Homepage & Product List Page) --- */
.products-section-v2 {
    background-color: var(--bg-main-v2);
}
.product-list-page-section-v2 { 
    background-color: var(--bg-main-v2); 
    padding-top: 80px; 
}
.product-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}
.product-card-v2 {
    background-color: var(--bg-main-v2);
    border-radius: var(--border-radius-v2);
    box-shadow: 0 8px 25px var(--shadow-soft-v2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--shadow-medium-v2);
}
.product-card-image-v2 {
    background-color: #f6f7f8; 
    padding: 30px 20px;
    text-align: center;
    min-height: 450px; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card-image-v2 img {
    max-height: 400px; 
    object-fit: contain;
}
.product-card-content-v2 {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px; 
}
.product-card-content-v2 h3 {
    margin-top: 0;
    margin-bottom: 0.5em;
}
.product-card-content-v2 p {
    font-size: 0.9rem;
    color: var(--text-light-v2);
    margin-bottom: 1.5em;
    flex-grow: 1;
}
.view-all-products-v2 { 
    text-align: center;
    margin-top: 50px; 
}

/* --- Buttons V2 --- */
.btn-v2 {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(160, 144, 208, 0.2);
}
.btn-primary-v2 {
    background-color: var(--primary-accent-v2);
    color: white;
    border-color: var(--primary-accent-v2); /* Ensure border color matches bg for consistent look */
}
.btn-primary-v2:hover {
    background-color: var(--bg-main-v2);         /* CHANGED: White background */
    color: var(--primary-accent-v2);             /* CHANGED: Text color to accent */
    border-color: var(--primary-accent-v2);      /* CHANGED: Border color to accent */
    box-shadow: 0 6px 18px rgba(160, 144, 208, 0.3); 
    transform: translateY(-2px);
}
.btn-outline-v2 {
    border-color: var(--primary-accent-v2);
    color: var(--primary-accent-v2);
    box-shadow: none;
}
.btn-outline-v2:hover {
    background-color: var(--primary-accent-v2);
    color: white;
    border-color: var(--primary-accent-v2); /* Ensure border color consistent on hover */
    transform: translateY(-2px);
}

/* --- Footer V2 --- */
.site-footer-main-v2 {
    background-color: var(--text-dark-v2);
    color: #c5c2d4;
    padding: 80px 0 0;
    font-size: 0.95rem;
}
.footer-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px 30px;
    margin-bottom: 60px;
}
.footer-column-v2 h4 {
    color: var(--bg-main-v2);
    font-family: var(--font-body-v2);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.footer-brand-v2 .logo-v2.footer-logo-img {
    margin-bottom: 15px;
    display: inline-block;
}
.footer-brand-v2 .logo-v2.footer-logo-img img {
    max-height: 50px;
}
.footer-brand-v2 p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.social-links-v2 {
    list-style: none;
    display: flex;
    gap: 15px;
}
.social-links-v2 li a {
    color: #c5c2d4;
    font-size: 1.1rem; 
    display: inline-flex; 
    align-items: center;    
    justify-content: center;
    width: 36px;            
    height: 36px;           
    line-height: 1;         
    text-align: center;     
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; 
}
.social-links-v2 li a:hover {
    color: var(--bg-main-v2);
    background-color: var(--primary-accent-v2);
    border-color: var(--primary-accent-v2);
}

.social-links-v2 li a i {
    line-height: 1; 
    margin: 0;      
    padding: 0;     
}
.footer-links-v2, .contact-info-v2 {
    list-style: none;
}
.footer-links-v2 li, .contact-info-v2 li {
    margin-bottom: 12px;
}
.footer-links-v2 li a, .contact-info-v2 li a {
    color: #c5c2d4;
}
.footer-links-v2 li a:hover, .contact-info-v2 li a:hover {
    color: var(--bg-main-v2);
    text-decoration: underline;
}
.contact-info-v2 li i {
    margin-right: 10px;
    color: var(--primary-accent-v2);
    width: 18px;
}
.footer-bottom-v2 {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #a09cb3;
}
.footer-bottom-v2 .fa-heart { color: var(--primary-accent-v2); }

/* --- WhatsApp Float V2 --- */
.whatsapp-float-v2 {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-float-v2:hover { background-color: #1DAE51; color: #FFF; }


/* --- Responsive Design V2 (Main Site & Global Mobile) --- */
@media (max-width: 992px) {
    /* Homepage Hero Snippet Responsive */
    section#hero-v2 .hero-text-v2 {
        max-width: 70%;
    }
    /* Homepage About Snippet Responsive */
    section#about-v2.about-section-v2 .about-grid-v2 {
        grid-template-columns: 1fr;
    }
    section#about-v2.about-section-v2 .about-image-v2 {
        order: 1; margin-bottom: 40px;
    }
    section#about-v2.about-section-v2 .about-text-v2 {
        order: 2; text-align: center;
    }
    section#about-v2.about-section-v2 .about-text-v2 .link-styled-v2 {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    section:not(.hero-section-v2):not(.about-hero-section-v2):not(.product-list-hero-v2):not(.contact-hero-v2) { 
         padding: 70px 0;
    }

    .about-hero-section-v2 h1 {
        font-size: 2.5rem !important; 
        line-height: 1.2 !important;  
    }

    /* --- START: MOBILE HERO SECTION STYLES (Homepage) --- */
    .hero-section-v2 {
        display: flex;
        flex-direction: column;
        min-height: 85vh;
        padding-top: var(--header-height-v2);
        padding-bottom: 0;
        background-color: var(--bg-offset-v2);
        overflow: hidden;
        justify-content: flex-start;
    }

    .hero-background-image-v2,
    .hero-section-v2::before {
        display: none;
    }

    section.hero-section-v2 > .container-v2.hero-content-container-v2 {
        width: 100%;
        max-width: 100%;
        padding: 20px 0px 0 0px;
        margin-left: 0;
        margin-right: 0;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        justify-content: space-between;
        align-items: center;
    }

    .hero-text-v2 {
        order: 1;
        width: 100%;
        max-width: 100%;
        margin: 30px 0;
        text-align: center;
        position: relative;
        z-index: 1;
        padding: 10px 5px;
    }

    .hero-text-v2::before {
        content: "Jennera";
        display: block;
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-weight: 600;
        font-size: clamp(70px, 20vw, 130px);
        color: var(--primary-accent-v2);
        opacity: 0.05;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-5deg);
        z-index: -1;
        line-height: 0.7;
        pointer-events: none;
        white-space: nowrap;
    }

    .desktop-only-hero-content {
        display: none !important;
    }
    .mobile-only-hero-content {
        display: block !important;
    }
    .hero-image-mobile-v2.mobile-only-hero-content {
         display: block !important;
    }

    .hero-text-v2 .mobile-hero-h1.mobile-only-hero-content {
        font-size: clamp(1.05rem, 4.3vw, 1.45rem);
        color: var(--text-dark-v2);
        line-height: 1.5;
        margin-bottom: 0;
        font-weight: 700;
    }

    .hero-image-mobile-v2.mobile-only-hero-content {
        order: 2;
        width: 100%;
        max-height: 50vh;
        object-fit: cover;
        object-position: center top;
        margin-top: auto;
    }
    /* --- END: MOBILE HERO SECTION STYLES (Homepage) --- */

    /* --- START: MOBILE HOMEPAGE "ABOUT" SECTION FULL WIDTH --- */
    section#about-v2.about-section-v2 > .container-v2 {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }
    section#about-v2.about-section-v2 .about-image-v2 img {
        border-radius: 0;
        box-shadow: none;
    }
    section#about-v2.about-section-v2 .about-text-v2 {
        padding: 0 15px;
        text-align: center;
    }
    /* --- END: MOBILE HOMEPAGE "ABOUT" SECTION FULL WIDTH --- */


    /* Global Mobile Navigation Styles */
    .nav-toggle-v2 {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10;
    }
    .nav-toggle-v2 span {
        width: 100%;
        height: 3px;
        background-color: var(--text-dark-v2);
        border-radius: 10px;
        transition: all 0.3s linear;
        position: relative;
        transform-origin: 1px;
    }
    .nav-toggle-v2.open span:nth-child(1) { transform: rotate(45deg); }
    .nav-toggle-v2.open span:nth-child(2) { opacity: 0; transform: translateX(20px); }
    .nav-toggle-v2.open span:nth-child(3) { transform: rotate(-45deg); }

    .main-nav-v2 ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--header-height-v2);
        left: 0;
        width: 100%;
        background-color: var(--bg-main-v2);
        box-shadow: 0 10px 20px var(--shadow-soft-v2);
        padding: 15px 0;
    }
    .site-header-v2.sticky .main-nav-v2 ul {
        top: calc(var(--header-height-v2) - 10px);
    }
    .main-nav-v2 ul.active { display: flex; }
    .main-nav-v2 ul li { margin: 0; width: 100%; text-align: center; }
    .main-nav-v2 ul li a { display: block; padding: 15px; width: 100%; }
    .main-nav-v2 ul li a::after { display: none; }
    .main-nav-v2 ul li a.active { background-color: var(--secondary-accent-v2); }

    /* Global Footer Responsive */
    .footer-grid-v2 { text-align: center; }
    .footer-brand-v2 .logo-v2.footer-logo-img,
    .footer-column-v2 h4 {
        display: block;
        text-align: center;
    }
    .social-links-v2 { justify-content: center; }
    .contact-info-v2 li { justify-content: center; }

    /* Product card responsive adjustments */
    .product-card-image-v2 {
        min-height: 300px; 
    }
    .product-card-image-v2 img {
        max-height: 650px; 
    }

    .commitment-section-v2 .final-assurance-image-v2 img {
        max-width: 300px; 
        margin: 0 auto 10px auto; 
    }
    .site-footer-main-v2 .footer-column-v2 {
        text-align: center;
        margin-bottom: 30px;
    }

    .site-footer-main-v2 .footer-column-v2:last-child {
        margin-bottom: 0;
    }

    .site-footer-main-v2 .footer-brand-v2 .logo-v2.footer-logo-img {
        display: inline-block; 
        margin-bottom: 15px;
    }
    
    .site-footer-main-v2 .footer-brand-v2 .logo-v2.footer-logo-img img {
        max-height: 80px; 
    }

    .site-footer-main-v2 .social-links-v2 {
        justify-content: center; 
    }

}

@media (max-width: 480px) {
    html { font-size: 14px; }
    .btn-v2 { padding: 12px 28px; font-size: 0.9rem; }
    section.products-section-v2 .product-card-content-v2 { 
        padding: 20px;
    }
    section.products-section-v2 .product-card-image-v2 { 
        min-height: 280px; 
    }
    section.products-section-v2 .product-card-image-v2 img { 
        max-height: 620px; 
    }
}

/* ==========================================================================
   ABOUT PAGE SPECIFIC STYLES (MERGED)
   ========================================================================== */

.about-hero-section-v2 {
    padding: 120px 0 80px;
    background-color: var(--secondary-accent-v2);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-hero-background-v2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://jennerafiller.com/wp-content/uploads/2020/08/about-us-bg-blured.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}
.about-hero-section-v2 .container-v2 {
    position: relative;
    z-index: 1;
}
.about-hero-section-v2 h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: 0.4em;
}
.lead-text-v2 { 
    font-size: 1.15rem;
    color: var(--text-medium-v2);
    max-width: 800px;
    margin: 0 auto 1em auto;
    line-height: 1.8;
}
.text-center { text-align: center !important; }

.core-pillars-section-v2 {
    background-color: var(--bg-main-v2);
}
.pillars-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.pillar-card-v2 {
    background-color: var(--bg-offset-v2);
    padding: 30px;
    border-radius: var(--border-radius-v2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-subtle-v2);
}
.pillar-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-soft-v2);
}
.pillar-icon-v2 {
    font-size: 2.5rem;
    color: var(--primary-accent-v2);
    margin-bottom: 20px;
    line-height: 1;
}
.pillar-card-v2 h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark-v2);
}
.pillar-card-v2 p {
    font-size: 0.9rem;
    color: var(--text-light-v2);
    margin-bottom: 0;
}

.brand-overview-section-v2 {
    background-color: var(--bg-main-v2);
}
section.brand-overview-section-v2 .overview-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
section.brand-overview-section-v2 .overview-text-v2 h4 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: var(--primary-accent-v2);
}
section.brand-overview-section-v2 .overview-text-v2 ul {
    list-style: none;
    padding-left: 0;
}
section.brand-overview-section-v2 .overview-text-v2 ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 0.8em;
    font-size: 0.95rem;
}
section.brand-overview-section-v2 .overview-text-v2 ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-accent-v2);
}
section.brand-overview-section-v2 .overview-image-v2 img {
    border-radius: var(--border-radius-v2);
    box-shadow: 0 10px 30px var(--shadow-medium-v2);
}

.technology-section-v2 .section-header-v2 p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.technology-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.tech-image-item-v2 img {
    border-radius: var(--border-radius-v2);
    border: 1px solid var(--border-subtle-v2);
    margin-bottom: 10px;
}
.caption {
    font-size: 0.85rem;
    color: var(--text-light-v2);
    text-align: center;
    margin-top: 5px;
}
.viscoelasticity-chart-v2 {
    text-align: center;
    margin-top: 40px;
}
.viscoelasticity-chart-v2 h3 {
    margin-bottom: 20px;
    color: var(--text-dark-v2);
}
.viscoelasticity-chart-v2 img {
    max-width: 100%;
    border-radius: var(--border-radius-v2);
    border: 1px solid var(--border-subtle-v2);
}

.specifications-section-v2 {
    background-color: var(--bg-main-v2);
}
.product-spec-image-container img {
    max-width: 1800px!important; 
    width: 100%;
    border-radius: var(--border-radius-v2);
    box-shadow: 0 8px 25px var(--shadow-soft-v2);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.injection-tech-section-v2 .injection-grid-v2 {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}
.injection-tech-section-v2 .injection-image-v2 img {
    max-width: 100%;
    filter: drop-shadow(5px 5px 15px var(--shadow-soft-v2));
}
.injection-tech-section-v2 .injection-text-v2 h3 {
    color: var(--primary-accent-v2);
    margin-bottom: 0.8em;
}
.injection-tech-section-v2 .injection-text-v2 h4 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: var(--text-dark-v2);
    font-size: 1.1rem;
}
.injection-tech-section-v2 .injection-text-v2 ul {
    list-style: none;
    padding-left: 0;
}
.injection-tech-section-v2 .injection-text-v2 ul li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 0.6em;
    font-size: 0.95rem;
}
.injection-tech-section-v2 .injection-text-v2 ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-accent-v2);
    font-size: 1.2em;
    line-height: 1;
}

.protocol-map-section-v2 {
    background-color: var(--bg-main-v2);
    text-align: center;
}
.protocol-map-image-v2 {
    max-width: 100%;
    border-radius: var(--border-radius-v2);
    box-shadow: 0 8px 25px var(--shadow-soft-v2);
}

.before-after-section-v2 .before-after-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.before-after-section-v2 .ba-card-v2 {
    text-align: center;
}
.before-after-section-v2 .ba-card-v2 img {
    width: 100%;
    border-radius: var(--border-radius-v2);
    margin-bottom: 10px;
    border: 1px solid var(--border-subtle-v2);
    box-shadow: 0 5px 15px var(--shadow-soft-v2);
}
.before-after-section-v2 .ba-card-v2 p {
    font-size: 0.9rem;
    color: var(--text-medium-v2);
    font-weight: 500;
}

.commitment-section-v2 .commitment-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start; 
    margin-bottom: 50px;
}
.commitment-section-v2 .commitment-text-v2 h3 {
    margin-top: 1.5em;
    color: var(--primary-accent-v2);
}
.commitment-section-v2 .commitment-text-v2 ul {
    list-style: none;
    padding-left: 0;
}
.commitment-section-v2 .commitment-text-v2 ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 0.8em;
    font-size: 0.95rem;
}
.commitment-section-v2 .commitment-text-v2 ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-accent-v2);
}
.commitment-section-v2 .certificates-gallery-v2 {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100%; 
}
.commitment-section-v2 .certificates-gallery-v2 img {
    max-width: 100%; 
    max-height: 400px; 
    object-fit: contain; 
    border-radius: var(--border-radius-v2);
    border: 1px solid var(--border-subtle-v2);
    box-shadow: 0 5px 15px var(--shadow-soft-v2);
}
.commitment-section-v2 .final-assurance-image-v2 {
    text-align: center;
    margin-top: 40px;
}
.commitment-section-v2 .final-assurance-image-v2 img {
    display: block; 
    max-width: 700px;
    margin: 0 auto 10px auto; 
    border-radius: var(--border-radius-v2);
}

.commitment-section-v2 .commitment-text-v2 .section-logo-subtitle-v2 {
    margin: 0 0 15px 0; 
}

@media (max-width: 992px) {
    section.brand-overview-section-v2 .overview-grid-v2 {
        grid-template-columns: 1fr;
    }
    section.brand-overview-section-v2 .overview-image-v2 {
        margin-top: 30px;
        order: -1;
    }
    .commitment-section-v2 .commitment-grid-v2 {
        grid-template-columns: 1fr; 
    }
    .commitment-section-v2 .certificates-gallery-v2 {
        margin-top: 30px; 
    }
}

@media (max-width: 768px) {
    .about-hero-section-v2 {
        padding: 100px 0 60px;
    }
    .injection-tech-section-v2 .injection-grid-v2 {
        grid-template-columns: 1fr;
    }
    .injection-tech-section-v2 .injection-image-v2 {
        margin-bottom: 30px;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    .injection-tech-section-v2 .injection-text-v2 {
        text-align: center;
    }
    .injection-tech-section-v2 .injection-text-v2 ul {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .commitment-section-v2 .final-assurance-image-v2 img {
        max-width: 300px;
        margin: 0 auto 10px auto; 
    }
    .site-footer-main-v2 .footer-column-v2 {
        text-align: center; 
        margin-bottom: 30px; 
    }
    .site-footer-main-v2 .footer-column-v2:last-child {
        margin-bottom: 0; 
    }
    .site-footer-main-v2 .footer-brand-v2 .logo-v2.footer-logo-img {
        margin-left: auto;  
        margin-right: auto; 
        margin-bottom: 15px; 
    }
    .site-footer-main-v2 .footer-brand-v2 .logo-v2.footer-logo-img img {
         max-height: 40px; 
    }
    .site-footer-main-v2 .social-links-v2 {
        justify-content: center; 
    }
    .site-footer-main-v2 .contact-info-v2 li {
        display: flex;
        flex-direction: column; 
        align-items: center;   
    }
    .site-footer-main-v2 .contact-info-v2 li i {
        margin-right: 0; 
        margin-bottom: 5px; 
    }
    .site-footer-main-v2 .footer-bottom-v2 {
        padding: 20px 0; 
    }
    .site-footer-main-v2 .footer-bottom-v2 p {
        font-size: 0.8rem; 
    }
}

@media (max-width: 480px) {
    .core-pillars-section-v2 .pillars-grid-v2 {
        grid-template-columns: 1fr;
    }
     .before-after-section-v2 .before-after-grid-v2 {
        grid-template-columns: 1fr;
    }
    .commitment-section-v2 .certificates-gallery-v2 img {
        max-height: 300px; 
    }
    .about-hero-section-v2 h1 {
        font-size: clamp(1.9rem, 7vw, 2.3rem); 
        line-height: 1.2; 
    }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE STYLES
   ========================================================================== */

.product-detail-hero-v2 {
    padding-top: calc(var(--header-height-v2) + 40px); 
    padding-bottom: 80px;
    background-color: var(--bg-offset-v2); 
}
.product-detail-breadcrumb-v2 {
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: var(--text-light-v2);
}
.product-detail-breadcrumb-v2 a {
    color: var(--text-medium-v2);
    transition: color 0.3s ease;
}
.product-detail-breadcrumb-v2 a:hover {
    color: var(--primary-accent-v2);
}
.product-detail-breadcrumb-v2 i {
    margin: 0 8px;
    font-size: 0.7rem;
}
.product-detail-breadcrumb-v2 span {
    color: var(--primary-accent-v2);
    font-weight: 500;
}
.product-detail-main-v2 {
    display: grid;
    grid-template-columns: 1fr 1.2fr; 
    gap: 60px;
    align-items: center;
}
.product-detail-image-v2 {
    position: relative;
    background-color: #fff; 
    padding: 30px;
    border-radius: var(--border-radius-v2);
    box-shadow: 0 10px 30px var(--shadow-soft-v2);
    text-align: center;
}
.product-detail-image-v2 img {
    max-width: 100%;
    max-height: 500px; 
    object-fit: contain;
    margin: 0 auto; 
}
.product-badge-v2 {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-accent-v2);
    color: white;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-detail-info-v2 .section-subtitle-v2 {
    margin-bottom: 0.5em;
}
.product-detail-info-v2 h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem); 
    margin-bottom: 0.4em;
}
.product-detail-tagline-v2 {
    font-size: 1.1rem;
    color: var(--text-medium-v2);
    margin-bottom: 1.5em;
    line-height: 1.7;
}
.product-key-benefits-v2 {
    margin-bottom: 2em;
}
.benefit-item-v2 {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-dark-v2);
    margin-bottom: 0.8em;
}
.benefit-item-v2 i {
    color: var(--primary-accent-v2);
    margin-right: 10px;
    font-size: 1.1em;
}
.benefit-item-v2 .fa-star { 
    color: #FFD700; 
}
.product-detail-info-v2 .btn-primary-v2 {
    padding: 16px 40px; 
}
.product-tabs-section-v2 {
    padding: 80px 0;
    background-color: var(--bg-main-v2);
}
.product-tabs-nav-v2 {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-subtle-v2);
}
.tab-link-v2 {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light-v2);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    margin: 0 5px;
}
.tab-link-v2::after {
    content: '';
    position: absolute;
    bottom: -1px; 
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-accent-v2);
    transition: width 0.3s ease;
}
.tab-link-v2.active,
.tab-link-v2:hover {
    color: var(--primary-accent-v2);
}
.tab-link-v2.active::after {
    width: 100%;
}
.product-tab-content-v2 {
    display: none;
    animation: fadeInTab 0.5s ease-in-out;
}
.product-tab-content-v2.active {
    display: block;
}
@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.product-tab-content-v2 h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1em;
    text-align: center;
    color: var(--text-dark-v2);
}
.product-tab-content-v2 h4 {
    font-size: 1.1rem;
    color: var(--primary-accent-v2);
    font-family: var(--font-body-v2);
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.7em;
}
.product-tab-content-v2 ul {
    list-style: none;
    padding-left: 0;
}
.product-tab-content-v2 ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.7em;
    color: var(--text-medium-v2);
}
.product-tab-content-v2 ul li::before {
    content: '\f00c'; 
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-accent-v2);
}
.product-specs-table-v2 {
    width: 100%;
    max-width: 800px; 
    margin: 20px auto;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.product-specs-table-v2 td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-subtle-v2);
    color: var(--text-medium-v2);
}
.product-specs-table-v2 tr:last-child td {
    border-bottom: none;
}
.product-specs-table-v2 td:first-child {
    font-weight: 500;
    color: var(--text-dark-v2);
    width: 35%; 
}
.product-specs-table-v2 strong { 
    font-weight: 600; 
}
.indications-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 30px;
}
.indication-item-v2 {
    background-color: var(--bg-offset-v2);
    border-radius: var(--border-radius-v2);
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-subtle-v2);
    transition: box-shadow 0.3s ease;
}
.indication-item-v2:hover {
    box-shadow: 0 5px 15px var(--shadow-soft-v2);
}
.indication-item-v2 img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: cover;
    border-radius: calc(var(--border-radius-v2) - 5px);
    margin-bottom: 15px;
}
.indication-item-v2 h4 {
    font-size: 1.1rem;
    color: var(--primary-accent-v2);
    margin-top: 0;
    margin-bottom: 0.5em;
}
.indication-item-v2 p {
    font-size: 0.9rem;
    color: var(--text-light-v2);
    margin-bottom: 0;
}
.disclaimer-v2 {
    font-size: 0.85rem;
    color: var(--text-light-v2);
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background-color: var(--bg-offset-v2);
    border-radius: var(--border-radius-v2);
    border: 1px dashed var(--border-subtle-v2);
}
.disclaimer-v2 strong {
    color: var(--text-medium-v2);
}
#related-products-v2 {
    background-color: var(--bg-offset-v2); 
}
#related-products-v2 .section-header-v2 h2 {
    color: var(--text-dark-v2);
}

@media (max-width: 992px) {
    .product-detail-main-v2 {
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    .product-detail-image-v2 {
        margin-bottom: 0; 
        padding: 20px;
    }
    .product-detail-image-v2 img {
        max-height: 400px;
    }
    .product-detail-info-v2 {
        text-align: center;
    }
    .product-key-benefits-v2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px; 
    }
    .benefit-item-v2 {
        margin-bottom: 0.5em; 
    }
    .product-detail-info-v2 .btn-primary-v2 {
        width: auto; 
        display: inline-block;
    }
}
@media (max-width: 768px) {
    .product-detail-hero-v2 {
        padding-top: calc(var(--header-height-v2) + 20px);
        padding-bottom: 60px;
    }
    .product-detail-breadcrumb-v2 {
        margin-bottom: 20px;
        padding: 0 15px; 
    }
    .product-detail-main-v2 {
        gap: 30px;
    }
    .product-detail-info-v2 h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    .product-detail-tagline-v2 {
        font-size: 1rem;
    }
    .product-tabs-nav-v2 {
        flex-wrap: wrap; 
        justify-content: flex-start;
        padding: 0 10px;
    }
    .tab-link-v2 {
        padding: 12px 18px;
        font-size: 0.9rem;
        margin: 0 2px 5px 2px; 
        flex-grow: 1; 
        text-align: center;
    }
    .product-specs-table-v2 td {
        padding: 10px;
        font-size: 0.9rem;
    }
    .product-specs-table-v2 td:first-child {
        width: 40%;
    }
    .indications-grid-v2 {
        grid-template-columns: 1fr; 
    }
}
@media (max-width: 480px) {
    .product-detail-image-v2 img {
        max-height: 300px;
    }
    .benefit-item-v2 {
        font-size: 0.9rem;
    }
    .product-tabs-nav-v2 {
        justify-content: center;
    }
    .tab-link-v2 {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
    .product-tab-content-v2 h2 {
        font-size: 1.6rem;
    }
    .product-specs-table-v2 {
        font-size: 0.85rem;
    }
    .product-specs-table-v2 td {
        display: block; 
        width: 100%;
        text-align: left;
        padding-left: 0; 
    }
    .product-specs-table-v2 td:first-child {
        font-weight: 600;
        background-color: var(--bg-offset-v2);
        padding: 8px 10px;
        border-top: 1px solid var(--border-subtle-v2);
    }
    .product-specs-table-v2 tr:first-child td:first-child {
        border-top: none;
    }
     .product-specs-table-v2 td:last-child {
        padding-bottom: 10px; 
    }
    .product-specs-table-v2 td:not(:first-child) {
         padding-left: 15px; 
    }
}

/* ==========================================================================
   PRODUCT LIST PAGE STYLES
   ========================================================================== */

.product-list-hero-v2 {
    padding: 100px 0 80px; 
    padding-top: calc(var(--header-height-v2) + 60px); 
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-accent-v2); 
}
.product-list-hero-background-v2 { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://jennerafiller.com/wp-content/uploads/2020/08/about-us-bg-blured.jpg'); 
    background-size: cover;
    background-position: center;
    opacity: 0.07; 
    z-index: 0;
}
.product-list-hero-v2 .container-v2 {
    position: relative;
    z-index: 1;
}
.product-list-hero-v2 h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem); 
    margin-bottom: 0.3em;
    color: var(--text-dark-v2);
}
.cta-section-v2 {
    background-color: var(--bg-offset-v2);
    padding: 80px 0;
}
.cta-section-v2 h2 {
    color: var(--text-dark-v2);
    margin-bottom: 0.5em;
}
.cta-section-v2 p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2em;
    color: var(--text-medium-v2);
}

@media (max-width: 768px) {
    .product-list-hero-v2 {
        padding: 80px 0 60px;
        padding-top: calc(var(--header-height-v2) + 40px);
    }
    .product-list-hero-v2 h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .product-list-page-section-v2 {
        padding-top: 60px;
    }
    .cta-section-v2 {
        padding: 60px 0;
    }
}
@media (max-width: 480px) {
    .product-list-hero-v2 {
        padding: 60px 0 40px;
        padding-top: calc(var(--header-height-v2) + 30px);
    }
    .product-list-hero-v2 h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .lead-text-v2 { 
        font-size: 1rem;
    }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-hero-v2 {
    padding: 100px 0 80px;
    padding-top: calc(var(--header-height-v2) + 60px);
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-accent-v2); 
}
.contact-hero-background-v2 { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://jennerafiller.com/wp-content/uploads/2020/08/contact-hero-bg.jpg'); 
    background-size: cover;
    background-position: center;
    opacity: 0.1; 
    z-index: 0;
}
.contact-hero-v2 .container-v2 {
    position: relative;
    z-index: 1;
}
.contact-hero-v2 h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    margin-bottom: 0.3em;
    color: var(--text-dark-v2);
}

.contact-main-section-v2 {
    padding: 80px 0;
    background-color: var(--bg-main-v2);
}
.contact-grid-v2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr; 
    gap: 50px;
}
.contact-form-header-v2 {
    text-align: left; 
    margin-bottom: 30px;
}
.contact-form-header-v2 h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.contact-form-header-v2 p {
    font-size: 1rem;
    max-width: none; 
    margin-left: 0;
}

.contact-form-v2 .form-group-v2 {
    margin-bottom: 25px;
}
.contact-form-v2 label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark-v2);
    font-size: 0.9rem;
}
.contact-form-v2 input[type="text"],
.contact-form-v2 input[type="email"],
.contact-form-v2 textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-subtle-v2);
    border-radius: var(--border-radius-v2);
    font-family: var(--font-body-v2);
    font-size: 0.95rem;
    color: var(--text-medium-v2);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form-v2 input[type="text"]:focus,
.contact-form-v2 input[type="email"]:focus,
.contact-form-v2 textarea:focus {
    outline: none;
    border-color: var(--primary-accent-v2);
    box-shadow: 0 0 0 2px rgba(160, 144, 208, 0.2);
}
.contact-form-v2 textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form-v2 button[type="submit"] {
    padding: 14px 40px; 
}

.contact-info-map-column-v2 {
}
.contact-details-v2 {
    margin-bottom: 40px;
    background-color: var(--bg-offset-v2);
    padding: 30px;
    border-radius: var(--border-radius-v2);
}
.contact-details-v2 h3 {
    font-size: 1.6rem;
    color: var(--text-dark-v2);
    margin-bottom: 0.5em;
}
.contact-details-v2 p { 
    font-size: 0.95rem;
    margin-bottom: 1.5em;
}
.contact-details-v2 ul {
    list-style: none;
    padding-left: 0;
}
.contact-details-v2 ul li {
    display: flex;
    align-items: flex-start; 
    margin-bottom: 18px;
    font-size: 0.95rem;
}
.contact-details-v2 ul li i {
    font-size: 1.1rem;
    color: var(--primary-accent-v2);
    margin-right: 15px;
    width: 20px; 
    text-align: center;
    margin-top: 3px; 
}
.contact-details-v2 ul li div strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark-v2);
    margin-bottom: 3px;
}
.contact-details-v2 ul li div span,
.contact-details-v2 ul li div a {
    color: var(--text-medium-v2);
    line-height: 1.6;
}
.contact-details-v2 ul li div a:hover {
    color: var(--primary-accent-v2);
    text-decoration: underline;
}

.map-embed-v2 {
    background-color: var(--bg-offset-v2);
    padding: 30px;
    border-radius: var(--border-radius-v2);
}
.map-embed-v2 h3 {
    font-size: 1.6rem;
    color: var(--text-dark-v2);
    margin-bottom: 1em;
}
.map-embed-v2 iframe {
    border-radius: var(--border-radius-v2);
    width: 100%; 
    height: 350px; 
}

@media (max-width: 992px) {
    .contact-grid-v2 {
        grid-template-columns: 1fr; 
    }
    .contact-info-map-column-v2 {
        margin-top: 50px; 
    }
}
@media (max-width: 768px) {
    .contact-hero-v2 {
        padding: 80px 0 60px;
        padding-top: calc(var(--header-height-v2) + 40px);
    }
    .contact-hero-v2 h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .contact-main-section-v2 {
        padding: 60px 0;
    }
    .contact-form-header-v2 {
        text-align: center; 
    }
    .contact-form-header-v2 p {
        max-width: 700px; 
        margin-left: auto;
        margin-right: auto;
    }
    .contact-details-v2, .map-embed-v2 {
        padding: 20px;
    }
}
@media (max-width: 480px) {
    .contact-hero-v2 {
        padding: 60px 0 40px;
        padding-top: calc(var(--header-height-v2) + 30px);
    }
    .contact-hero-v2 h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .map-embed-v2 iframe {
        height: 300px; 
    }
}