:root {
    --primary-color: #0032A0;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --transition: all 0.3s ease;
    --GlobalFontFamilySemiBold: "Montserrat", sans-serif;
    --GlobalFontFamilyLight: "Montserrat", sans-serif;
    --GlobalFontFamilyRegular: "Roboto-Regular";
    --GlobalTextColor: #223341;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
header {
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid #eee;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.header-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: absolute;
    right: 40px;
    top: 15px;
    z-index: 1001;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--GlobalFontFamilyLight, "Montserrat-Light");
    font-size: 22px;
    font-weight: 300;
    color: #223341;
}

.lang-selector img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.search-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.search-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.header-main {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 30px;
    height: 100px;
    padding-bottom: 0;
}

.mobile-lang-selector {
    display: none !important;
}

.logo {
    position: relative;
    top: 8px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
}

.logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 25px;
    height: 100%;
    align-items: stretch;
}

.nav-links li {
    display: flex;
    align-items: flex-end;
}

.nav-item-dropdown {
    position: static;
}

.nav-links a {
    font-family: var(--GlobalFontFamilyLight, "Montserrat-Light");
    font-size: 17px;
    font-weight: 600;
    color: var(--GlobalTextColor, #223341);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0 5px 20px 5px;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
}

.nav-links a:hover,
.nav-item-dropdown:hover>a {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid #ddd;
    border-bottom: 2px solid var(--primary-color);
    /* Site color bottom border */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 40px 0;
    z-index: 999;

    /* Animation Properties: Faster folding, no opacity change */
    opacity: 1;
    visibility: hidden;
    clip-path: inset(0 0 100% 0);
    /* Hidden at the top */
    /* Transition for closing: background folds up quickly without fading */
    transition: clip-path 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.2s step-end;
    transition-delay: 0.1s;
    pointer-events: none;
}

.mega-menu-container {
    opacity: 1;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 220px 220px 220px;
    gap: 30px;
    justify-content: start;
}

.mega-menu::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: transparent;
}

.nav-item-dropdown:hover .mega-menu {
    visibility: visible;
    clip-path: inset(0 0 0 0);
    /* Fully visible */
    /* Transition for opening: background unfolds quickly */
    transition: clip-path 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0s linear;
    transition-delay: 0s;
    pointer-events: auto;
}

.nav-item-dropdown:hover .mega-menu-container {
    opacity: 1;
}

.mega-menu-col {
    position: relative;
}

.mega-menu-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    height: 100%;
    width: 1px;
    background: #eee;
}

.mega-menu-col h4 {
    font-family: var(--GlobalFontFamilyLight, "Montserrat-Light");
    font-size: 14px;
    font-weight: 700;
    color: #6c757d;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.mega-menu-col ul li {
    margin-bottom: 12px;
}

.mega-menu-col ul li a {
    font-family: var(--GlobalFontFamilyLight, "Montserrat-Light");
    font-size: 13px;
    font-weight: 300;
    color: var(--GlobalTextColor, #223341);
    line-height: var(--GlobalNavigationFirstLevelLineHeight, 20px);
    border-bottom: none !important;
    padding: 0 !important;
}

.mega-menu-col ul li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.mega-menu-footer {
    max-width: 1400px;
    margin: 30px auto 0;
    padding: 20px 20px 0;
}

.all-products-link {
    font-family: var(--GlobalFontFamilyLight, "Montserrat-Light");
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border-bottom: none !important;
}

/* Advice Mega Menu Specifics */
.advice-container {
    grid-template-columns: 280px 320px 320px !important;
    align-items: stretch;
    gap: 50px !important;
    max-width: 1400px;
}

.advice-list {
    border-right: 1px solid #eee;
    padding-right: 30px;
    margin-right: auto;
}

.advice-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.advice-card-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
}

.advice-card-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.advice-card-img img:hover {
    transform: scale(1.05);
}

.advice-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 10;
    border-radius: 0;
    min-height: 150px;
}

.advice-card-content p {
    font-size: 18px;
    font-weight: 700;
    color: #223341;
    line-height: 1.3;
    max-width: 250px;
    margin: 0;
}

.btn-advice {
    font-family: var(--GlobalFontFamilyMedium, "Montserrat-Medium");
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-weight: var(--GlobalBoldFontWeight);
    font-size: var(--GlobalButtonFontSize, 15px);
    line-height: var(--GlobalTextLineHeight, 30px);
    cursor: pointer;
    color: var(--GlobalTextColor, #223341);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}



/* About Mega Menu Specifics */
.about-container {
    grid-template-columns: 280px 320px 320px !important;
    align-items: stretch;
    gap: 50px !important;
    max-width: 1400px;
}



.about-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.about-card-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
}

.about-card-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-card-img img:hover {
    transform: scale(1.05);
}

.about-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 10;
    min-height: 140px;
}

.about-card-content p {
    font-size: 18px;
    font-weight: 700;
    color: #223341;
    line-height: 1.3;
    max-width: 250px;
    margin: 0;
}

/* Slider Section */
.slider-section {
    margin-top: 90px;
    /* Matches header height exactly */
    width: 100%;
    height: auto;
    overflow: hidden;
}

.slider-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero Section */
.hero {
    margin-top: 50px;
    height: 500px;
    background: #f2f2f2;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-dna {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1530026405186-ed1f139313f8?auto=format&fit=crop&w=1920&q=80') no-repeat right center;
    background-size: contain;
    opacity: 0.15;
    z-index: 1;
}

.hero-woman {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 35%;
    background: url('https://images.unsplash.com/photo-1596755094514-f87e34085b2c?auto=format&fit=crop&w=800&q=80') no-repeat center center;
    background-size: cover;
    z-index: 2;
}

.hero-content-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-text-area {
    text-align: center;
    max-width: 700px;
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    color: #444;
    margin-bottom: 10px;
}

.hero-title strong {
    font-weight: 800;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-keÅŸfet {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    z-index: 4;
}

.hero-product {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    height: 85%;
    z-index: 4;
}

.nouveau-tag {
    position: absolute;
    right: 120px;
    top: 100px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 18px;
    z-index: 5;
}

.hero-disclaimer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 11px;
    color: #888;
    z-index: 5;
}

/* Products Section */
.section {
    padding: 80px 0;
    max-width: 1600px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #223341;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: #eee;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 40px;
}

.product-card {
    background: #fcfcfc;
    /* Match image's off-white background */
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 15px;
    border-radius: 0;
    border: 1px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    /* Gray border on hover as requested */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Keep original shadow */
    border-color: #d1d5db;
    /* Gray border */
}

.product-img-wrapper {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    /* Let card background show through */
    transition: all 0.4s ease;
}



.product-img-wrapper img {
    height: 100%;
    width: 100%;
    max-width: 100%;
    padding: 15px;
    /* Add padding inside the wrapper so image doesn't touch edges */
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}



.product-tag {
    background: rgba(0, 50, 160, 0.05);
    color: var(--primary-color);
    font-size: 9px;
    font-weight: 700;
    padding: 5px 12px;
    display: inline-block;
    margin-bottom: 10px;
    align-self: flex-start;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}



.product-series {
    font-size: 10px;
    font-weight: 500;
    color: #555;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 15px;
    font-weight: 700;
    color: #363d43;
    margin-bottom: 4px;
    line-height: 1.4;
    height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-volume {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 10px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #374151;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f3f4f6;
}

.product-rating i {
    color: #fbbf24;
    font-size: 12px;
}

.product-rating .review-count {
    color: #9ca3af;
    font-size: 13px;
}

/* Footer */
/* Footer */
footer {
    background: #fff;
    padding: 30px 0 0;
    border-top: 1px solid #eee;
    font-family: var(--GlobalFontFamilyLight, "Montserrat-Light");
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.footer-info {
    max-width: 65%;
}

.footer-logo-main {
    height: 40px;
    /* Adjust height as needed */
    width: auto;
    margin-bottom: 25px;
    display: block;
}

.footer-info p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    font-weight: 300;
}

.footer-link {
    font-size: 14px;
    color: #666;
    text-decoration: underline;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 25px;
    margin-bottom: 10px;
}

.footer-social a {
    color: #9ca3af;
    font-size: 22px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-divider {
    display: none;
}

.footer-bottom-row {
    width: 100%;
    background-color: #ebebeb;
    padding: 25px 0;
    margin: 0;
    font-size: 13px;
    color: #414141;
    font-weight: 300;
}

.footer-bottom-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-company .company-name {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    margin-right: 5px;
}

.footer-copyright {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-copyright a {
    color: #666;
    text-decoration: underline;
}

.footer-copyright span {
    text-transform: uppercase;
    color: #9ca3af;
}

/* Global Footer Logo Style */
.footer-logo-img {
    height: 22px;
    width: auto;
    vertical-align: middle;
    margin-right: 5px;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .header-container {
        padding: 0 20px;
    }

    .header-top {
        display: none;
        /* Hide top bar on mobile for cleaner look, or adjust */
    }

    .header-main {
        justify-content: space-between;
        align-items: center;
        height: 70px;
    }

    .logo img {
        height: 35px;
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: var(--GlobalTextColor);
        z-index: 1002;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 20px;
        transition: 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        display: block;
        margin-bottom: 0;
        border-bottom: 1px solid #eee;
    }

    .nav-links a {
        padding: 15px 0;
        font-size: 16px;
        display: flex;
        justify-content: space-between;
    }

    /* Mobile Mega Menu */
    .mega-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        display: none;
        /* Hidden by default, toggled via JS */
        visibility: visible;
        opacity: 1;
        clip-path: none;
        border-top: none;
    }

    .mega-menu-container {
        grid-template-columns: 1fr !important;
        padding: 0 0 20px 15px;
        gap: 20px;
    }

    .mega-menu-col::after {
        display: none;
    }

    .advice-card,
    .about-card {
        display: none;
        /* Hide images in mobile menu to save space */
    }

    /* Hero Section */
    .hero {
        height: auto;
        min-height: 600px;
        flex-direction: column;
        padding-top: 80px;
    }

    .hero-woman {
        width: 100%;
        height: 300px;
        position: relative;
        order: 1;
    }

    .hero-content-wrapper {
        flex-direction: column;
        padding: 40px 20px;
        order: 2;
    }

    .hero-text-area {
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .btn-keÅŸfet {
        position: static;
        transform: none;
        margin-top: 20px;
        display: inline-block;
    }

    .hero-product {
        display: none;
        /* Hide floating product on mobile or adjust */
    }

    .nouveau-tag {
        display: none;
    }

    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
        gap: 15px;
    }

    .product-card {
        padding: 10px;
    }

    .product-img-wrapper {
        height: 180px;
    }

    .product-name {
        font-size: 16px;
    }

    /* News Section */
    .news-grid {
        grid-template-columns: 1fr;
        /* 1 column for news */
    }

    .news-section {
        padding: 40px 20px;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .footer-info {
        max-width: 100%;
    }

    .footer-logo-img {
        height: 22px;
        width: auto;
        vertical-align: middle;
        margin-right: 5px;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
        /* 1 column for products on very small screens */
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* Default state for toggle */
.mobile-menu-toggle {
    display: none;
}

/* Force mobile menu toggle visibility and style */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block !important;
        color: #333 !important;
        /* Ensure visible color */
        font-size: 24px;
        cursor: pointer;
        z-index: 10000;
        /* Ensure on top */
    }

    .header-main {
        position: relative;
        /* Ensure positioning context */
    }
}

/* Blog Detail Styles */
.blog-detail-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 3rem;
}

.blog-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    z-index: -1;
}

.blog-hero-content {
    max-width: 800px;
}

.blog-category-badge {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.blog-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-meta {
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-content-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #eee;
}

.blog-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 3rem;
}

.blog-body p {
    margin-bottom: 1.5rem;
}

.blog-body img {
    max-width: 100%;
    border-radius: 10px;
    margin: 2rem 0;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    background: #f8f9fa;
    color: #333;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid #ddd;
    gap: 10px;
}

.btn-back:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    text-decoration: none;
}

/* Alphabetical Tab Menu Styles */
.alphabet-container {
    margin: 40px 0;
    font-family: var(--GlobalFontFamilyLight, "Montserrat-Light");
}

.alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.alphabet-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #999;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 4px;
}

.alphabet-link:hover {
    color: var(--primary-color);
    background: #f5f5f5;
}

.alphabet-link.active {
    background-color: #223341;
    /* Dark Active Color */
    color: #fff;
    font-weight: 700;
}

.alphabet-content-group {
    display: none;
    /* Hidden by default */
    animation: fadeIn 0.5s ease;
}

.alphabet-content-group.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Column Layout */
    gap: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alphabet-item {
    font-size: 15px;
    color: #555;
    padding: 10px 0;
    border-bottom: 1px dashed #f0f0f0;
    transition: color 0.2s;
}

.alphabet-item:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .alphabet-content-group.active {
        grid-template-columns: 1fr;
        /* Single column on mobile */
        gap: 10px;
    }

    .alphabet-nav {
        justify-content: center;
    }
}

/* Alphabet Group Titles */
.alphabet-group-title {
    grid-column: 1 / -1;
    /* Make title span full width */
    font-size: 24px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 10px;
    margin-top: 20px;
    border-bottom: 2px solid var(--primary-color);
    width: 50px;
    /* Short separator look */
}

/* Ensure groups have spacing when stacked */
.alphabet-content-group.active {
    margin-bottom: 20px;
}

/* --- Global News / Blog Card Styles (Ported from Home/Index) --- */
.news-section {
    padding: 20px 0;
    /* Reduced padding for portability */
    max-width: 1600px;
    margin: 0 auto;
    font-family: var(--GlobalFontFamilyLight, "Montserrat-Light");
}

.news-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 40px;
}

.news-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-header a {
    font-size: 12px;
    color: #666;
    text-decoration: none;
    text-transform: uppercase;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news-card {
    position: relative;
    cursor: pointer;
    padding: 15px;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
    text-decoration: none !important;
    color: inherit;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 5px solid var(--primary-color);
}

.news-card:hover,
.news-card.active {
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #eee;
    border-bottom-color: var(--primary-color) !important;
}

.news-img-wrapper {
    position: relative;
    margin: -15px -15px 20px -15px;
    overflow: hidden;
    border-radius: 0;
}

.news-img-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.news-card:hover .news-img-wrapper img,
.news-card.active .news-img-wrapper img {
    transform: scale(1.08);
}

.news-arrow {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 100;
    transition: transform 0.6s ease;
}

.news-card:hover .news-arrow,
.news-card.active .news-arrow {
    transform: rotate(180deg);
}

.news-content {
    text-align: center;
    padding-bottom: 15px;
}

.news-category {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.news-title {
    font-size: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 400;
    min-height: 56px;
}

.news-footer {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

.news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    height: 0;
    overflow: hidden;
    transition: height 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.news-card:hover .news-overlay,
.news-card.active .news-overlay {
    height: 85%;
}

.news-overlay-content {
    opacity: 0;
    transition: all 0.6s ease 0.2s;
    transform: translateY(40px);
}

.news-card:hover .news-overlay-content,
.news-card.active .news-overlay-content {
    opacity: 1;
    transform: translateY(0);
}

.news-overlay h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
}

.news-overlay p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* Mobile Responsive For News Grid */
@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}




/* =========================================
   SENIOR FRONTEND RESPONSIVE OVERRIDES (MOBILE)
   ========================================= */

@media (max-width: 992px) {

    /* 0. GLOBAL OVERFLOW FIX */
    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative;
    }

    /* 1. Header & Navigation Refinement */
    header {
        height: 70px;
        /* Sabit yÃ¼kseklik */
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
        width: 100%;
        overflow: hidden;
        /* Header taÅŸmasÄ±nÄ± engelle */
    }

    .header-container {
        flex-direction: row;
        /* Yan yana */
        justify-content: space-between;
        align-items: center;
        height: 100%;
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }

    .header-top {
        display: none !important;
        /* Ãœst barÄ± tamamen gizle */
    }

    .header-main {
        width: 100%;
        height: 100%;
        gap: 0;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        display: flex;
        /* Flex dÃ¼zeni zorla */
    }

    /* Logo Optimizasyonu */
    .logo {
        top: 0;
        padding: 0;
        align-items: center;
        height: 100%;
        display: flex;
        flex-shrink: 0;
        /* Logo kÃ¼Ã§Ã¼lmesin */
    }

    .logo img {
        height: 28px;
        /* Mobilde daha kibar logo */
        width: auto;
        max-width: 150px;
        /* Ã‡ok uzun logolarÄ± sÄ±nÄ±rla */
    }

    /* Mobile Menu Toggle Button */
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        /* Minimum touch target width */
        height: 44px;
        font-size: 20px;
        color: var(--GlobalTextColor);
        background: transparent;
        border-radius: 50%;
        transition: background 0.2s;
        flex-shrink: 0;
        /* Buton ezilmesin */
        margin-right: -10px;
        /* SaÄŸ boÅŸluÄŸu dengele */
        z-index: 20001;
        /* Menu Ã¼stÃ¼nde kalsÄ±n */
    }

    .mobile-menu-toggle:active {
        background: #f0f0f0;
    }

    /* 2. Slide-out Navigation Drawer (Ã‡ekmece MenÃ¼) */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        /* BaÅŸlangÄ±Ã§ta gizli */
        width: 85%;
        /* EkranÄ±n %85'ini kaplasÄ±n */
        max-width: 360px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 0 40px 0;
        /* Header payÄ± bÄ±rak */
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 9999;
        overflow-y: auto;
        border-left: 1px solid #f0f0f0;
    }

    /* Close Button inside Drawer (Optional but good UX) */
    .nav-links::before {
        content: 'MENÃœ';
        position: absolute;
        top: 25px;
        left: 25px;
        font-family: var(--GlobalFontFamilySemiBold);
        font-weight: 700;
        font-size: 14px;
        color: #ddd;
        letter-spacing: 2px;
    }

    .nav-links.active {
        right: 0;
        /* AÃ§Ä±lÄ±nca */
        z-index: 20000;
    }

    /* 3. Menu Items Styling */
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f9f9f9;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        /* Alt elemanlar tam geniÅŸlik */
    }

    .nav-links>li>a {
        font-family: var(--GlobalFontFamilySemiBold);
        font-size: 15px;
        font-weight: 600;
        padding: 18px 25px;
        color: #223341;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: none !important;
        /* Eski stilleri ez */
        text-decoration: none;
    }

    /* Active Link Style */
    .nav-links>li>a:active {
        background-color: #fcfcfc;
    }

    /* Dropdown Chevron */
    .nav-item-dropdown>a::after {
        content: '\f107';
        /* FontAwesome Chevron Down */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 14px;
        color: #ccc;
        transition: transform 0.3s;
    }

    /* 4. Mega Menu (Accordion Content) Style */
    .mega-menu {
        position: static !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: #f8f9fa !important;
        /* Hafif gri ayrÄ±m */
        padding: 0 !important;
        display: none;
        /* JS ile slideToggle yapÄ±lacak */
        clip-path: none !important;
        border: none !important;
        border-top: 1px solid #eee !important;
        box-shadow: inset 0 5px 10px -5px rgba(0, 0, 0, 0.05) !important;
        width: 100% !important;
        transform: none !important;
    }

    .mega-menu-container {
        display: flex !important;
        flex-direction: column;
        padding: 10px 0 !important;
        gap: 0 !important;
        width: 100% !important;
        grid-template-columns: 1fr !important;
    }

    /* Sub-menu Columns */
    .mega-menu-col {
        padding: 15px 30px !important;
        border-bottom: 1px dashed #eee;
    }

    .mega-menu-col:last-child {
        border-bottom: none;
    }

    .mega-menu-col::after {
        display: none !important;
    }

    /* Sub-menu Headers */
    .mega-menu-col h4 {
        font-size: 11px !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--primary-color) !important;
        margin-bottom: 12px !important;
        font-weight: 800 !important;
        opacity: 0.8;
    }

    /* Sub-menu Lists */
    .mega-menu-col ul {
        margin: 0;
        padding: 0;
    }

    .mega-menu-col ul li {
        border-bottom: none !important;
        margin-bottom: 8px !important;
    }

    .mega-menu-col ul li a {
        font-size: 14px !important;
        padding: 6px 0 !important;
        color: #555 !important;
        font-weight: 400 !important;
        display: block !important;
        border-bottom: none !important;
    }

    .mega-menu-col ul li a:hover,
    .mega-menu-col ul li a:active {
        color: var(--primary-color) !important;
        padding-left: 5px !important;
        transition: all 0.2s;
    }

    /* Advanced Cards in Menu (Hide Images, keep links) */
    .advice-card,
    .about-card {
        height: auto !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 15px 30px !important;
    }

    .advice-card-img,
    .about-card-img {
        display: none !important;
    }

    .advice-card-content,
    .about-card-content {
        position: static !important;
        background: transparent !important;
        padding: 0 !important;
        min-height: auto !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .about-card-content p,
    .advice-card-content p {
        display: none;
        /* Metni gizle, sadece butonu gÃ¶ster */
    }

    .btn-advice {
        margin-top: 0 !important;
        font-size: 13px !important;
        color: var(--primary-color) !important;
        text-decoration: underline;
        padding: 0;
    }

    .mega-menu-footer {
        padding: 15px 30px !important;
        text-align: left;
        background: transparent;
    }

    .all-products-link {
        font-size: 13px !important;
    }

    /* 5. General Page Layout Responsiveness */

    /* Layout Spacing */
    main {
        padding-top: 40px;
        /* Header altÄ± boÅŸluk */
        width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Slider Adjustment */
    .slider-section {
        margin-top: 50px !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
    }

    .slider-section img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }

    /* Swiper / Carousel overflow fix */
    .swiper-container,
    .carousel {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    /* Hero Section */
    .hero {
        padding-top: 20px !important;
        min-height: auto !important;
        height: auto !important;
        display: flex;
        flex-direction: column;
        width: 100% !important;
        overflow: hidden;
    }

    .hero-woman {
        position: relative !important;
        height: 250px !important;
        width: 100% !important;
        background-position: center top !important;
        order: 1;
    }

    .hero-content-wrapper {
        position: relative !important;
        padding: 40px 20px !important;
        order: 2;
        text-align: center;
        width: 100% !important;
    }

    .hero-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }

    .hero-subtitle {
        font-size: 22px !important;
        margin-top: 10px;
    }

    .hero-disclaimer {
        position: relative !important;
        margin-top: 20px;
    }

    .btn-keÅŸfet {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        display: inline-block !important;
        margin-top: 20px !important;
    }

    .hero-product,
    .nouveau-tag {
        display: none !important;
    }

    /* Products Grid */
    .section-title {
        font-size: 24px !important;
        margin-bottom: 30px !important;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        /* Mobilde 2 kolon */
        gap: 10px !important;
        padding: 0 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .product-card {
        padding: 5px !important;
    }

    .product-img-wrapper {
        height: 160px !important;
    }

    .product-name {
        font-size: 14px !important;
        height: 40px !important;
    }

    /* Footer Adjustment */
    footer {
        padding: 40px 20px 20px !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-info {
        max-width: 100% !important;
    }

    .footer-bottom-row {
        flex-direction: column;
        padding: 20px !important;
        margin: 0 !important;
        gap: 20px;
        text-align: center;
        width: auto !important;
        /* Margin-left/right negative kullanÄ±ldÄ±ÄŸÄ± iÃ§in width auto olmalÄ± */
    }

    .footer-copyright {
        flex-direction: column;
        gap: 10px;
    }

    /* Mobile Language Selector Visible */
    .mobile-lang-selector {
        display: block !important;
    }
}

/* Global Contact/Register Banner Styles */
.contact-banner-section {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
}

.contact-banner-container {
    display: flex;
    background: #fff;
    border: 1px solid #ddd;
    align-items: stretch;
}

.contact-banner-image {
    flex: 0 0 40%;
    /* Occupy roughly 40% of the width */
    position: relative;
    overflow: hidden;
    min-height: 250px;
    /* Reduced Minimum height */
}

.contact-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-banner-content {
    flex: 1;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-banner-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--GlobalTextColor, #223341);
    margin-bottom: 25px;
    line-height: 1.2;
}

.contact-banner-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-banner-content p:last-of-type {
    margin-bottom: 30px;
}

.btn-register-banner {
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 16px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    transition: background-color 0.3s ease;
    width: 80%;
    display: block;
    letter-spacing: 0.5px;
}

.btn-register-banner:hover {
    background-color: #002270;
    /* Darker shade */
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .contact-banner-section {
        padding: 0 20px;
        margin: 60px auto;
    }

    .contact-banner-container {
        flex-direction: column;
    }

    .contact-banner-image {
        width: 100%;
        height: 250px;
        flex: none;
    }

    .contact-banner-content {
        padding: 30px 20px;
    }

    .contact-banner-content h3 {
        font-size: 24px;
    }
}