/* ====== CSS VARIABLES & THEME ====== */
:root {
      --background: #0a0a0a;
    --foreground: #f5f5f5;
    --card: #141414;
    --card-foreground: #f5f5f5;
    --primary: #f5f5f5;
    --primary-foreground: #0a0a0a;
    --secondary: #1a1a1a;
    --secondary-foreground: #f5f5f5;
    --muted: #1a1a1a;
    --muted-foreground: #888888;
    --accent: #C6A15B;
    --accent-foreground: #0a0a0a;
    --border: rgba(255, 255, 255, 0.08);
    --gold: #C6A15B;
    --surface: #141414;
    --surface-2: #1e1e1e;
}
}

:root.dark {
    --background: #0a0a0a;
    --foreground: #f5f5f5;
    --card: #141414;
    --card-foreground: #f5f5f5;
    --primary: #f5f5f5;
    --primary-foreground: #0a0a0a;
    --secondary: #1a1a1a;
    --secondary-foreground: #f5f5f5;
    --muted: #1a1a1a;
    --muted-foreground: #888888;
    --accent: #C6A15B;
    --accent-foreground: #0a0a0a;
    --border: rgba(255, 255, 255, 0.08);
    --gold: #C6A15B;
    --surface: #141414;
    --surface-2: #1e1e1e;
}

/* ====== GLOBAL STYLES ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline-color: rgba(198, 161, 91, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    transition: background-color 0.4s ease, color 0.4s ease;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 400;
}

/* ====== CUSTOM SCROLLBAR ====== */
::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

/* ====== ANIMATIONS ====== */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-18px) rotate(1deg); }
    66% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

.text-gold-shimmer {
    background: linear-gradient(90deg, #C6A15B 0%, #e8c97a 40%, #C6A15B 60%, #a07a35 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* ====== REVEAL ANIMATIONS ====== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { animation: fadeUp 0.8s ease forwards 0.2s; }
.reveal-delay-2 { animation: fadeUp 0.8s ease forwards 0.4s; }
.reveal-delay-3 { animation: fadeUp 0.8s ease forwards 0.6s; }
.reveal-delay-4 { animation: fadeUp 0.8s ease forwards 0.8s; }
.reveal-delay-5 { animation: fadeUp 0.8s ease forwards 1s; }

.arrow-bounce {
    width: 20px;
    height: 20px;
    color: var(--gold);
    animation: bounce 2s infinite;
}

/* ====== NAVBAR ====== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

:root.dark .navbar {
    background-color: rgba(10, 10, 10, 0.95);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--foreground);
    font-family: 'Playfair Display', serif;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--muted-foreground);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--gold);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle, .cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    padding: 0.5rem;
}

.theme-toggle:hover, .cart-btn:hover {
    transform: scale(1.1);
}

.sun-icon { display: block; }
.moon-icon { display: none; }

:root.dark .sun-icon { display: none; }
:root.dark .moon-icon { display: block; }

.cart-btn {
    position: relative;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ====== HERO SECTION ====== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    background: var(--background);
    padding: 5rem 4rem 5rem 3rem;
    gap: 4rem;
}

/* Left column: staggered images */
.hero-images-col {
    flex: 0 0 52%;
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    min-height: 560px;
}

.hero-img-wrap {
    flex: 1;
    overflow: hidden;
    border-radius: 2px;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-img-wrap:hover img {
    transform: scale(1.04);
}

.hero-img-1 { height: 380px; align-self: flex-end; }
.hero-img-2 { height: 450px; align-self: flex-end; margin-bottom: 30px; }
.hero-img-3 { height: 500px; align-self: flex-start; }
.hero-img-4 { height: 420px; align-self: flex-end; margin-bottom: 10px; }

/* Right column: text */
.hero-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    font-weight: 400;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--muted-foreground);
    max-width: 460px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeUp 1s ease forwards 1.2s both;
}

.scroll-indicator span {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--muted-foreground);
}

/* ====== CATEGORIES SECTION ====== */
.categories-section {
    padding: 5rem 1.5rem;
    background: var(--surface);
}

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

.categories-circles {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.category-circle {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
    border: 2px solid var(--border);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.category-circle:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
}

.category-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.category-circle:hover img {
    transform: scale(1.1);
}

.circle-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.35s ease;
    padding: 1rem;
    text-align: center;
}

.category-circle:hover .circle-overlay {
    opacity: 1;
}

.circle-name {
    color: #fff;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.circle-link {
    color: var(--gold);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

/* ====== CATEGORY FILTER ====== */
.category-filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0 2.5rem;
}

.filter-btn {
    padding: 0.55rem 1.4rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

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

/* ====== STORY SECTION ====== */
.story-section {
    padding: 6rem 1.5rem;
    background: var(--background);
}

.story-container {
    max-width: 900px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted-foreground);
    margin: 1.5rem 0;
}

/* ====== SECTION TITLE ====== */
.section-title {
    font-size: clamp(2rem, 8vw, 4rem);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.section-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted-foreground);
    text-align: center;
    margin-bottom: 3rem;
}
/* ====== PRODUCTS mas vendidos  ====== */
.promo-parallax{
    position: relative;
    height: 400px;
    background-image: url("images/velvet-oud.jpg"); /* tu imagen */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.promo-overlay{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.6);
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.promo-content h2{
    color:white;
    font-size:40px;
    margin-bottom:10px;
}

.promo-content p{
    color:#ddd;
    font-size:18px;
}
/* ====== CSS de los productos  ====== */

.best-sellers{
padding:80px 10%;
background:#f8f8f8;
text-align:center;
}

.section-title{
font-size:32px;
margin-bottom:40px;
}

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

.product-card{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:0.3s;
}

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

.product-card img{
width:100%;
border-radius:8px;
}

.product-card button{
margin-top:10px;
padding:10px 20px;
background:black;
color:white;
border:none;
cursor:pointer;
}

/* ====== PRODUCTS SECTION ====== */
.products-section {
    padding: 6rem 1.5rem;
    background: var(--background);
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    animation: scaleIn 0.6s ease forwards;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(198, 161, 91, 0.15);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: var(--surface-2);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-price {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.product-desc {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.btn-add-cart {
    width: 100%;
    padding: 0.75rem;
    background: var(--gold);
    color: var(--background);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-add-cart:hover {
    background: var(--gold-light);
    transform: scale(1.02);
}

/* ====== MODAL ====== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeUp 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--background);
    padding: 2rem;
    border-radius: 0;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: scaleIn 0.3s ease;
}

.modal-cart {
    max-width: 700px;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--foreground);
}

.modal-body {
    display: flex;
    gap: 2rem;
}

.modal-image {
    flex: 0 0 40%;
    height: 300px;
    object-fit: cover;
    background: var(--surface-2);
}

.modal-info {
    flex: 1;
}

.modal-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.modal-price {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.modal-notes {
    margin: 1.5rem 0;
}

.notes-category {
    margin: 1rem 0;
}

.notes-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.notes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.note {
    display: inline-block;
    background: var(--surface);
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 0;
    color: var(--card-foreground);
}

.modal-story {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.quantity-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--surface-2);
    border-color: var(--gold);
}

.quantity-display {
    min-width: 40px;
    text-align: center;
}

.btn-modal-add {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--background);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-top: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-modal-add:hover {
    background: var(--gold-light);
    transform: scale(1.02);
}

/* ====== CART ITEMS ====== */
.cart-items {
    margin: 2rem 0;
    max-height: 400px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.cart-item-image {
    width: 80px;
    height: 100px;
    object-fit: cover;
    background: var(--surface-2);
    flex-shrink: 0;
}

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

.cart-item-name {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-input {
    width: 50px;
    padding: 0.4rem;
    border: 1px solid var(--border);
    background: var(--background);
    color: var(--foreground);
    text-align: center;
}

.btn-remove {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
    transition: color 0.3s ease;
}

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

.cart-summary {
    border-top: 2px solid var(--border);
    padding-top: 1.5rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cart-empty {
    text-align: center;
    padding: 2rem;
    color: var(--muted-foreground);
}

/* ====== CONTACT SECTION ====== */
.contact-section {
    padding: 6rem 1.5rem;
    background: var(--surface);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    background: var(--background);
    color: var(--foreground);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.1);
}

.form-input::placeholder {
    color: var(--muted-foreground);
}

/* ====== BUTTONS ====== */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 500;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

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

/* ====== FOOTER ====== */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 3rem 1.5rem 1.5rem;
}

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

.footer-section h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.footer-section a {
    color: var(--primary-foreground);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-section a:hover {
    color: var(--gold);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ====== NOISE OVERLAY ====== */
.noise-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.4;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1024px) {
    .hero-section {
        padding: 4rem 2rem;
        gap: 2.5rem;
    }

    .hero-images-col {
        flex: 0 0 48%;
        min-height: 440px;
    }

    .hero-img-1 { height: 300px; }
    .hero-img-2 { height: 360px; }
    .hero-img-3 { height: 400px; }
    .hero-img-4 { height: 330px; }

    .category-circle {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--background);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }

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

    .navbar-menu li {
        border-bottom: 1px solid var(--border);
    }

    .navbar-menu a {
        display: block;
        padding: 1rem 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(12px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-12px);
    }

    /* Hero stacks vertically on mobile */
    .hero-section {
        flex-direction: column;
        padding: 4rem 1.5rem 5rem;
        gap: 2.5rem;
        min-height: unset;
    }

    .hero-images-col {
        flex: unset;
        width: 100%;
        min-height: 260px;
        gap: 0.5rem;
    }

    .hero-img-1 { height: 200px; }
    .hero-img-2 { height: 240px; margin-bottom: 15px; }
    .hero-img-3 { height: 260px; }
    .hero-img-4 { height: 220px; margin-bottom: 5px; }

    .hero-text-col {
        text-align: center;
        align-items: center;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .categories-circles {
        gap: 1.5rem;
    }

    .category-circle {
        width: 130px;
        height: 130px;
    }

    .modal-body {
        flex-direction: column;
    }

    .modal-image {
        flex: 0 0 100%;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.75rem, 6vw, 3rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .navbar-container {
        padding: 0 1rem;
        height: 60px;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .navbar-right {
        gap: 1rem;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }

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

    .category-circle {
        width: 110px;
        height: 110px;
    }

    .categories-circles {
        gap: 1rem;
    }
}
