/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Barra Superior Principal - Melhorada */
.main-topbar {
    background: linear-gradient(135deg, #F4E4BC 0%, #C0C0C0 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    box-shadow: 0 3px 20px rgba(244, 228, 188, 0.4);
    border-bottom: 2px solid rgba(244, 228, 188, 0.6);
}

/* Primeira Linha: Logotipo, Busca e Ícones */
.topbar-row.topbar-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(244, 228, 188, 0.4);
    position: relative;
}

/* Segunda Linha: Menu Principal Centralizado */
.topbar-row.topbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

/* Logotipo Melhorado - Identidade da Marca Reforçada */
.topbar-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 160px;
    flex-shrink: 0;
    z-index: 10;
}

.topbar-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin: 0;
    background: linear-gradient(135deg, #2C2C2C 0%, #0F0F0F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: 2px;
    text-shadow: 0 3px 6px rgba(0,0,0,0.15);
    line-height: 1;
}

.topbar-logo h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #F4E4BC 0%, #C0C0C0 100%);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(244, 228, 188, 0.4);
}

.logo-tagline {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
    margin-top: 4px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
    font-style: italic;
}

/* Campo de Busca Centralizado Corrigido */
.topbar-search {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 380px;
}

.topbar-search-input {
    width: 100%;
    padding: 14px 55px 14px 22px;
    border: 2px solid rgba(244, 228, 188, 0.6);
    border-radius: 30px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.95);
    color: #2C2C2C;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 10px rgba(244, 228, 188, 0.2);
}

.topbar-search-input:focus {
    outline: none;
    border-color: #F4E4BC;
    background: white;
    box-shadow: 0 0 20px rgba(244, 228, 188, 0.4);
    transform: scale(1.02);
}

.topbar-search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #F4E4BC 0%, #C0C0C0 100%);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2C2C2C;
    box-shadow: 0 2px 8px rgba(244, 228, 188, 0.3);
}

.topbar-search-btn:hover {
    background: linear-gradient(135deg, #C0C0C0 0%, #F4E4BC 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(244, 228, 188, 0.5);
}

.topbar-search-btn i {
    font-size: 1.1rem;
}

/* Menu Principal Centralizado */
.topbar-menu {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.menu-link {
    color: #2C2C2C;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    padding: 12px 20px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.menu-link:hover {
    color: #0F0F0F;
    background: rgba(244, 228, 188, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 228, 188, 0.3);
}

.menu-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .menu-link i {
    transform: rotate(180deg);
}

/* Ícones do Lado Direito - Alinhamento Corrigido */
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    z-index: 10;
    min-width: 280px;
    justify-content: flex-end;
}

.action-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #2C2C2C;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 10px;
    border-radius: 10px;
    min-width: 65px;
}

.action-link:hover {
    color: #0F0F0F;
    background: rgba(244, 228, 188, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(244, 228, 188, 0.3);
}

.action-link i {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.action-text {
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.cart-action {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e74c3c;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(231, 76, 60, 0.3);
}

/* Menu Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(244, 228, 188, 0.4);
}

.mobile-menu-toggle i {
    font-size: 1.6rem;
    color: #2C2C2C;
}

/* Dropdown da nova barra superior */
.topbar-menu .dropdown {
    position: relative;
}

.topbar-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(244, 228, 188, 0.25);
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-15px);
    transition: all 0.3s ease;
    z-index: 3001;
    border: 2px solid #F4E4BC;
    margin-top: 8px;
}

.topbar-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.topbar-menu .dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 30px;
}

.topbar-menu .dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.topbar-menu .dropdown-link {
    color: #2C2C2C;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 12px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.topbar-menu .dropdown-link:hover {
    background: linear-gradient(135deg, rgba(244, 228, 188, 0.4) 0%, rgba(192, 192, 192, 0.4) 100%);
    color: #0F0F0F;
    transform: translateX(8px);
    box-shadow: 0 3px 10px rgba(244, 228, 188, 0.4);
}

/* Responsividade da Barra Superior Melhorada */
@media (max-width: 1024px) {
    .topbar-row.topbar-primary {
        gap: 15px;
        padding: 15px 0;
    }
    
    .topbar-row.topbar-nav {
        padding: 12px 0;
    }
    
    .topbar-logo h2 {
        font-size: 2.2rem;
    }
    
    .topbar-menu {
        gap: 45px;
    }
    
    .topbar-actions {
        gap: 18px;
        min-width: 220px;
    }
    
    .action-text {
        display: none;
    }
    
    .action-link {
        min-width: 50px;
        padding: 10px 8px;
    }
    
    .topbar-search {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .topbar-row.topbar-primary {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        padding: 10px 10px 10px 10px;
        position: relative;
        min-height: 56px;
    }
    .topbar-logo {
        min-width: unset;
        flex-shrink: 0;
        align-items: flex-start;
        margin-right: 0;
    }
    .topbar-logo h2 {
        font-size: 1.5rem;
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        letter-spacing: 1.5px;
        margin: 0;
        line-height: 1;
    }
    .logo-tagline {
        display: none;
    }
    .topbar-search {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        max-width: 60vw;
        width: 100%;
        z-index: 2;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .search-wrapper {
        width: 100%;
        max-width: 220px;
    }
    .topbar-search-input {
        font-size: 0.95rem;
        padding: 12px 40px 12px 15px;
    }
    .topbar-search-btn {
        width: 36px;
        height: 36px;
    }
    .topbar-actions {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: flex !important;
        position: static;
        margin-left: auto;
        z-index: 3;
        font-size: 2rem;
        background: none;
        border: none;
        box-shadow: none;
        align-items: center;
        justify-content: center;
        padding: 0 0 0 10px;
        min-width: 44px;
        min-height: 44px;
        cursor: pointer;
    }
    .banner {
        margin-top: 90px;
    }
}

@media (max-width: 480px) {
    .topbar-row.topbar-primary {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        padding: 10px 10px 10px 10px;
        position: relative;
    }
    .topbar-logo {
        min-width: unset;
        flex-shrink: 0;
        align-items: flex-start;
    }
    .topbar-logo h2 {
        font-size: 1.3rem;
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        letter-spacing: 1.5px;
        margin: 0;
        line-height: 1;
    }
    .logo-tagline {
        display: none;
    }
    .topbar-search {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        max-width: 60vw;
        width: 100%;
        z-index: 2;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .search-wrapper {
        width: 100%;
        max-width: 180px;
    }
    .topbar-search-input {
        font-size: 0.85rem;
        padding: 10px 40px 10px 15px;
    }
    .topbar-search-btn {
        width: 32px;
        height: 32px;
    }
    .topbar-actions {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: flex !important;
        position: static;
        margin-left: auto;
        z-index: 3;
        font-size: 1.6rem;
        background: none;
        border: none;
        box-shadow: none;
        align-items: center;
        justify-content: center;
        padding: 0 0 0 10px;
    }
    .banner {
        margin-top: 80px;
    }
}

/* Ajuste do banner para a barra superior melhorada */
.banner {
    margin-top: 140px;
    position: relative;
    height: 500px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
}

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

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 228, 188, 0.8) 0%, rgba(192, 192, 192, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: #2C2C2C;
}

.banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #F4E4BC 0%, #C0C0C0 100%);
    color: #2C2C2C;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(244, 228, 188, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 228, 188, 0.4);
    border-color: #F4E4BC;
}

/* Categorias */
.categories {
    background: #fafafa;
    padding: 80px 0;
}

.categories h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #F4E4BC;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(244, 228, 188, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 228, 188, 0.1) 0%, rgba(192, 192, 192, 0.1) 100%);
    transition: left 0.3s ease;
    z-index: 1;
}

.category-card:hover::before {
    left: 0;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: #F4E4BC;
    box-shadow: 0 20px 40px rgba(244, 228, 188, 0.15);
}

.category-card i {
    font-size: 2.5rem;
    color: #F4E4BC;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.category-card:hover i {
    transform: scale(1.1);
    color: #DAA520;
}

.category-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin: 0;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: #2C2C2C;
}

/* Filtros */
.filters {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid #f0f0f0;
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #F4E4BC;
    background: transparent;
    color: #F4E4BC;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    margin: 5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #F4E4BC;
    color: #2C2C2C;
}

.filter-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-filter {
    background: #f0f0f0;
    color: #666;
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tag-filter:hover,
.tag-filter.active {
    background: #C0C0C0;
    color: white;
}

/* Produtos */
.products {
    padding: 80px 0;
    background: #fafafa;
}

.products h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #F4E4BC;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(244, 228, 188, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(244, 228, 188, 0.12);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

.product-info {
    padding: 20px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
}

.product-tag {
    background: #f0f0f0;
    color: #666;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
}

.product-price {
    margin-bottom: 15px;
}

.preco-original {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.preco-final {
    font-size: 1.3rem;
    font-weight: 700;
    color: #F4E4BC;
    display: block;
}

.btn-comprar {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #F4E4BC 0%, #C0C0C0 100%);
    color: #2C2C2C;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(244, 228, 188, 0.2);
}

.btn-comprar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 228, 188, 0.3);
    color: #0F0F0F;
}

/* Carrinho */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    background: linear-gradient(135deg, #2c2c2c 0%, #666 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item:last-child {
    border-bottom: none;
}

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

.cart-item-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #2c2c2c;
    font-weight: 600;
}

.remove-item {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.8rem;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.btn-whatsapp {
    width: 100%;
    background: #25d366;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

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

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* WhatsApp Fixo */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-fixed a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-fixed a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Rodapé */
.footer {
    background: linear-gradient(135deg, #333 0%, #222 100%);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: #F4E4BC;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 10px;
    color: #ccc;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info i {
    color: #F4E4BC;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
}

/* Responsividade */
@media (max-width: 768px) {
    .topbar-row.topbar-primary {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo h1 {
        font-size: 2.4rem;
        letter-spacing: 1.5px;
    }
    
    .logo .tagline {
        font-size: 0.9rem;
        letter-spacing: 0.8px;
    }
    
    .nav ul {
        gap: 20px;
    }
    
    .banner h2 {
        font-size: 2.5rem;
    }
    
    .banner p {
        font-size: 1.1rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .filter-container {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .whatsapp-fixed {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-fixed a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .banner {
        height: 60vh;
        margin-top: 120px;
    }
    
    .banner h2 {
        font-size: 2rem;
    }
    
    .products h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.search-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-input {
    padding: 10px 15px;
    border: 2px solid #F4E4BC;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 0.9rem;
    width: 250px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(244, 228, 188, 0.15);
    width: 280px;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #F4E4BC;
    border: none;
    color: #2C2C2C;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: #C0C0C0;
    transform: scale(1.1);
}

/* Seções de Categoria */
.category-section {
    margin-bottom: 80px;
    padding: 40px 0;
    border-bottom: 1px solid #f0f0f0;
}

.category-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #0F0F0F;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #F4E4BC 0%, #C0C0C0 100%);
    border-radius: 1px;
}

.category-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Responsividade para seções de categoria */
@media (max-width: 768px) {
    .category-section {
        margin-bottom: 60px;
        padding: 30px 0;
    }
    
    .category-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .category-section .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .category-section {
        margin-bottom: 40px;
        padding: 20px 0;
    }
    
    .category-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .category-section .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Card "Ver Mais" */
.ver-mais-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(244, 228, 188, 0.1) 0%, rgba(192, 192, 192, 0.1) 100%);
    border: 2px dashed #F4E4BC;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ver-mais-card:hover {
    background: linear-gradient(135deg, rgba(244, 228, 188, 0.2) 0%, rgba(192, 192, 192, 0.2) 100%);
    border-color: #DAA520;
    transform: translateY(-5px);
}

.ver-mais-content {
    text-align: center;
    padding: 20px;
}

.ver-mais-content i {
    font-size: 3rem;
    color: #F4E4BC;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.ver-mais-card:hover .ver-mais-content i {
    color: #DAA520;
    transform: scale(1.1);
}

.ver-mais-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #2C2C2C;
    margin-bottom: 10px;
    font-weight: 600;
}

.ver-mais-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.btn-ver-mais {
    background: linear-gradient(135deg, #F4E4BC 0%, #C0C0C0 100%);
    color: #2C2C2C;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(244, 228, 188, 0.2);
}

.btn-ver-mais:hover {
    background: linear-gradient(135deg, #DAA520 0%, #C0C0C0 100%);
    color: #0F0F0F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 228, 188, 0.3);
}

/* Responsividade para o card "Ver Mais" */
@media (max-width: 768px) {
    .ver-mais-content h3 {
        font-size: 1.2rem;
    }
    
    .ver-mais-content i {
        font-size: 2.5rem;
    }
    
    .btn-ver-mais {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .ver-mais-content h3 {
        font-size: 1.1rem;
    }
    
    .ver-mais-content i {
        font-size: 2rem;
    }
    
    .btn-ver-mais {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 4000;
    transition: left 0.3s ease;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background: linear-gradient(135deg, #F4E4BC 0%, #C0C0C0 100%);
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(244, 228, 188, 0.5);
}

.mobile-menu-header h3 {
    font-family: 'Playfair Display', serif;
    color: #2C2C2C;
    font-size: 1.5rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2C2C2C;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(244, 228, 188, 0.3);
}

.mobile-search {
    display: flex;
    margin-bottom: 30px;
    gap: 10px;
}

.mobile-search-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid rgba(244, 228, 188, 0.5);
    border-radius: 8px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.9);
}

.mobile-search-btn {
    background: linear-gradient(135deg, #F4E4BC 0%, #C0C0C0 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    color: #2C2C2C;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-search-btn:hover {
    background: linear-gradient(135deg, #C0C0C0 0%, #F4E4BC 100%);
}

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-link {
    color: #2C2C2C;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(244, 228, 188, 0.3);
    transition: all 0.3s ease;
}

.mobile-link:hover {
    color: #0F0F0F;
    padding-left: 10px;
}

.mobile-submenu {
    display: none;
    flex-direction: column;
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-menu-item:hover .mobile-submenu {
    display: flex;
}

.mobile-submenu-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.mobile-submenu-link:hover {
    color: #2C2C2C;
    padding-left: 10px;
}

.mobile-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid rgba(244, 228, 188, 0.5);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-action-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #2C2C2C;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.mobile-action-link:hover {
    color: #0F0F0F;
    padding-left: 10px;
}

.mobile-action-link i {
    font-size: 1.2rem;
    width: 20px;
}

.mobile-cart-count {
    background: #e74c3c;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: auto;
}

/* Modal de Cadastro */
.signup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.signup-modal.open {
    display: flex;
}

.signup-content {
    background: linear-gradient(135deg, #F4E4BC 0%, #C0C0C0 100%);
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.signup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(244, 228, 188, 0.5);
}

.signup-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2C2C2C;
    margin: 0;
    font-weight: 600;
}

.close-signup {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-signup:hover {
    color: #2C2C2C;
    background: rgba(244, 228, 188, 0.3);
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2C2C2C;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 2px solid rgba(244, 228, 188, 0.6);
    border-radius: 10px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.9);
    color: #2C2C2C;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #F4E4BC;
    background: white;
    box-shadow: 0 0 15px rgba(244, 228, 188, 0.4);
}

.form-group input.error,
.form-group select.error {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 5px;
    font-weight: 500;
}

.form-actions {
    margin-top: 10px;
}

.btn-signup {
    width: 100%;
    background: linear-gradient(135deg, #2C2C2C 0%, #0F0F0F 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.btn-signup:hover {
    background: linear-gradient(135deg, #0F0F0F 0%, #2C2C2C 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 44, 44, 0.3);
}

.btn-signup:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.signup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 4999;
    display: none;
}

.signup-overlay.open {
    display: block;
}

/* Responsividade do Modal de Cadastro */
@media (max-width: 768px) {
    .signup-content {
        padding: 20px;
        margin: 10px;
        max-height: 95vh;
    }
    
    .signup-header h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .btn-signup {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .signup-content {
        padding: 15px;
        margin: 5px;
    }
    
    .signup-header h3 {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .btn-signup {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Modal de Login */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-modal.open {
    display: flex;
}

.login-content {
    background: linear-gradient(135deg, #F4E4BC 0%, #C0C0C0 100%);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(244, 228, 188, 0.5);
}

.login-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2C2C2C;
    margin: 0;
    font-weight: 600;
}

.close-login {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-login:hover {
    color: #2C2C2C;
    background: rgba(244, 228, 188, 0.3);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-form .form-group label {
    font-weight: 600;
    color: #2C2C2C;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
}

.login-form .form-group input {
    padding: 12px 15px;
    border: 2px solid rgba(244, 228, 188, 0.6);
    border-radius: 10px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.9);
    color: #2C2C2C;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.login-form .form-group input:focus {
    outline: none;
    border-color: #F4E4BC;
    background: white;
    box-shadow: 0 0 15px rgba(244, 228, 188, 0.4);
}

.login-form .form-group input.error {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.btn-login {
    width: 100%;
    background: linear-gradient(135deg, #2C2C2C 0%, #0F0F0F 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.btn-login:hover {
    background: linear-gradient(135deg, #0F0F0F 0%, #2C2C2C 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 44, 44, 0.3);
}

.btn-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-footer {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(244, 228, 188, 0.3);
}

.login-footer p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.login-footer a {
    color: #2C2C2C;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: #0F0F0F;
    text-decoration: underline;
}

.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 4999;
    display: none;
}

.login-overlay.open {
    display: block;
}

/* Responsividade do Modal de Login */
@media (max-width: 768px) {
    .login-content {
        padding: 20px;
        margin: 10px;
    }
    
    .login-header h3 {
        font-size: 1.5rem;
    }
    
    .login-form .form-group input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .btn-login {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .login-content {
        padding: 15px;
        margin: 5px;
    }
    
    .login-header h3 {
        font-size: 1.3rem;
    }
    
    .login-form .form-group input {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .btn-login {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Modal de Histórico de Compras */
.purchases-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.purchases-modal.open {
    display: flex;
}

.purchases-content {
    background: linear-gradient(135deg, #F4E4BC 0%, #C0C0C0 100%);
    border-radius: 20px;
    padding: 30px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.purchases-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(244, 228, 188, 0.5);
}

.purchases-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2C2C2C;
    margin: 0;
    font-weight: 600;
}

.close-purchases {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-purchases:hover {
    color: #2C2C2C;
    background: rgba(244, 228, 188, 0.3);
}

.purchases-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(244, 228, 188, 0.6);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2C2C2C;
    font-family: 'Montserrat', sans-serif;
}

.tab-btn:hover {
    background: rgba(244, 228, 188, 0.4);
    border-color: #F4E4BC;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #2C2C2C 0%, #0F0F0F 100%);
    color: white;
    border-color: #2C2C2C;
}

.purchases-content-area {
    min-height: 300px;
}

.purchases-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.purchase-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid rgba(244, 228, 188, 0.4);
    transition: all 0.3s ease;
}

.purchase-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 228, 188, 0.3);
    border-color: #F4E4BC;
}

.purchase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(244, 228, 188, 0.3);
}

.purchase-number {
    font-weight: 700;
    color: #2C2C2C;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
}

.purchase-date {
    color: #666;
    font-size: 0.9rem;
}

.purchase-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.purchase-status.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #856404;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.purchase-status.processing {
    background: rgba(0, 123, 255, 0.2);
    color: #004085;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.purchase-status.completed {
    background: rgba(40, 167, 69, 0.2);
    color: #155724;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.purchase-details {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}

.purchase-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.purchase-item-name {
    font-weight: 600;
    color: #2C2C2C;
    font-size: 0.95rem;
}

.purchase-item-quantity {
    color: #666;
    font-size: 0.85rem;
}

.purchase-total {
    text-align: right;
}

.purchase-total-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2C2C2C;
    font-family: 'Playfair Display', serif;
}

.purchase-total-label {
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.empty-purchases {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-purchases i {
    font-size: 4rem;
    color: #F4E4BC;
    margin-bottom: 20px;
}

.empty-purchases h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2C2C2C;
    margin-bottom: 10px;
    font-weight: 600;
}

.empty-purchases p {
    margin-bottom: 25px;
    font-size: 1rem;
}

.btn-shop-now {
    display: inline-block;
    background: linear-gradient(135deg, #F4E4BC 0%, #C0C0C0 100%);
    color: #2C2C2C;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.btn-shop-now:hover {
    background: linear-gradient(135deg, #DAA520 0%, #C0C0C0 100%);
    color: #0F0F0F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 228, 188, 0.3);
}

.purchases-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 4999;
    display: none;
}

.purchases-overlay.open {
    display: block;
}

/* Responsividade do Modal de Compras */
@media (max-width: 768px) {
    .purchases-content {
        padding: 20px;
        margin: 10px;
        max-height: 95vh;
    }
    
    .purchases-header h3 {
        font-size: 1.5rem;
    }
    
    .purchases-tabs {
        gap: 8px;
    }
    
    .tab-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .purchase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .purchase-details {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .purchase-total {
        text-align: center;
    }
    
    .empty-purchases {
        padding: 40px 15px;
    }
    
    .empty-purchases i {
        font-size: 3rem;
    }
    
    .empty-purchases h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .purchases-content {
        padding: 15px;
        margin: 5px;
    }
    
    .purchases-header h3 {
        font-size: 1.3rem;
    }
    
    .tab-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .purchase-item {
        padding: 15px;
    }
    
    .purchase-number {
        font-size: 1rem;
    }
    
    .purchase-total-value {
        font-size: 1.1rem;
    }
    
    .empty-purchases {
        padding: 30px 10px;
    }
    
    .empty-purchases i {
        font-size: 2.5rem;
    }
    
    .empty-purchases h4 {
        font-size: 1.1rem;
    }
}

/* Área Administrativa */
.admin-login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-login-modal.open {
    display: flex;
}

.admin-login-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2C2C2C 100%);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 2px solid #F4E4BC;
}

.admin-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(244, 228, 188, 0.3);
}

.admin-login-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #F4E4BC;
    margin: 0;
    font-weight: 600;
}

.close-admin-login {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #F4E4BC;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-admin-login:hover {
    color: white;
    background: rgba(244, 228, 188, 0.2);
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-login-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-login-form .form-group label {
    font-weight: 600;
    color: #F4E4BC;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
}

.admin-login-form .form-group input {
    padding: 12px 15px;
    border: 2px solid rgba(244, 228, 188, 0.3);
    border-radius: 10px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.admin-login-form .form-group input:focus {
    outline: none;
    border-color: #F4E4BC;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(244, 228, 188, 0.3);
}

.admin-login-form .form-group input::placeholder {
    color: rgba(244, 228, 188, 0.6);
}

.btn-admin-login {
    width: 100%;
    background: linear-gradient(135deg, #F4E4BC 0%, #DAA520 100%);
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.btn-admin-login:hover {
    background: linear-gradient(135deg, #DAA520 0%, #F4E4BC 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 228, 188, 0.3);
}

.admin-login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 5999;
    display: none;
}

.admin-login-overlay.open {
    display: block;
}

/* Painel Administrativo */
.admin-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    z-index: 7000;
    display: none;
    flex-direction: column;
}

.admin-panel.open {
    display: flex;
}

.admin-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2C2C2C 100%);
    color: white;
    padding: 15px 0;
    border-bottom: 3px solid #F4E4BC;
}

.admin-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 0;
    color: #F4E4BC;
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-user {
    font-weight: 600;
    color: #F4E4BC;
}

.btn-admin-logout {
    background: rgba(244, 228, 188, 0.2);
    border: 1px solid #F4E4BC;
    color: #F4E4BC;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-admin-logout:hover {
    background: #F4E4BC;
    color: #1a1a1a;
}

.admin-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.admin-sidebar {
    width: 250px;
    background: white;
    border-right: 1px solid #e0e0e0;
    padding: 20px 0;
}

.admin-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.admin-menu-item {
    background: none;
    border: none;
    padding: 15px 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 3px solid transparent;
}

.admin-menu-item:hover {
    background: rgba(244, 228, 188, 0.1);
    color: #2C2C2C;
}

.admin-menu-item.active {
    background: rgba(244, 228, 188, 0.2);
    color: #2C2C2C;
    border-left-color: #F4E4BC;
    font-weight: 600;
}

.admin-menu-item i {
    width: 20px;
    text-align: center;
}

.admin-main {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.section-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2C2C2C;
    margin: 0;
    font-weight: 600;
}

.section-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.admin-search {
    padding: 8px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.9rem;
    width: 250px;
    transition: all 0.3s ease;
}

.admin-search:focus {
    outline: none;
    border-color: #F4E4BC;
    box-shadow: 0 0 10px rgba(244, 228, 188, 0.3);
}

.admin-filter {
    padding: 8px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
}

.btn-export {
    background: linear-gradient(135deg, #F4E4BC 0%, #C0C0C0 100%);
    color: #2C2C2C;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.btn-export:hover {
    background: linear-gradient(135deg, #DAA520 0%, #C0C0C0 100%);
    transform: translateY(-2px);
}

/* Tabelas Administrativas */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.admin-table th {
    background: linear-gradient(135deg, #F4E4BC 0%, #C0C0C0 100%);
    color: #2C2C2C;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9rem;
}

.admin-table tr:hover {
    background: rgba(244, 228, 188, 0.1);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

/* Estatísticas */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F4E4BC 0%, #C0C0C0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2C2C2C;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2C2C2C;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsividade da Área Administrativa */
@media (max-width: 1024px) {
    .admin-sidebar {
        width: 200px;
    }
    
    .admin-menu-item {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .admin-main {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .admin-content {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .admin-menu {
        flex-direction: row;
        overflow-x: auto;
        padding: 0 20px;
    }
    
    .admin-menu-item {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
    }
    
    .admin-menu-item.active {
        border-left: none;
        border-bottom-color: #F4E4BC;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .section-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .admin-search {
        width: 150px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .admin-header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .admin-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .admin-main {
        padding: 15px;
    }
    
    .admin-table {
        font-size: 0.8rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 8px 10px;
    }
    
    .stat-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
} 