:root {
    --primary-gold: #C9A961;
    --bg-beige: #F5F1E8;
    --dark-text: #2C2C2C;
    --white: #FFFFFF;
    --dark-bg: #1A1A1A;
    --light-gray: #F8F8F8;
    --border-color: #E5E5E5;
    --success-green: #25D366;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

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

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

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

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

.navbar {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--dark-text);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

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

.cart-icon {
    position: relative;
    font-size: 20px;
    color: var(--dark-text);
    transition: var(--transition);
}

.cart-icon:hover {
    color: var(--primary-gold);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp {
    background: var(--primary-gold);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

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

.btn-primary {
    background: var(--primary-gold);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #B89651;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    padding: 12px 28px;
    border: 2px solid var(--primary-gold);
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--white);
}

.btn-add-cart {
    background: var(--dark-text);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: var(--primary-gold);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.hero {
    height: 600px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 300;
}

.about-section,
.gallery-section,
.featured-section,
.testimonials-section,
.contact-section {
    padding: 80px 0;
}

.about-section {
    background: var(--bg-beige);
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

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

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-gold);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.value-card p {
    color: #666;
    font-size: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

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

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gold);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 20px;
    margin-bottom: 8px;
}

.product-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.testimonials-section {
    background: var(--bg-beige);
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.stars {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #999;
    font-size: 14px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-method i {
    font-size: 24px;
    color: var(--primary-gold);
    width: 40px;
}

.contact-method strong {
    display: block;
    margin-bottom: 3px;
}

.contact-method p {
    margin: 0;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.footer {
    background: var(--dark-bg);
    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-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    color: #999;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #999;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

.shop-header {
    background: var(--bg-beige);
    padding: 60px 0;
    text-align: center;
}

.shop-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.shop-header p {
    font-size: 18px;
    color: #666;
}

.filters-section {
    padding: 30px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

.shop-section {
    padding: 60px 0;
}

.cart-section {
    padding: 60px 0;
    min-height: 60vh;
}

.page-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
}

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

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 18px;
    color: var(--primary-gold);
    font-weight: 600;
}

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

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 5px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
}

.quantity-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.remove-btn {
    color: #999;
    font-size: 20px;
    transition: var(--transition);
}

.remove-btn:hover {
    color: #e74c3c;
}

.cart-summary {
    background: var(--bg-beige);
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 20px 0;
}

.summary-total {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-gold);
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart i {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-cart h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.empty-cart p {
    color: #666;
    margin-bottom: 30px;
}

.checkout-section {
    padding: 60px 0;
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.form-section {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
}

.form-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h2 i {
    color: var(--primary-gold);
}

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

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-text);
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-card {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.payment-option input[type="radio"]:checked + .payment-card {
    border-color: var(--primary-gold);
    background: var(--bg-beige);
}

.payment-card i {
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.payment-card span {
    display: block;
    font-weight: 500;
}

.checkout-summary {
    background: var(--bg-beige);
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.checkout-items {
    margin-bottom: 20px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

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

.checkout-item-name {
    font-weight: 500;
}

.checkout-item-quantity {
    color: #666;
    font-size: 14px;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: #666;
    font-size: 14px;
}

.secure-checkout i {
    color: var(--success-green);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .contact-grid,
    .cart-container,
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-subtitle {
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero .btn-primary {
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.section-title {
  animation: fadeInUp 0.8s ease-out;
}

.value-card {
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: backwards;
}

.value-card:nth-child(1) {
  animation-delay: 0.1s;
}

.value-card:nth-child(2) {
  animation-delay: 0.2s;
}

.value-card:nth-child(3) {
  animation-delay: 0.3s;
}

.product-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: backwards;
}

.products-grid .product-card:nth-child(1) { animation-delay: 0.1s; }
.products-grid .product-card:nth-child(2) { animation-delay: 0.15s; }
.products-grid .product-card:nth-child(3) { animation-delay: 0.2s; }
.products-grid .product-card:nth-child(4) { animation-delay: 0.25s; }
.products-grid .product-card:nth-child(5) { animation-delay: 0.3s; }
.products-grid .product-card:nth-child(6) { animation-delay: 0.35s; }
.products-grid .product-card:nth-child(7) { animation-delay: 0.4s; }
.products-grid .product-card:nth-child(8) { animation-delay: 0.45s; }

.gallery-item {
  animation: scaleIn 0.6s ease-out;
  animation-fill-mode: backwards;
}

.gallery-grid .gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-grid .gallery-item:nth-child(2) { animation-delay: 0.15s; }
.gallery-grid .gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-grid .gallery-item:nth-child(4) { animation-delay: 0.25s; }
.gallery-grid .gallery-item:nth-child(5) { animation-delay: 0.3s; }
.gallery-grid .gallery-item:nth-child(6) { animation-delay: 0.35s; }

.testimonial-card {
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: backwards;
}

.testimonials-grid .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonials-grid .testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.cart-count {
  animation: pulse 0.5s ease-out;
}

.btn-primary,
.btn-secondary,
.btn-add-cart,
.btn-whatsapp {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary:hover,
.btn-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-add-cart:hover {
  transform: scale(1.02);
}

.product-card {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover {
  transform: translateY(-8px);
}

.filter-btn {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.filter-btn:hover {
  transform: scale(1.05);
}

.filter-btn:active {
  transform: scale(0.95);
}

.contact-form input:focus,
.contact-form textarea:focus,
.form-group input:focus {
  transform: scale(1.01);
  transition: all 0.3s ease;
}

.cart-item {
  animation: slideDown 0.4s ease-out;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html {
  scroll-behavior: smooth;
}

img {
  animation: fadeIn 0.5s ease-out;
}

.gallery-item {
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

@keyframes zoomIn {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

.hero {
  animation: zoomIn 1.5s ease-out;
}

.social-links a {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-links a:hover {
  transform: translateY(-4px) scale(1.1);
}

.quantity-btn {
  transition: all 0.2s ease;
}

.quantity-btn:active {
  transform: scale(0.9);
}

.payment-card {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.payment-option input[type="radio"]:checked + .payment-card {
  transform: scale(1.02);
}

.cart-items .cart-item:nth-child(1) { animation-delay: 0.05s; }
.cart-items .cart-item:nth-child(2) { animation-delay: 0.1s; }
.cart-items .cart-item:nth-child(3) { animation-delay: 0.15s; }
.cart-items .cart-item:nth-child(4) { animation-delay: 0.2s; }

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes zoomIn {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

.hero {
  animation: zoomIn 1.5s ease-out;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-subtitle {
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero .btn-primary {
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.section-title {
  animation: fadeInUp 0.8s ease-out;
}

.value-card {
  animation: fadeInUp 0.8s ease-out backwards;
}
.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }

.product-card {
  animation: fadeInUp 0.6s ease-out backwards;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.products-grid .product-card:nth-child(1) { animation-delay: 0.1s; }
.products-grid .product-card:nth-child(2) { animation-delay: 0.15s; }
.products-grid .product-card:nth-child(3) { animation-delay: 0.2s; }
.products-grid .product-card:nth-child(4) { animation-delay: 0.25s; }
.products-grid .product-card:nth-child(5) { animation-delay: 0.3s; }
.products-grid .product-card:nth-child(6) { animation-delay: 0.35s; }
.products-grid .product-card:nth-child(7) { animation-delay: 0.4s; }
.products-grid .product-card:nth-child(8) { animation-delay: 0.45s; }

.product-card:hover {
  transform: translateY(-8px);
}

.gallery-item {
  animation: scaleIn 0.6s ease-out backwards;
}
.gallery-grid .gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-grid .gallery-item:nth-child(2) { animation-delay: 0.15s; }
.gallery-grid .gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-grid .gallery-item:nth-child(4) { animation-delay: 0.25s; }
.gallery-grid .gallery-item:nth-child(5) { animation-delay: 0.3s; }
.gallery-grid .gallery-item:nth-child(6) { animation-delay: 0.35s; }

.testimonial-card {
  animation: fadeInUp 0.8s ease-out backwards;
}
.testimonials-grid .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonials-grid .testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.cart-count {
  animation: pulse 0.5s ease-out;
}

.btn-primary,
.btn-secondary,
.btn-add-cart,
.btn-whatsapp {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary:hover,
.btn-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-add-cart:hover {
  transform: scale(1.02);
}

.filter-btn {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.filter-btn:hover {
  transform: scale(1.05);
}

.filter-btn:active {
  transform: scale(0.95);
}

.contact-form input:focus,
.contact-form textarea:focus,
.form-group input:focus {
  transform: scale(1.01);
  transition: all 0.3s ease;
}

.social-links a {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-links a:hover {
  transform: translateY(-4px) scale(1.1);
}

html {
  scroll-behavior: smooth;
}

img {
  animation: fadeIn 0.5s ease-out;
}

.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;

  width: 58px;
  height: 58px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: inherit;
  background-color: var(--btn-wa-bg, #c9a75a);
  color: #fff;

  font-size: 26px;
  text-decoration: none;

  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;

  animation: wa-breathe 1.8s ease-in-out infinite;
}
  animation: wa-breathe 1.8s ease-in-out infinite;
}

.wa-float::after{
  content:"";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, .35);
  opacity: .0;
  transform: scale(.9);
  animation: wa-ring 1.8s ease-in-out infinite;
}

.wa-float:hover{
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 38px rgba(0,0,0,.30);
  filter: brightness(1.03);
  animation-play-state: paused;
}

.wa-float:hover::after{
  animation-play-state: paused;
}

.wa-float:active{
  transform: translateY(0) scale(.98);
}

.btn-whatsapp{
  --btn-wa-bg: currentColor;
}

@media (prefers-reduced-motion: reduce){
  .wa-float,
  .wa-float::after{
    animation: none !important;
  }
}

@keyframes wa-breathe{
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes wa-ring{
  0%   { opacity: .0; transform: scale(.92); }
  35%  { opacity: .55; }
  70%  { opacity: .0; transform: scale(1.15); }
  100% { opacity: 0; transform: scale(1.15); }
}

.footer-heart,
.footer-gesarg{
  color: #c9a75a;
  font-weight: 600;
}

.footer-gesarg{
  text-decoration: none;
  transition: opacity .2s ease;
}

.footer-gesarg:hover{
  opacity: .7;
}

.cart-summary .btn-primary,
.cart-summary .btn-secondary{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 14px 18px;
  border-radius: 999px;
  line-height: 1;
  min-height: 48px;
}

.nav-toggle{
  display: none;
}

.burger{
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--white);
  cursor: pointer;

  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}

.burger span{
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--dark-text);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.burger span:nth-child(1){ transform: translateY(-6px); }
.burger span:nth-child(2){ transform: translateY(0px); }
.burger span:nth-child(3){ transform: translateY(6px); }

@media (max-width: 768px){

  .btn-whatsapp{ display: none; }

  .burger{ display: inline-flex; }

  .nav-links{
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
    flex-direction: column;
    z-index: 1200;
  }

  .nav-links li{ width: 100%; }
  .nav-links a{
    display: flex;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
  }
  .nav-links a:hover{
    background: var(--bg-beige);
  }

  .nav-toggle:checked ~ .nav-links{
    display: flex;
    animation: slideDown .22s ease-out;
  }

  .nav-toggle:checked + .burger span:nth-child(1){
    transform: rotate(45deg);
  }
  .nav-toggle:checked + .burger span:nth-child(2){
    opacity: 0;
  }
  .nav-toggle:checked + .burger span:nth-child(3){
    transform: rotate(-45deg);
  }
}

@media (max-width: 768px){

  .featured-carousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    gap: 16px;

    overflow-x: auto;
    overflow-y: visible;
    padding: 6px 20px 18px;
    margin: 0 -20px;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
  }

  .featured-carousel::-webkit-scrollbar{
    display: none;
  }

  .featured-carousel .product-card{
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .featured-carousel .product-card{
    width: 100%;
  }
}

.featured-carousel.no-snap{
  scroll-snap-type: none !important;
}

.product-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.product-actions .btn-add-cart,
.product-actions .btn-view{
  width: 100%;
}

.product-card .btn-view{
  margin-top: 0 !important;
}

.navbar .logo{
  display:flex;
  align-items:center;
  gap:12px;
  line-height:0;
}

.navbar .logo img{
  display:block;
  height:54px;
  width:auto;
  max-width:280px;
  object-fit:contain;
}

@media (max-width: 980px){
  .navbar .logo img{
    height:46px;
    max-width:220px;
  }
}

@media (max-width: 520px){
  .navbar .logo img{
    height:40px;
    max-width:170px;
  }
}

.price-stack{
  display:flex;
  flex-direction:row;
  align-items:baseline;
  gap:10px;
}

.price-stack .price-main{
  margin:0;
}

.price-stack .price-real{
  margin:0;
  font-size:.95em;
  line-height:1;
  white-space:nowrap;
}

.gallery-section {
  padding: 70px 0;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.gallery-item{
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.gallery-item img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media (max-width: 980px){
  .gallery-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-item img{ height: 200px; }
}

@media (max-width: 560px){
  .gallery-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .gallery-item img{ height: 160px; }
}
