/* ============================================
   RESET E VARIÁVEIS GLOBAIS
   ============================================ */

:root {
    --primary-color: #007aff;
    --primary-dark: #0051d5;
    --secondary-color: #5856d6;
    --accent-color: #ff9500;
    --bg-light: #f5f5f7;
    --text-dark: #1d1d1f;
    --text-light: #86868b;
    --border-color: #d2d2d7;
    --white: #ffffff;
    --black: #000000;
    --success: #34c759;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-glass: rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.18);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.47;
    background: linear-gradient(180deg, #f0f0f3 0%, #ffffff 100%);
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

main {
    position: relative;
    z-index: 1;
}

/* ============================================
   BANNER PROMOCIONAL
   ============================================ */

.promo-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-size: 200% 200%;
    color: var(--white);
    text-align: center;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    animation: gradientShift 3s ease infinite;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

.promo-banner strong {
    font-weight: 700;
    font-size: 1.1em;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background: #000000;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

.logo a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    padding: 0.25rem 0;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
    max-width: 180px;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.2));
}

.logo a:hover {
    transform: scale(1.03);
}

.logo a:hover img {
    filter: drop-shadow(0 4px 16px rgba(255, 255, 255, 0.35));
}

/* ============================================
   NAVEGAÇÃO
   ============================================ */

.main-nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.main-nav a:hover {
    color: var(--white);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav .has-dropdown {
    position: relative;
}

.main-nav .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 1rem 0;
    min-width: 200px;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.dropdown a {
    color: var(--white);
    display: block;
    padding: 0.75rem 1.5rem;
    font-weight: 400;
}

.dropdown li {
    padding: 0;
}

.dropdown a:hover::after {
    display: none;
}

/* ============================================
   HEADER ACTIONS
   ============================================ */

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.icon-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.icon-btn svg {
    stroke: var(--white);
    transition: var(--transition);
}

.icon-btn:hover svg {
    stroke: var(--white);
}

.cart-count {
    position: absolute;
    top: -3px;
    right: -3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
}

.cart-btn:hover .cart-count,
.icon-btn:hover svg {
    animation: bounce 0.6s ease;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 5px var(--primary-color)); }
    50% { filter: drop-shadow(0 0 20px var(--primary-color)); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.cart-count.bump {
    animation: bump 0.6s ease;
}

@keyframes bump {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1.5) rotate(5deg); }
    75% { transform: scale(1.3) rotate(-5deg); }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: 2px 0 20px var(--shadow);
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: 2000;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-header span {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.close-menu {
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-nav {
    padding: 1rem 0;
}

.mobile-nav > a,
.mobile-menu-item button {
    display: block;
    padding: 1rem 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-nav > a:hover,
.mobile-menu-item button:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.mobile-menu-item {
    position: relative;
}

.mobile-dropdown-toggle {
    width: 100%;
    text-align: left;
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu-item.active .mobile-dropdown {
    max-height: 500px;
}

.mobile-dropdown a {
    padding-left: 2.5rem;
    font-size: 0.9rem;
}

/* ============================================
   CARRINHO SIDEBAR
   ============================================ */

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 20px var(--shadow);
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-header h2 {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.close-cart {
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.cart-summary {
    margin-bottom: 1.5rem;
}

.cart-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cart-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 700;
}

.cart-item-variation {
    font-size: 0.85rem;
    color: rgba(29, 29, 31, 0.6);
    margin: 0.25rem 0;
}

.cart-item-remove {
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
}

/* ============================================
   OVERLAY
   ============================================ */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1500;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   SEARCH MODAL
   ============================================ */

.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    overflow-y: auto;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    background: var(--white);
    border-radius: 24px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transform: translateY(-20px);
    transition: var(--transition);
    overflow: hidden;
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.search-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.close-search {
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-search:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.search-input-container {
    position: relative;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.search-input-container input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.search-input-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.search-input-container svg {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    stroke: var(--text-light);
    pointer-events: none;
}

.search-results {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    min-height: 200px;
}

.search-placeholder {
    text-align: center;
    color: var(--text-light);
    padding: 3rem 1rem;
    font-size: 1rem;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.search-results-grid .product-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
}

.search-results-grid .product-card .product-name,
.search-results-grid .product-card .product-color,
.search-results-grid .product-card .product-price,
.search-results-grid .product-card .product-promo-price {
    color: var(--text-dark);
}

@media (max-width: 640px) {
    .search-modal {
        padding: 0;
    }
    
    .search-modal-content {
        max-height: 100vh;
        border-radius: 0;
    }
    
    .search-header,
    .search-input-container,
    .search-results {
        padding: 1rem;
    }
    
    .search-results-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
}

/* ============================================
   HERO CAROUSEL
   ============================================ */

.hero-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #000000;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.slide-image::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: parallax 15s linear infinite;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    opacity: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-carousel:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn svg {
    stroke-width: 2.5;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.indicator.active {
    background: var(--white);
    width: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes parallax {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-50px) translateY(-50px); }
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255,255,255,0.5); }
    to { text-shadow: 0 0 30px rgba(255,255,255,0.8), 0 0 40px rgba(255,255,255,0.5); }
}

/* ============================================
   BOTÕES
   ============================================ */

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 0.94rem;
    border-radius: 980px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.4s both;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 350px;
    height: 350px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.94rem;
    border-radius: 980px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-top: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.btn-checkout {
    width: 100%;
    margin-bottom: 0.5rem;
}

/* ============================================
   FEATURES
   ============================================ */

.features {
    padding: 4rem 0;
    background: transparent;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 32px;
    transition: var(--transition-smooth);
    opacity: 0;
    animation: fadeInScale 0.6s ease forwards;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.95);
}

.feature-card:hover svg {
    animation: iconSpin 0.6s ease;
}

.feature-card svg {
    margin: 0 auto 1rem;
    stroke: var(--primary-color);
    transition: var(--transition);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-card p {
    color: rgba(29, 29, 31, 0.75);
    font-size: 0.95rem;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes iconSpin {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* ============================================
   SEÇÕES DE PRODUTOS
   ============================================ */

.products-section {
    padding: 5rem 0;
}

.products-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.bg-light {
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    text-shadow: none;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    animation: expandWidth 0.8s ease;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.2);
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(29, 29, 31, 0.75);
    margin-top: 1rem;
    text-shadow: none;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

@media (max-width: 1080px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 960px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.75rem;
    }

    .product-card {
        border-radius: 24px;
    }

    .product-info {
        padding: 1.4rem;
        gap: 0.85rem;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        max-width: 360px;
        margin: 0 auto;
    }

    .product-info {
        padding: 1.25rem;
    }

    .product-meta {
        width: 100%;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .product-card {
        border-radius: 20px;
    }

    .product-info {
        padding: 1.15rem;
    }
}

/* ============================================
   CARDS DE PRODUTO
   ============================================ */

.product-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    animation: fadeInUp 0.6s ease forwards;
    display: flex;
    flex-direction: column;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 0, 0, 0.12);
}

.product-card:hover::before {
    content: '🛍️ Adicionar ao carrinho';
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
    animation: slideInBottom 0.3s ease;
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

/* ============================================
   DETALHE DO PRODUTO
   ============================================ */

.product-detail-page {
    padding: 4rem 0;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
}

.product-detail-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-detail-category {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(29, 29, 31, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-detail-name {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.product-detail-color {
    font-size: 1rem;
    color: rgba(29, 29, 31, 0.7);
}

.product-detail-price span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.product-detail-price small {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: rgba(29, 29, 31, 0.6);
}

.product-detail-variations h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.variation-option {
    position: relative;
}

.variation-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.variation-option span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
}

.variation-option input:checked + span {
    border-color: var(--primary-color);
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.18);
}

.product-detail-actions {
    display: flex;
    gap: 1rem;
}

.product-loading,
.product-not-found {
    font-size: 1.1rem;
    color: rgba(29, 29, 31, 0.65);
}

.related-products {
    padding-top: 0;
}

.product-detail-colors {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-detail-colors h3 {
    font-size: 1rem;
    font-weight: 600;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.color-option {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.color-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.color-swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6);
}

.color-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.color-option img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid transparent;
    transition: var(--transition);
}

.color-option input:checked + .color-swatch {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.2);
}

.color-option input:checked ~ .color-label {
    color: var(--primary-color);
}

.color-option input:checked ~ img {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.15);
}

.product-detail-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-detail-main-image {
    width: 100%;
    border-radius: 32px;
    object-fit: cover;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.45);
}

.product-detail-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-thumb {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    padding: 0.25rem;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: var(--transition);
}

.product-thumb img {
    width: 68px;
    height: 68px;
    border-radius: 14px;
    object-fit: cover;
    display: block;
}

.product-thumb:hover,
.product-thumb.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.15);
    transform: translateY(-2px);
}

.product-detail-selected-color {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .color-option img {
        width: 44px;
        height: 44px;
    }

    .product-thumb img {
        width: 60px;
        height: 60px;
    }

    .product-detail-main-image {
        border-radius: 24px;
    }
}

@media (max-width: 968px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

@media (max-width: 820px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .product-detail-wrapper {
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .breadcrumb-link {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        font-size: 0.8rem;
        padding: 10px;
    }
    
    .header-top {
        padding: 0.75rem 0;
    }
    
    .logo a {
        font-size: 1.5rem;
    }
    
    .hero-carousel {
        height: 400px;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        opacity: 0.95;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .indicator {
        width: 5px;
        height: 5px;
    }
    
    .indicator.active {
        width: 20px;
    }
    
    .cart-sidebar {
        width: 100%;
        max-width: 100%;
    }
}

.section-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.section-actions .btn-secondary {
    min-width: 220px;
    text-align: center;
}

.home-banners {
    padding: 4rem 0;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.banner-card {
    position: relative;
    padding: 3rem 2.5rem;
    border-radius: 28px;
    color: var(--white);
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.banner-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 60%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.banner-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.banner-card p {
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.banner-card .btn-primary,
.banner-card .btn-secondary {
    position: relative;
    z-index: 1;
    align-self: flex-start;
}

.banner-badge {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.banner-badge::before {
    content: '★';
    font-size: 0.85rem;
}

.banner-collection {
    background: linear-gradient(135deg, #0f172a, #2563eb);
}

.banner-drop {
    background: linear-gradient(135deg, #9f1239, #ec4899);
}

.banner-wholesale {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
}

@media (max-width: 820px) {
    .home-banners {
        padding: 3rem 0;
    }

    .banner-card {
        padding: 2.5rem 2rem;
    }
}

.about-page {
    padding: 4rem 0 5rem;
    min-height: 60vh;
}

.about-hero {
    text-align: center;
    padding: 3rem 0;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.15rem;
    color: rgba(29, 29, 31, 0.7);
    max-width: 680px;
    margin: 0.5rem auto 0;
    line-height: 1.6;
}

.about-content {
    margin-top: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.about-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-card p {
    font-size: 1rem;
    color: rgba(29, 29, 31, 0.7);
    line-height: 1.7;
}

.about-values {
    margin-top: 4rem;
    text-align: center;
}

.about-values h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.value-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.value-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.95rem;
    color: rgba(29, 29, 31, 0.65);
    line-height: 1.6;
}

.about-cta {
    margin-top: 4rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    padding: 3rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}

.about-cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.05rem;
    color: rgba(29, 29, 31, 0.7);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .about-card {
        padding: 2rem 1.5rem;
    }

    .about-cta {
        padding: 2.5rem 1.5rem;
    }
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.75rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.product-description {
    font-size: 0.92rem;
    color: rgba(29, 29, 31, 0.65);
    line-height: 1.6;
    min-height: 2.6rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(29, 29, 31, 0.7);
    gap: 0.75rem;
}

@media (max-width: 520px) {
    .product-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

.product-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.product-promo-price {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-benefits span {
    font-size: 0.75rem;
    background: rgba(0, 122, 255, 0.08);
    color: var(--primary-color);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-weight: 600;
}

.product-footer {
    display: none;
}

.product-footer .btn-add-cart {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
    text-align: center;
}

.product-footer .btn-add-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.product-detail-description {
    font-size: 1rem;
    color: rgba(29, 29, 31, 0.7);
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
}

.product-detail-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.product-detail-benefits span {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(0, 122, 255, 0.08);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
}

.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #0b1120 100%);
    color: rgba(241, 245, 249, 0.9);
    padding: 4rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.25), transparent 55%),
                radial-gradient(circle at 80% 10%, rgba(236, 72, 153, 0.2), transparent 50%),
                radial-gradient(circle at 50% 100%, rgba(20, 184, 166, 0.2), transparent 55%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.footer-brand {
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 120px;
    height: auto;
}

.footer-brand p {
    color: rgba(241, 245, 249, 0.75);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: right;
}

.footer-cta span {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(241, 245, 249, 0.65);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: rgba(241, 245, 249, 0.95);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: rgba(241, 245, 249, 0.7);
    font-size: 0.95rem;
}

.footer-column ul a {
    color: inherit;
    transition: var(--transition-smooth);
}

.footer-column ul a:hover {
    color: var(--white);
}

.footer-newsletter p {
    font-size: 0.9rem;
    color: rgba(241, 245, 249, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form input {
    padding: 0.85rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(15, 23, 42, 0.35);
    color: var(--white);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(241, 245, 249, 0.5);
}

.newsletter-form input:focus {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(15, 23, 42, 0.5);
}

.newsletter-form .btn-primary {
    width: 100%;
    text-align: center;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    font-size: 1.4rem;
}

.footer-social a {
    color: rgba(241, 245, 249, 0.8);
    transition: var(--transition);
}

.footer-social a:hover {
    transform: translateY(-3px) scale(1.05);
    color: var(--white);
}

.footer-bottom p {
    color: rgba(241, 245, 249, 0.6);
    font-size: 0.85rem;
}

@media (max-width: 968px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-cta {
        text-align: left;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 960px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .header-actions {
        margin-left: auto;
        gap: 0.75rem;
    }

    .header-top {
        gap: 1rem;
    }

    .icon-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
}

