/*
Theme Name: MOYAZ Tradi
Description: Thème WordPress personnalisé pour MOYAZ - Excellence camerounaise réinventée
Version: 1.0
Author: ATAP Team
*/

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fbf7ee;
  color: #4a4a22;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #8B4513;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    color: #6B5B5B;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #8B4513;
    margin-bottom: 1.5rem;
}

/* ===== COULEURS MOYAZ INSPIRÉES DE L'IMAGE ===== */
:root {
    --primary-brown: #A0753D;
    --secondary-brown: #8B4513;
    --accent-gold: #D4AF37;
    --warm-beige: #F5E6D3;
    --cream: #FFF8E7;
    --green-garnish: #228B22;
    --neutral-dark: #4A3728;
    --neutral-light: #FAF8F3;
    --text-primary: #4A3728;
    --text-secondary: #6B5B5B;
    --border-light: #E8DDD0;
    --shadow-warm: rgba(160, 117, 61, 0.15);
    --shadow-medium: rgba(139, 69, 19, 0.2);
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.site {
    min-height: 100vh;
   /* display: flex;*/
    flex-direction: column;
}

.site-content {
    flex: 1;
}

/* ===== HEADER ===== */
.site-header {
    background: rgba(255, 248, 231, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-light);
}

.site-header.scrolled {
    background: rgba(255, 248, 231, 0.98);
    box-shadow: 0 2px 20px var(--shadow-warm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.site-branding {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.1);
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-brown);
}

/* ===== NAVIGATION ===== */
.primary-navigation {
    display: flex;
    align-items: center;
}

.primary-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.primary-navigation a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.primary-navigation a:hover {
    color: var(--primary-brown);
}

.primary-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-brown);
    transition: width 0.3s ease;
}

.primary-navigation a:hover::after {
    width: 100%;
}

/* ===== HEADER CART STYLES ===== */
.header-cart {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.cart-link:hover {
    background: var(--primary-brown);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-warm);
}

.cart-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.cart-count {
    background: var(--accent-gold);
    color: var(--neutral-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
    min-width: 20px;
    text-align: center;
    line-height: 1;
}

.cart-link:hover .cart-count {
    background: white;
    color: var(--primary-brown);
}

/* Badge de notification pour panier */
.cart-link::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: var(--green-garnish);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-link.has-items::after {
    opacity: 1;
}

/* ===== MENU MOBILE TOGGLE ===== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
}

.menu-toggle:hover {
    background: rgba(160, 117, 61, 0.1);
}

.menu-toggle:focus {
    outline: 2px solid var(--primary-brown);
    outline-offset: 2px;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 25px;
    height: 18px;
    position: relative;
}

.menu-icon span {
    width: 100%;
    height: 3px;
    background: var(--neutral-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animation du hamburger en X */
.menu-toggle.menu-open .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: white;
}

.menu-toggle.menu-open .menu-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.menu-open .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: white;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== HERO SECTION - MATCHING IMAGE ===== */
.hero-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-beige) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 0 0, rgba(212, 175, 55, 0.4) 3px, transparent 3px),
        radial-gradient(circle at 25px 25px, rgba(160, 117, 61, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 50px 0, rgba(34, 139, 34, 0.3) 2px, transparent 2px);
    background-size: 50px 50px;
    background-repeat: repeat;
    opacity: 1;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    z-index: 3;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--secondary-brown);
    margin-bottom: 1rem;
    background: #824c1e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
        
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== HERO IMAGE SECTION - MATCHING THE PROVIDED IMAGE ===== */
.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    background: #824c1e;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px var(--shadow-medium);
    overflow: hidden;
}

.hero-brand-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 3;
}

.hero-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cream);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.1em;
}

.hero-product-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ===== HERO PRODUCT PLACEHOLDER - REPLICATING IMAGE STYLE ===== */
.hero-product-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-visual {
    position: relative;
    width: 300px;
    height: 300px;
}

/* ===== BOUTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: #824c1e;
    color: white;
    box-shadow: 0 5px 20px var(--shadow-warm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(160, 117, 61, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-brown);
    border-color: #824c1e;
}

.btn-secondary:hover {
    background: #824c1e;
    color: white;
}

/* ===== SECTIONS ===== */
.content-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    margin-bottom: 1rem;
    color: var(--secondary-brown);
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-warm);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-brown);
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-brown);
}

/* ===== VALUES SECTION ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-warm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-brown);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

/* ===== ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.fade-in-up-ready {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .header-container {
        padding: 0.75rem 1rem;
    }
    
    .hero-container {
        gap: 1rem;
    }
    
    .hero-image-container {
        padding: 2rem;
    }
}

/* ===== MOBILE HEADER LAYOUT UPDATE ===== */
@media (max-width: 768px) {
    .site-content {
        padding-top: 15px;
    }
    
    .hero-section {
        padding: 50px 0 40px;
        min-height: 0vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
        padding-top: 1rem;
    }
    
    /* UPDATED: Mobile header container layout */
    .header-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 1rem;
        padding: 0.75rem 1rem;
        position: relative;
    }
     .menu-toggle {
        display: flex;
        order: 1;
        grid-column: 1;
        justify-self: start;
    }
    /* UPDATED: Menu toggle - positioned at left */
    .menu-toggle {
        display: flex;
        order: 1;
        grid-column: 1;
        justify-self: start;
    }
    
    /* UPDATED: Site branding - centered */
    .site-branding {
        order: 2;
        grid-column: 2;
        justify-self: center;
        text-align: center;
    }
    
    /* UPDATED: Header actions (cart + language) - positioned at right */
    .header-actions {
        order: 3;
        grid-column: 3;
        justify-self: end;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* Hide logo icon on mobile but keep site title visible and centered */
    .logo-icon {
        display: none;
    }
    
    .site-title {
        display: block;
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--secondary-brown);
        width: auto;
        height: auto;
        text-align: center;
    }
    
    .site-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        gap: 0.5rem;
    }
    
    /* Navigation mobile */
    .primary-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--neutral-dark) 0%, var(--secondary-brown) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }
    
    .primary-navigation.menu-open {
        left: 0;
    }
    
    .primary-navigation ul {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .primary-navigation li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
    }
    
    .primary-navigation.menu-open li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .primary-navigation.menu-open li:nth-child(1) { transition-delay: 0.1s; }
    .primary-navigation.menu-open li:nth-child(2) { transition-delay: 0.2s; }
    .primary-navigation.menu-open li:nth-child(3) { transition-delay: 0.3s; }
    .primary-navigation.menu-open li:nth-child(4) { transition-delay: 0.4s; }
    
    .primary-navigation a {
        color: white;
        font-size: 1.8rem;
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .primary-navigation a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
    }
    
    .primary-navigation a::after {
        display: none;
    }
    
    /* Cart mobile styling */
    .cart-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }
    
    .cart-icon {
        font-size: 1.1rem;
    }
    
    .cart-count {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
        min-width: 18px;
    }
    
    /* Language selector mobile */
    .header-language {
        margin-left: 0;
    }
    
    .gtranslate_wrapper select {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        padding-right: 2rem;
        min-width: 80px;
    }
    
    /* Hero section mobile */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-image-container {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .hero-brand-text {
        font-size: 1.8rem;
        top: 1rem;
        left: 1rem;
    }
    
    .product-visual {
        width: 250px;
        height: 250px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Other sections mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .values-list {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .filter-buttons {
        flex-direction: row;
        justify-content: flex-start;
        gap: 0.5rem;
        padding: 0 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        flex-shrink: 0;
        min-width: 80px;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        scroll-snap-align: start;
        white-space: nowrap;
    }
    
    .shop-filter-section {
        padding: 1rem 0;
        overflow: hidden;
    }
    
    .filter-buttons::before,
    .filter-buttons::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 20px;
        pointer-events: none;
        z-index: 1;
    }
    
    .filter-buttons::before {
        left: 0;
        background: linear-gradient(to right, rgba(251, 247, 238, 1), transparent);
    }
    
    .filter-buttons::after {
        right: 0;
        background: linear-gradient(to left, rgba(251, 247, 238, 1), transparent);
    }
    
    .filter-buttons {
        position: relative;
    }
    
    /* UPDATED: Very small screens header */
    .header-container {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }
    
    .site-title {
        font-size: 1.3rem;
        width: auto;
        height: auto;
    }
    
    .logo-icon {
        display: none;
    }
    
    /* UPDATED: Compact header actions on very small screens */
    .header-actions {
        gap: 0.3rem;
    }
    
    .cart-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .cart-icon {
        font-size: 1rem;
    }
    
    .gtranslate_wrapper select {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        padding-right: 1.8rem;
        min-width: 70px;
    }
    
    .hero-section {
        padding: 50px 0 40px;
        min-height: 0vh;
    }
    
    .hero-container {
        gap: 0rem;
    }
    
    .hero-brand-text {
        font-size: 1.5rem;
    }
    
    .product-visual {
        width: 200px;
        height: 200px;
    }
    
    .primary-navigation a {
        font-size: 1.5rem;
    }
}

/* ===== ACCESSIBILITÉ ===== */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary-brown);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    left: 0;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ===== FOCUS STATES FOR ACCESSIBILITY ===== */
.cart-link:focus,
.btn:focus,
.primary-navigation a:focus {
    outline: 2px solid var(--primary-brown);
    outline-offset: 2px;
}

    /* Language Selector Styles */
        .header-language {
            margin-top: -7px !important;
            width: 120px !important;
            position: relative;
        }
        
        .gtranslate_wrapper select {
            margin-top: -7px !important;
            width: 120px !important;
            background: transparent;
            border: 1px solid var(--primary-brown);
            border-radius: 5px;
            padding: 8px 12px;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .gtranslate_wrapper select:hover {
            border-color: var(--accent-gold);
            background: var(--cream);
        }
        
        .gtranslate_wrapper select:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 2px var(--shadow-light);
        }
        
        .language-dropdown {
            position: relative;
            display: inline-block;
        }
        
        .language-dropdown > a {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 8px 12px;
            text-decoration: none;
            color: var(--text-primary);
            border: 1px solid var(--primary-brown);
            border-radius: 5px;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            background: transparent;
            cursor: pointer;
            min-width: 120px;
            justify-content: space-between;
        }
        
        .language-dropdown > a::after {
            content: "▼";
            font-size: 0.7em;
            transition: transform 0.3s ease;
        }
        
        .language-dropdown:hover > a::after {
            transform: rotate(180deg);
        }
        
        .language-dropdown > a:hover {
            border-color: var(--accent-gold);
            background: var(--cream);
            color: var(--primary-brown);
        }
        
        .language-dropdown .sub-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            min-width: 160px;
            background: white;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            z-index: 999;
            border-radius: 8px;
            padding: 8px 0;
            margin-top: 4px;
            border: 1px solid var(--shadow-light);
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            list-style: none;
        }
        
        .language-dropdown .sub-menu li {
            padding: 0;
            margin: 0;
        }
        
        .language-dropdown .sub-menu li a {
            display: block;
            padding: 12px 16px;
            color: var(--text-primary);
            text-decoration: none;
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            border-radius: 0;
        }
        
        .language-dropdown .sub-menu li a:hover {
            background: var(--cream);
            color: var(--primary-brown);
            padding-left: 20px;
        }
        
        .language-dropdown:hover .sub-menu {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }
        