* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif;
}

/* Remover sublinhado de todos os links */
a {
    text-decoration: none !important;
}

a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none !important;
}

body {
    font-family: 'Noto Sans', sans-serif;
    color: #1a1a1a;
    background: linear-gradient(rgba(29, 29, 29, 0.14) 10vh, rgba(243, 243, 243, 0.8) 55vh, rgb(243, 243, 243) 25%, rgb(243, 243, 243) 100%);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #cdeceb;
    color: #0abab5;
    padding: 0.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: auto;
}

nav button {
    background: transparent;
    border: 1px solid #0abab5;
    color: #0abab5;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    transition: all 0.2s;
    white-space: nowrap;
}

nav button:hover {
    background-color: rgba(10, 186, 181, 0.1);
}

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

.icon-btn {
    background: none;
    border: none;
    color: #0abab5;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    border-radius: 0.25rem;
}

.icon-btn:hover {
    background-color: rgba(10, 186, 181, 0.1);
}

.icon-btn i {
    font-size: 20px;
}

.user-btn {
    display: flex;
    align-items: center;
    text-decoration: none !important;
}

.user-btn:hover {
    background-color: rgba(10, 186, 181, 0.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #22c55e;
    color: white;
    font-size: 0.7rem;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    padding: 0 4px;
}

.cart-btn {
    position: relative;
}

.cart-btn svg {
    width: 20px;
    height: 20px;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cart-modal.active {
    display: flex;
}

.cart-modal-content {
    background-color: #fff;
    border-radius: 0.75rem;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}

.cart-modal-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.cart-modal-header h2 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cor-botoes, #0abab5);
    margin: 0;
}

.cart-close-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.cart-close-btn:hover {
    color: #0abab5;
}

.cart-items {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
    max-height: calc(90vh - 250px);
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}

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

.cart-item-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    flex-shrink: 0;
    border: 1px solid #e5e7eb;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.cart-item-name {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-item-delete {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    border-radius: 0.25rem;
    width: 32px;
    height: 32px;
}

.cart-item-delete:hover {
    color: #dc2626;
    background-color: rgba(220, 38, 38, 0.1);
}

.cart-item-delete i {
    font-size: 16px;
}

.cart-quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.125rem 0.25rem;
    background-color: #fff;
}

.cart-quantity-btn {
    background: none;
    border: none;
    color: var(--cor-botoes, #0abab5);
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: bold;
    transition: background-color 0.2s;
    border-radius: 0.25rem;
    padding: 0;
    line-height: 1;
}

.cart-quantity-btn:hover {
    background-color: rgba(10, 186, 181, 0.1);
}

.cart-quantity-value {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 24px;
    text-align: center;
    padding: 0 0.25rem;
}

.cart-item-price {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cor-botoes, #0abab5);
    text-align: right;
    white-space: nowrap;
    margin-left: auto;
}

.cart-modal-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff;
}

.cart-total-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-total-label {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-total-value {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cor-botoes, #0abab5);
}

.cart-prepare-btn {
    width: 100%;
    background-color: var(--cor-botoes, #0abab5);
    color: #fff;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, opacity 0.2s;
    margin-top: 0;
}

.cart-prepare-btn:hover {
    opacity: 0.9;
    background-color: var(--cor-botoes, #0abab5);
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #999;
}

.cart-empty p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #0abab5;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 2rem 1rem 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    background-image: url('../banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 20px;
}

/* Hero Slider */
.hero-slider {
    padding: 2rem 1rem 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    min-height: 400px;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 20px;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 400px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: translateX(100%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

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

.slide-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.slide-content {
    position: absolute;
    max-width: 600px;
    padding: 2rem;
    z-index: 10;
    text-align: center;
}

.slide-content-esquerda {
    left: 5%;
    text-align: left;
}

.slide-content-centro {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.slide-content-direita {
    right: 5%;
    text-align: right;
}

.slide-text {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.slide-button {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
}

.slide-button:hover {
    transform: scale(1.05);
}

.slide-button-text {
    background: var(--cor-botoes, #0abab5);
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.slide-button-text:hover {
    background: var(--cor-botoes-hover, #089a96);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.slide-button-image {
    max-width: 200px;
    max-height: 60px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s;
}

.slide-button-image:hover {
    transform: scale(1.1);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    color: var(--cor-botoes, #0abab5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.slider-indicator.active {
    background: #fff;
    width: 32px;
    border-radius: 6px;
}

/* Responsivo do Slider */
@media (max-width: 768px) {
    .hero-slider {
        padding: 1.5rem 0.75rem 0 0.75rem;
    }
    
    .slider-container {
        min-height: 300px;
    }
    
    .slider-wrapper {
        min-height: 300px;
    }
    
    .slide-image {
        min-height: 300px;
    }
    
    .slide-content {
        max-width: 90%;
        padding: 1.5rem;
    }
    
    .slide-content-esquerda {
        left: 5%;
    }
    
    .slide-content-centro {
        left: 50%;
    }
    
    .slide-content-direita {
        right: 5%;
    }
    
    .slide-text {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .slide-button-text {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .slide-button-image {
        max-width: 150px;
        max-height: 50px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-indicators {
        bottom: 15px;
    }
    
    .slider-indicator {
        width: 10px;
        height: 10px;
    }
    
    .slider-indicator.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        padding: 1rem 0.5rem 0 0.5rem;
    }
    
    .slider-container {
        min-height: 250px;
    }
    
    .slider-wrapper {
        min-height: 250px;
    }
    
    .slide-image {
        min-height: 250px;
    }
    
    .slide-text {
        font-size: 1.25rem;
    }
    
    .slide-button-text {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
    }
}

/* Categories */
.categories {
    background-color: transparent;
    padding: 2rem 1rem;
    position: relative;
}

.categories-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.categories-container {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.5rem 0;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .categories-wrapper {
        overflow: hidden;
    }
    
    .categories-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #0abab5 #f0f0f0;
        justify-content: flex-start;
        padding: 0.5rem 1rem;
        margin: 0 -1rem;
    }
    
    .categories-container::-webkit-scrollbar {
        height: 4px;
    }
    
    .categories-container::-webkit-scrollbar-track {
        background: #f0f0f0;
    }
    
    .categories-container::-webkit-scrollbar-thumb {
        background: #0abab5;
        border-radius: 2px;
    }
    
    .category-btn {
        white-space: nowrap;
    }
}

.category-scroll-btn {
    display: none !important;
}

/* Toolbar (search + sort) */
.catalog-toolbar {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    justify-content: center;
}

.search-box {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 0.5rem 2.25rem 0.5rem 0.9rem;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    outline: none;
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.875rem;
    height: 38px;
}

.search-box button {
    position: absolute;
    right: 0.3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0abab5;
    color: #fff;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
}

.sort-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    color: #0abab5;
    cursor: pointer;
    font-size: 0.875rem;
    height: 38px;
}

.category-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    background-color: #fff;
    color: #0abab5;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    text-decoration: none;
    display: inline-block;
}

.category-btn:hover {
    background-color: #f0f0f0;
}

.category-btn.active {
    background-color: #fff;
    color: #0abab5;
    border-color: #0abab5;
    box-shadow: 0 0 0 2px rgba(10,186,181,0.15);
}

/* Products Grid */
.products-section {
    padding: 3rem 1rem;
    background: transparent;
    width: 100%;
    box-sizing: border-box;
}

.products-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1.5rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.products-grid-empty {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 300px !important;
    grid-template-columns: none !important;
}

.no-products-message {
    text-align: center;
    padding: 2rem;
    color: #999;
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 1rem !important;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1rem !important;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.5rem !important;
    }
    
    .product-card {
        font-size: 0.8rem;
    }
    
    .product-info {
        padding: 0.5rem;
    }
    
    .product-code-name {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .product-price {
        font-size: 0.9rem;
    }
    
    .add-to-cart-btn {
        padding: 0.5rem 0.6rem;
        font-size: 0.7rem;
    }
}

.product-card {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 380px;
    min-width: 0;
    max-width: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    .product-card {
        min-height: 320px;
    }
}

@media (max-width: 480px) {
    .product-card {
        min-height: 280px;
    }
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    background-color: #fff;
    overflow: hidden;
    margin-bottom: 0;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .product-image-container {
        height: 160px;
        min-height: 160px;
        max-height: 160px;
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .product-image-container {
        height: 140px;
        min-height: 140px;
        max-height: 140px;
        padding: 0.5rem;
    }
}

.product-discount-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: #e91e63;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Noto Sans', sans-serif;
    z-index: 5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Esconder coração em cards de produtos */
.product-card .wishlist-heart {
    display: none !important;
}

/* Manter coração apenas na página de produto */
.wishlist-heart-product,
.product-gallery .wishlist-heart {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Estilos gerais para coração (mantido para compatibilidade) */
.wishlist-heart {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wishlist-heart:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wishlist-heart i {
    font-size: 18px;
    color: #999;
    transition: color 0.3s;
}

.wishlist-heart:hover i {
    color: #e91e63;
}

.wishlist-heart.active i {
    color: #e91e63 !important;
}

.wishlist-heart.active {
    background: rgba(233, 30, 99, 0.1);
}
}

.product-image {
    width: auto;
    height: auto;
    max-width: calc(100% - 2rem);
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.3s;
    display: block;
}

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

.product-info {
    padding: 1rem;
    padding-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
}

.product-code-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    min-height: 2.8em;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
    font-family: 'Noto Sans', sans-serif;
    text-align: center;
}

.product-price .currency {
    font-size: 0.9em;
    font-weight: 500;
}

.product-price-original {
    font-size: 0.875rem;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
    font-family: 'Noto Sans', sans-serif;
}

.product-price-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0abab5;
    font-family: 'Noto Sans', sans-serif;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.add-to-cart-btn {
    width: 100%;
    background-color: var(--cor-botoes, #0abab5);
    color: #fff;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 1.5rem;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    font-family: 'Noto Sans', sans-serif;
}

.add-to-cart-btn:hover {
    background-color: #089994;
}

.add-to-cart-btn i {
    font-size: 1rem;
    display: inline-block;
    margin-right: 0.25rem;
    line-height: 1;
}

.more-info-link {
    display: block;
    text-align: center;
    color: #888;
    font-size: 0.75rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.5rem;
    transition: color 0.2s;
    font-family: 'Noto Sans', sans-serif;
}

.more-info-link:hover {
    color: var(--cor-botoes, #0abab5);
}

.load-more-container {
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.load-more-btn {
    background: var(--cor-botoes, #0abab5);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Noto Sans', sans-serif;
    transition: all 0.2s;
}

.load-more-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.more-info-btn {
    width: 100%;
    background: none;
    border: none;
    color: #0abab5;
    font-size: 0.75rem;
    font-weight: 400;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
    text-transform: uppercase;
    font-family: 'Noto Sans', sans-serif;
}

.more-info-btn:hover {
    color: #089994;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #cdeceb;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-top: 1px solid rgba(10, 186, 181, 0.2);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu button {
    background: none;
    border: none;
    color: #0abab5;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.mobile-menu button:hover {
    color: #0abab5;
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: #f3f4f6;
    padding: 1rem 1rem 1rem 1rem;
    border-top: 1px solid #e5e7eb;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.footer-section h4 {
    font-family: 'Noto Sans', sans-serif;
    font-weight: bold;
    color: #0abab5;
    margin-bottom: 1rem;
}

.footer-section {
    position: relative;
    padding-right: 2rem;
}

.footer-section:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #e0e0e0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #999;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li i,
.footer-section ul li svg {
    font-size: 24px;
    flex-shrink: 0;
    color: #999;
    width: 24px;
    height: 24px;
    text-align: center;
}

.footer-section ul li svg {
    fill: #999;
}

.footer-section ul li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: opacity 0.2s;
    width: 100%;
}

.footer-section ul li a:hover {
    opacity: 0.8;
}

.footer-section ul li a span {
    display: flex;
    align-items: center;
}

.security-badges {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.security-badges img {
    width: auto;
    height: 60px;
    object-fit: contain;
}

.footer-bottom {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-top: 1px solid #e0e0e0;
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #999;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-bottom p {
    margin: 0;
    flex: 1;
    line-height: 1.2;
    color: #999; /* Garantir que o texto mantenha sua cor original */
}

/* Garantir que apenas a logo seja afetada pelo filtro, não o texto */
.footer-bottom-content p {
    filter: none !important; /* Texto não deve ter filtro */
}

.amom-logo {
    height: 60px;
    width: auto;
    opacity: 1;
    transition: opacity 0.3s, filter 0.3s;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    /* Aplicar cor do site dinamicamente na logo SVG */
    /* Usar variável CSS --cor-site-logo definida inline no elemento */
    filter: brightness(0) saturate(100%);
}

/* Aplicar cor específica baseada na variável CSS usando JavaScript ou CSS customizado */
/* Por enquanto, vamos usar um filtro que funciona com a cor padrão */
/* A cor será aplicada via JavaScript ou CSS inline */

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-bottom p {
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        gap: 1rem;
    }

    nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cart-modal {
        padding: 1rem;
    }

    .cart-modal-content {
        max-height: 95vh;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item-image {
        width: 100%;
        height: 200px;
    }

    .cart-item-price {
        width: 100%;
        text-align: left;
        margin-top: 0.5rem;
    }
}

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

    .logo {
        font-size: 1rem;
    }

    .categories-container {
        gap: 0.5rem;
    }

    .categories-container {
        gap: 0.5rem;
        padding: 0.5rem 0.75rem;
    }

    .category-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
        white-space: nowrap;
    }
}

