/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B6F47;
    --primary-dark: #6B5437;
    --primary-light: #A68A5E;
    --secondary: #4A3D2A;
    --accent: #D4C4A8;
    --light: #F5F0E8;
    --white: #FFFFFF;
    --text: #2C2416;
    --text-light: #6B5F4F;
    --border: #D9CDB8;
    --shadow: rgba(75, 61, 42, 0.15);
    --shadow-hover: rgba(139, 111, 71, 0.25);
    --menu-bg: #503311;
    
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Principal */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--menu-bg);
    z-index: 1000;
    transition: var(--transition);
}

.header.hide {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-image {
    height: 110px;
    width: auto;
    cursor: pointer;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Search Box Principal */
.search-box-main {
    flex: 1;
    max-width: 600px;
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    padding: 12px 20px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.search-box-main:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: var(--text);
    font-family: var(--font-secondary);
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: var(--transition);
    flex-shrink: 0;
}

.search-btn:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.icon-btn {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
}

.whatsapp-btn-header:hover {
    background: #1faa52;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    display: block;
}

/* Submenu */
.submenu {
    background: var(--white);
    border-top: 1px solid var(--border);
    transition: var(--transition);
}

.submenu.hide {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

.submenu-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    list-style: none;
    padding: 15px 0;
}

.submenu-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
    padding: 5px 0;
}

.submenu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.submenu-link:hover {
    color: var(--primary);
}

.submenu-link:hover::after {
    width: 100%;
}

/* Header Scrolled (Compacto) */
.header-scrolled {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background: var(--menu-bg);
    z-index: 1001;
    transition: var(--transition);
    box-shadow: 0 2px 20px var(--shadow);
}

.header-scrolled.show {
    top: 0;
}

.header-scrolled-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.header-scrolled-content .mobile-menu-btn {
    display: flex;
}

.logo-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo-image-scrolled {
    height: 85px;
    width: auto;
    cursor: pointer;
    transition: var(--transition);
}

.logo-image-scrolled:hover {
    transform: scale(1.05);
}

.header-actions-scrolled {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-toggle {
    color: var(--white);
}

/* Search Dropdown */
.search-dropdown {
    background: var(--white);
    border-top: none;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.search-dropdown.show {
    max-height: 100px;
    padding: 15px 0;
}

.search-box-dropdown {
    display: flex;
    align-items: center;
    background: var(--light);
    border-radius: 50px;
    padding: 12px 20px;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.search-box-dropdown:focus-within {
    border-color: var(--primary);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: var(--transition);
    box-shadow: 5px 0 30px var(--shadow);
}

.mobile-menu-overlay.active {
    left: 0;
}

.mobile-menu-content {
    padding: 30px 20px;
}

.close-mobile-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--text);
    cursor: pointer;
    line-height: 1;
}

.mobile-nav {
    margin-top: 50px;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-link {
    display: block;
    padding: 15px 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--primary);
    padding-left: 20px;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #1faa52;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px var(--shadow);
    z-index: 2001;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid var(--border);
}

.cart-header h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    color: var(--secondary);
}

.close-cart {
    background: transparent;
    border: none;
    font-size: 36px;
    color: var(--text);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--primary);
}

.cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    color: var(--text-light);
    padding: 40px 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid var(--border);
    animation: slideInRight 0.3s ease;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: #e74c3c;
}

.cart-footer {
    padding: 20px 30px;
    border-top: none;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 160px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../imagens/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: fadeInOut 10s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../imagens/joias.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: fadeInOut 10s ease-in-out infinite reverse;
    opacity: 0;
}

/* Overlay suave sobre as imagens */
.hero-background::before,
.hero-background::after {
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 196, 168, 0.5) 0%, rgba(245, 240, 232, 0.6) 100%);
    z-index: 1;
}

@keyframes fadeInOut {
    0% {
        opacity: 1;
    }
    45% {
        opacity: 1;
    }
    55% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 60px 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 28px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 56px;
    line-height: 1.2;
    color: var(--secondary);
    margin-bottom: 30px;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-description {
    font-size: 18px;
    color: #000;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.3;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 25px;
}

.about-signature {
    font-family: var(--font-primary);
    font-size: 24px;
    color: var(--primary);
    margin-top: 40px;
    font-weight: 500;
}

/* Benefits */
.benefits {
    padding: 100px 0;
    background: var(--light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 15px;
}

/* Products */
.products {
    padding: 100px 0;
    background: var(--white);
}

.products-alt {
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 15px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--light);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.product-name {
    font-family: var(--font-primary);
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 500;
}

.product-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-add-cart,
.btn-whatsapp {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-add-cart {
    background: var(--primary);
    color: var(--white);
}

.btn-add-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1faa52;
    transform: translateY(-2px);
}

/* Newsletter */
.newsletter {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter .section-title {
    color: var(--white);
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.newsletter-form input,
.newsletter-form select {
    width: 100%;
    padding: 18px 25px;
    font-size: 16px;
    border: 2px solid transparent;
    border-radius: 50px;
    background: var(--white);
    color: var(--text);
    transition: var(--transition);
}

.newsletter-form input:focus,
.newsletter-form select:focus {
    outline: none;
    border-color: var(--secondary);
}

.newsletter-form .btn-primary {
    width: 100%;
    background: var(--secondary);
    border: none;
}

.newsletter-form .btn-primary:hover {
    background: var(--text);
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: var(--primary);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* Modal de Produto */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.product-modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: fadeInUp 0.4s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 2px 10px var(--shadow);
}

.close-modal:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.product-modal-gallery {
    position: relative;
    width: 100%;
}

.product-modal-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    max-height: 500px;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 2px 15px var(--shadow);
}

.gallery-arrow:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-arrow.hidden {
    display: none;
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-indicator.active {
    background: var(--primary);
    transform: scale(1.3);
}

.gallery-indicator:hover {
    background: var(--primary-light);
}

.product-modal-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-modal-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 600;
}

.product-modal-name {
    font-family: var(--font-primary);
    font-size: 32px;
    color: var(--secondary);
    font-weight: 500;
    line-height: 1.2;
}

.product-modal-description {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
}

.product-modal-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0;
}

.product-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light);
    border-radius: 50px;
    padding: 5px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.product-modal-actions .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Cart Item Quantity */
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.cart-quantity-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-quantity-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.cart-quantity-display {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    min-width: 30px;
    text-align: center;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .product-modal-body {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }
    
    .product-modal-name {
        font-size: 24px;
    }
    
    .product-modal-price {
        font-size: 28px;
    }
    
            .logo-image {
                height: 95px;
            }
            .logo-image-scrolled {
                height: 75px;
            }
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .search-box-main {
        max-width: 400px;
    }
    
    .submenu-list {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header {
        display: none;
    }
    
    .header-scrolled {
        top: 0;
    }
    
    .header-scrolled.show {
        top: 0;
    }
    
    .logo-image {
        height: 110px;
    }
    
    .logo-image-scrolled {
        height: 80px;
    }
    
    .hero {
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .product-actions {
        width: 100%;
    }
    
    .btn-add-cart,
    .btn-whatsapp {
        flex: 1;
        justify-content: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}