/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

:root {
    --gold-light: #f4e4c1;
    --gold: #d4a574;
    --gold-dark: #b8860b;
    --gold-gradient: linear-gradient(135deg, #d4a574 0%, #f4e4c1 50%, #d4a574 100%);
    --gold-radial: radial-gradient(circle at 30% 50%, #f4e4c1, #d4a574, #b8860b);
    --white: #ffffff;
    --off-white: #fafafa;
    --gray: #666;
    --dark: #1a1a1a;
    --shadow-gold: 0 10px 40px rgba(212, 165, 116, 0.3);
    --shadow-3d: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.top-bar {
    background: var(--gold-gradient);
    color: var(--dark);
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
    font-size: 14px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.navbar {
    padding: 20px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 32px;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.logo h1 span {
    color: var(--dark);
    -webkit-text-fill-color: var(--dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.icon-btn {
    background: var(--off-white);
    border: 2px solid var(--gold);
    padding: 10px 15px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
}

.icon-btn:hover {
    background: var(--gold-gradient);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gold-dark);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

/* Hero Banner */
.hero-banner {
    background: var(--gold-gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-promo {
    display: inline-block;
    background: var(--dark);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    color: var(--dark);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-discount {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cupom-label {
    background: var(--white);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

.discount-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
}

.cupom-code {
    display: inline-block;
    background: var(--dark);
    color: var(--gold-light);
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-3d);
}

.hero-validity {
    font-size: 14px;
    color: var(--dark);
    opacity: 0.8;
}

.floating-element {
    position: absolute;
    top: 50%;
    right: 10%;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.3);
    animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Efeitos 3D para Cards */
.card-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.card-3d:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 
        0 30px 60px rgba(212, 165, 116, 0.4),
        0 0 40px rgba(212, 165, 116, 0.2);
}

.card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 228, 193, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: inherit;
    z-index: 1;
    pointer-events: none;
}

.card-3d:hover::before {
    opacity: 1;
}

/* Category Banners */
.category-banners {
    padding: 60px 0;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow-3d);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--white);
    z-index: 2;
}

.category-overlay h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Brands Section */
.brands-section {
    padding: 40px 0;
    background: var(--off-white);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--gray);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.brand-card {
    background: var(--dark);
    color: var(--gold);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s;
    cursor: pointer;
}

.brand-card:hover {
    background: var(--gold-gradient);
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

/* Trust Banner */
.trust-banner {
    padding: 30px 0;
    background: linear-gradient(90deg, var(--gold-light), var(--white));
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--dark);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
}

.trust-content h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.trust-content p {
    font-size: 14px;
    color: var(--gray);
}

/* Products Section */
.products-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border: 2px solid var(--gold-light);
    border-radius: 15px;
    overflow: hidden;
    padding: 15px;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--gold-gradient);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
}

.new-badge {
    background: var(--dark);
    color: var(--gold);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.15);
}

.product-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
}

.product-brand {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-old {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 14px;
}

.price-new {
    font-size: 20px;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-add-cart {
    width: 100%;
    background: var(--gold-gradient);
    color: var(--dark);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-add-cart:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-add-cart:active {
    transform: scale(0.98);
}

/* Promo Banners */
.promo-banners {
    padding: 60px 0;
    background: var(--off-white);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.promo-card {
    background: var(--gold-gradient);
    padding: 40px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-dark {
    background: var(--dark);
    color: var(--gold);
}

.promo-badge {
    display: inline-block;
    background: var(--dark);
    color: var(--gold-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
}

.promo-card h3 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
}

.promo-discount {
    font-size: 20px;
    font-weight: 700;
}

.promo-discount span {
    font-size: 48px;
    font-weight: 800;
}

.promo-price {
    font-size: 48px;
    font-weight: 800;
}

/* Lifestyle Section */
.lifestyle-section {
    padding: 60px 0;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.lifestyle-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
}

.lifestyle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.lifestyle-card:hover img {
    transform: scale(1.15);
}

.lifestyle-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--dark);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
}

.lifestyle-card:hover .lifestyle-btn {
    opacity: 1;
    bottom: 20px;
}

/* Women Banner */
.women-banner {
    padding: 60px 0;
    background: var(--off-white);
}

.women-content {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    padding: 60px;
    border-radius: 20px;
    color: var(--white);
    text-align: center;
}

.women-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.women-content h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.women-price {
    font-size: 20px;
}

.women-price span {
    font-size: 42px;
    font-weight: 800;
    display: block;
}

/* Promo Banners Bottom */
.promo-banners-bottom {
    padding: 60px 0;
}

.promo-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.promo-card-bottom {
    background: var(--gold-gradient);
    padding: 40px;
    border-radius: 15px;
    position: relative;
    min-height: 280px;
}

.promo-discount-bottom {
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
}

.promo-discount-bottom span {
    font-size: 42px;
    font-weight: 800;
}

.promo-price-bottom {
    font-size: 42px;
    font-weight: 800;
    margin-top: 20px;
}

.promo-chat-bubble {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 32px;
    animation: bounce 2s infinite;
}

/* Footer Brands */
.footer-brands {
    padding: 40px 0;
    background: var(--off-white);
}

.footer-brands-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.footer-brand {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    color: var(--gray);
    border: 2px solid var(--gold-light);
    transition: all 0.3s;
}

.footer-brand:hover {
    background: var(--gold-gradient);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--gold-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--gold-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.social-links, .app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn {
    background: var(--gold-gradient);
    color: var(--dark);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods {
    font-size: 14px;
}

.payment-icons {
    margin-top: 10px;
    color: var(--gold);
    font-weight: 700;
}

.footer-timer {
    background: var(--gold-gradient);
    color: var(--dark);
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

/* Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    position: relative;
    border: 3px solid var(--gold);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray);
}

.popup-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark);
}

.popup-coupon {
    background: var(--gold-gradient);
    color: var(--dark);
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 3px;
    margin: 20px 0;
    display: inline-block;
}

.popup-timer {
    font-size: 16px;
    color: var(--gray);
    margin: 15px 0;
}

.popup-btn {
    background: var(--gold-gradient);
    color: var(--dark);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.popup-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* Chat Widget */
.chat-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    box-shadow: var(--shadow-3d);
    z-index: 999;
    transition: all 0.3s;
}

.chat-fab:hover {
    transform: scale(1.1);
}

.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-3d);
    z-index: 999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.chat-widget.show {
    display: flex;
}

.chat-header {
    background: var(--gold-gradient);
    color: var(--dark);
    padding: 15px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.chat-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

.chat-body {
    padding: 15px;
    height: 300px;
    overflow-y: auto;
    background: var(--off-white);
}

.chat-message {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 10px;
    max-width: 80%;
}

.chat-message.bot {
    background: var(--white);
    border: 1px solid var(--gold-light);
    margin-right: auto;
}

.chat-message.user {
    background: var(--gold-gradient);
    color: var(--dark);
    margin-left: auto;
}

.chat-input {
    display: flex;
    border-top: 1px solid var(--gold-light);
}

.chat-input input {
    flex: 1;
    padding: 12px;
    border: none;
    outline: none;
    font-family: inherit;
}

.chat-input button {
    background: var(--gold-gradient);
    color: var(--dark);
    border: none;
    padding: 12px 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.chat-input button:hover {
    opacity: 0.9;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--dark);
    color: var(--gold);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-3d);
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .hero-banner {
        padding: 50px 0;
    }
    
    .banner-grid,
    .promo-grid,
    .promo-grid-bottom {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .lifestyle-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-card {
        height: 200px;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .top-bar {
        font-size: 12px;
        padding: 10px 5px;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .icon-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    /* Hero Mobile */
    .hero-banner {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.1;
    }
    
    .discount-value {
        font-size: 32px;
    }
    
    .cupom-code {
        font-size: 24px;
        padding: 12px 20px;
    }
    
    /* Products Grid Mobile */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card {
        padding: 10px;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-info h4 {
        font-size: 14px;
    }
    
    .product-brand {
        font-size: 11px;
    }
    
    .price-new {
        font-size: 16px;
    }
    
    .btn-add-cart {
        font-size: 12px;
        padding: 10px 8px;
    }
    
    /* Brands Mobile */
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .brand-card {
        padding: 20px 10px;
        font-size: 14px;
    }
    
    /* Lifestyle Mobile */
    .lifestyle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .lifestyle-card {
        height: 150px;
    }
    
    /* Promo Cards Mobile */
    .promo-card h3,
    .promo-card-bottom h3 {
        font-size: 24px;
    }
    
    .promo-discount span,
    .promo-discount-bottom span {
        font-size: 32px;
    }
    
    .promo-price,
    .promo-price-bottom {
        font-size: 32px;
    }
    
    /* Women Banner Mobile */
    .women-content {
        padding: 40px 20px;
    }
    
    .women-content h3 {
        font-size: 32px;
    }
    
    .women-price span {
        font-size: 32px;
    }
    
    /* Footer Mobile */
    .footer-brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .footer-brand {
        padding: 15px 8px;
        font-size: 11px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .payment-methods {
        text-align: center;
    }
    
    /* Popup Mobile */
    .popup-content {
        padding: 30px 20px;
        max-width: 90%;
        margin: 0 15px;
    }
    
    .popup-content h3 {
        font-size: 22px;
    }
    
    .popup-coupon {
        font-size: 24px;
        padding: 12px 20px;
    }
    
    /* Chat Mobile */
    .chat-widget {
        width: calc(100% - 30px);
        right: 15px;
        bottom: 90px;
    }
    
    .chat-fab {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    /* Section Spacing */
    .products-section,
    .promo-banners,
    .promo-banners-bottom,
    .lifestyle-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile */
    .container {
        padding: 0 15px;
    }
    
    /* Header Extra Small */
    .top-bar {
        font-size: 11px;
        padding: 8px 5px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav-actions {
        gap: 5px;
    }
    
    .icon-btn {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    /* Hero Extra Small */
    .hero-title {
        font-size: 28px;
    }
    
    .discount-value {
        font-size: 24px;
    }
    
    .cupom-code {
        font-size: 20px;
        padding: 10px 16px;
        letter-spacing: 2px;
    }
    
    .hero-validity {
        font-size: 12px;
    }
    
    /* Products Single Column */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-info h4 {
        font-size: 16px;
    }
    
    .btn-add-cart {
        font-size: 13px;
        padding: 12px;
    }
    
    /* Category Cards */
    .category-card {
        height: 180px;
    }
    
    .category-overlay h3 {
        font-size: 20px;
    }
    
    /* Brands Extra Small */
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-card {
        font-size: 12px;
        padding: 18px 8px;
    }
    
    /* Lifestyle Single Column */
    .lifestyle-grid {
        grid-template-columns: 1fr;
    }
    
    .lifestyle-card {
        height: 200px;
    }
    
    /* Promo Cards Extra Small */
    .promo-card,
    .promo-card-bottom {
        padding: 30px 20px;
        min-height: 240px;
    }
    
    .promo-card h3,
    .promo-card-bottom h3 {
        font-size: 22px;
    }
    
    /* Women Banner */
    .women-content {
        padding: 30px 15px;
    }
    
    .women-content h3 {
        font-size: 28px;
    }
    
    /* Footer Brands */
    .footer-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .footer-col h4 {
        font-size: 14px;
    }
    
    .footer-timer {
        padding: 12px 18px;
        font-size: 13px;
    }
    
    /* Trust Banner */
    .trust-content {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    /* Popup Extra Small */
    .popup-content {
        padding: 25px 15px;
    }
    
    .popup-content h3 {
        font-size: 20px;
    }
    
    .popup-coupon {
        font-size: 20px;
        padding: 10px 16px;
    }
    
    .popup-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    /* Chat Extra Small */
    .chat-body {
        height: 250px;
    }
    
    /* Toast */
    .toast {
        padding: 12px 20px;
        font-size: 14px;
        max-width: 90%;
    }
    
    /* Section Spacing */
    .hero-banner,
    .category-banners,
    .products-section,
    .promo-banners,
    .women-banner,
    .promo-banners-bottom,
    .lifestyle-section {
        padding: 30px 0;
    }
    
    .brands-section,
    .trust-banner,
    .footer-brands {
        padding: 25px 0;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-banner {
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .lifestyle-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Touch Optimization */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .btn-add-cart,
    .icon-btn,
    .lifestyle-btn,
    .popup-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .card-3d:hover {
        transform: none;
    }
    
    .card-3d:active {
        transform: scale(0.98);
    }
    
    /* Simplify 3D effects */
    .product-card:hover .product-image img {
        transform: scale(1.05);
    }
}
