:root {
    --green-dark: #042f26;
    --green-mid: #0b6a55;
    --green-light: #0e8f70;
    --white: #ffffff;
    --muted: #eef6f3;
    --accent: rgba(4, 47, 38, 0.06);
    --radius: 16px;
    --shadow: 0 14px 50px rgba(4, 47, 38, 0.12);
    --maxw: 1200px;
    --transition: 340ms cubic-bezier(.2, .9, .25, 1);
    --nav-height: 76px;
    --discount-green: #059669;
    --discount-bg: rgba(5, 150, 105, 0.08);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(180deg, var(--muted), #ffffff);
    color: var(--green-dark);
    line-height: 1.45;
    font-size: 15px;
}

.container,
.wrap {
    max-width: var(--maxw);
    margin: 18px auto;
    padding: 18px;
}

.navbar-wrap {
    position: sticky;
    top: 12px;
    z-index: 60;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(4, 47, 38, 0.02), #ffffff);
    box-shadow: var(--shadow);
    height: var(--nav-height);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    display: grid;
    place-items: center;
    color: var(--white);
    font-family: 'Playfair Display';
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(4, 47, 38, 0.18);
}

.brand h1 {
    margin: 0;
    font-size: 18px;
    color: var(--green-dark);
}

.brand p {
    margin: 0;
    font-size: 12px;
    color: #1f5146;
}

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

.nav-link {
    position: relative;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

.nav-link:hover {
    background: var(--accent);
    transform: translateY(-4px);
}

.nav-cta {
    background: var(--green-dark);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 800;
}

.nav-reserva {
    background: var(--green-dark);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 800;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    background: transparent;
    border: 0;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--green-dark);
}

.mobile-toggle {
    display: none;
}

.reserva-indicator {
    position: relative;
}

.reserva-count {
    background: var(--green-dark);
    color: var(--white);
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 999px;
    margin-left: 6px;
    font-size: 12px;
}

.offcanvas {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 90;
    animation: fadeIn 0.3s ease;
}

.offcanvas-content {
    width: 320px;
    height: 100%;
    background: var(--white);
    padding: 24px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 0 40px rgba(4, 47, 38, 0.1);
}

.offcanvas.show .offcanvas-content {
    transform: translateX(0);
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--accent);
}

.offcanvas-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--green-dark);
    margin: 0;
}

.offcanvas-close {
    background: var(--accent);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--green-dark);
    transition: var(--transition);
}

.offcanvas-close:hover {
    background: rgba(4, 47, 38, 0.1);
    transform: scale(1.1);
}

.offcanvas-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offcanvas-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
}

.offcanvas-link:hover {
    background: var(--accent);
    border-color: rgba(4, 47, 38, 0.1);
    transform: translateX(4px);
}

.offcanvas-link.active {
    background: var(--green-dark);
    color: var(--white);
}

.offcanvas-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--accent);
}

footer {
    margin-top: 28px;
    border-radius: 12px;
    padding: 28px;
    background: linear-gradient(180deg, var(--green-dark), var(--green-mid));
    color: var(--white);
    box-shadow: 0 30px 80px rgba(4, 47, 38, 0.18);
}

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

.footer a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
}

.small {
    font-size: 13px;
}

.hero {
    margin-top: 18px;
    border-radius: 20px;
    padding: 28px;
    background: linear-gradient(180deg, rgba(4, 47, 38, 0.03), rgba(4, 47, 38, 0.01));
    display: block;
}

.hero .eyebrow {
    color: var(--green-dark);
    font-weight: 800;
    letter-spacing: 0.6px;
}

.hero h1,
.hero h2 {
    font-family: 'Playfair Display';
    font-size: 40px;
    margin: 10px 0;
    color: var(--green-dark);
}

.hero p {
    margin: 0 0 18px;
    color: #27493f;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.collections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 22px;
}

.collection {
    background: linear-gradient(180deg, #f7fff8, #ffffff);
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 10px 32px rgba(4, 47, 38, 0.04);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(4, 47, 38, 0.04);
    text-decoration: none;
    color: inherit;
}

.collection:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(4, 47, 38, 0.08);
}

.collection h4 {
    color: var(--green-dark);
    margin: 0 0 8px;
}

.collection p {
    margin: 0;
    color: #225241;
    font-size: 14px;
}

.decants-section {
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display';
    font-size: 28px;
    color: var(--green-dark);
    margin: 0;
    position: relative;
    padding-left: 16px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(to bottom, var(--green-mid), var(--green-light));
    border-radius: 2px;
}

.discount-ribbon {
    background: linear-gradient(90deg, var(--green-dark), var(--green-mid));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(4, 47, 38, 0.15);
}

.discount-banner {
    background: linear-gradient(90deg, rgba(4, 47, 38, 0.08), rgba(11, 106, 85, 0.08));
    border: 1px solid rgba(4, 47, 38, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin: 24px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.discount-banner::before {
    content: '✨';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 20px;
    animation: spin 4s linear infinite;
}

.discount-banner::after {
    content: '✨';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 20px;
    animation: spin 4s linear infinite reverse;
}

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

.banner-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--green-dark);
    margin: 0;
}

.banner-subtext {
    font-size: 13px;
    color: #225241;
    margin: 4px 0 0;
    opacity: 0.8;
}

.decants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.decant-card {
    background: linear-gradient(180deg, var(--white), #fbfffb);
    border-radius: 14px;
    border: 1px solid rgba(4, 47, 38, 0.08);
    box-shadow: 0 6px 20px rgba(4, 47, 38, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.decant-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(4, 47, 38, 0.12);
    border-color: var(--green-mid);
}

.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 12px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(4, 47, 38, 0.2);
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 70px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.decant-image {
    height: 15rem;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.decant-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green-dark), var(--green-mid));
}

.decant-image img {
    max-width: 180px;
    object-fit: contain;
    border-radius: 6px;
}

.decant-content {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.decant-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--green-dark);
    margin: 0 0 6px;
    line-height: 1.3;
    min-height: 38px;
}

.decant-ml {
    display: inline-block;
    background: var(--accent);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 8px;
    align-self: flex-start;
}

.decant-notes {
    color: #225241;
    font-size: 12px;
    margin: 4px 0;
    line-height: 1.4;
    flex: 1;
    opacity: 0.9;
}

.price-container {
    margin: 8px 0;
    padding: 8px;
    background: var(--discount-bg);
    border-radius: 8px;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.original-price {
    color: #666;
    font-size: 12px;
    text-decoration: line-through;
    display: block;
    margin-bottom: 2px;
}

.discounted-price {
    font-size: 18px;
    font-weight: 900;
    color: var(--green-dark);
    display: block;
    line-height: 1.2;
}

.savings {
    font-size: 11px;
    color: var(--discount-green);
    font-weight: 700;
    margin-top: 2px;
}

.btn {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: var(--white);
    border: none;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(4, 47, 38, 0.2);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.card {
    background: linear-gradient(180deg, var(--white), #fbfffb);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(4, 47, 38, 0.03);
    box-shadow: 0 8px 28px rgba(4, 47, 38, 0.04);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

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

.thumb {
    height: 200px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.thumbb {
    height: 200px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
}

.thumbb img {
    width: 100%;
    height: 700px;
    object-fit: contain;
    border-radius: 8px;
}

.meta {
    margin-top: 10px;
}

.meta h3 {
    margin: 0;
    color: var(--green-dark);
}

.meta p {
    margin: 6px 0 0;
    color: #225241;
    font-size: 14px;
}

.price {
    font-weight: 800;
    color: var(--green-dark);
    margin-top: 8px;
}

.backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 15, 12, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 80;
}

.modal {
    background: var(--white);
    width: min(860px, 94%);
    border-radius: 12px;
    padding: 24px;
    max-height: 90vh;
    overflow-y: auto;
}
.modal img {
    width: 250px;
}

.close {
    background: transparent;
    border: 0;
    font-size: 18px;
    cursor: pointer;
    color: var(--green-dark);
}

.btn-reservar {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 16px;
}

.btn-reservar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(4, 47, 38, 0.3);
}

.btn-reservar-small {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    margin-top: 8px;
}

.btn-reservar-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(4, 47, 38, 0.2);
}

.testimonials {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.testimonial {
    background: linear-gradient(180deg, #ffffff, #f7fff8);
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(4, 47, 38, 0.04);
}

.decant-modal-content {
    max-height: 80vh;
    overflow-y: auto;
}

.decant-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 16px 0;
}

.price-option {
    background: var(--accent);
    padding: 16px;
    border-radius: 10px;
    border: 1px solid rgba(4, 47, 38, 0.1);
    text-align: center;
}

.price-option h4 {
    margin: 0 0 8px;
    color: var(--green-dark);
    font-size: 14px;
}

.price-option .price {
    font-size: 20px;
    font-weight: 900;
    color: var(--green-dark);
    margin: 8px 0;
}

.price-option .original {
    color: #666;
    font-size: 12px;
    text-decoration: line-through;
}

.controls {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
    flex-wrap: wrap;
}

.select,
.search-input {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(4, 47, 38, 0.06);
    background: var(--white);
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
}

.search-input {
    flex: 1;
    min-width: 200px;
    cursor: text;
}

.search-input:focus {
    outline: none;
    border-color: var(--green-mid);
}

.premium-card {
    background: linear-gradient(135deg, var(--white), #f7fff8);
    border-radius: 12px;
    padding: 16px;
    color: var(--green-dark);
    box-shadow: 0 12px 40px rgba(4, 47, 38, 0.15);
    border: 1px solid rgba(4, 47, 38, 0.08);
    width: 280px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 5px;
}

.premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(4, 47, 38, 0.18);
}

.premium-image {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}

.premium-badge {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: var(--white);
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 8px;
}

.premium-card h3 {
    margin: 0 0 6px;
    font-size: 16px;
    color: var(--green-dark);
    font-family: 'Playfair Display';
    font-weight: 700;
}

.premium-card p {
    margin: 0 0 12px;
    color: #225241;
    font-size: 13px;
    line-height: 1.4;
}

.premium-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.premium-cta {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: var(--white);
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-size: 13px;
    transition: var(--transition);
}

.premium-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(4, 47, 38, 0.2);
}

.reserva-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 24px;
    margin-top: 24px;
}

.productos-section {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(4, 47, 38, 0.04);
}

.productos-section h3 {
    margin: 0 0 16px;
    color: var(--green-dark);
    font-family: 'Playfair Display';
}

.producto-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid rgba(4, 47, 38, 0.06);
    align-items: center;
}

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

.producto-imagen {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.producto-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.producto-info {
    flex: 1;
}

.producto-info h4 {
    margin: 0 0 4px;
    color: var(--green-dark);
}

.producto-info p {
    margin: 0;
    color: #225241;
    font-size: 14px;
}

.producto-precio {
    font-weight: 800;
    color: var(--green-dark);
    font-size: 16px;
}

.producto-cantidad {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.cantidad-btn {
    background: var(--accent);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 800;
}

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

.eliminar-btn {
    background: none;
    border: none;
    color: #dc2626;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    font-size: 12px;
}

.eliminar-btn:hover {
    background: rgba(220, 38, 38, 0.1);
}

.datos-section {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(4, 47, 38, 0.04);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.datos-section h3 {
    margin: 0 0 16px;
    color: var(--green-dark);
    font-family: 'Playfair Display';
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--green-dark);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(4, 47, 38, 0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(11, 106, 85, 0.1);
}

.resumen {
    background: rgba(4, 47, 38, 0.05);
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
    border: 1px solid rgba(4, 47, 38, 0.1);
}

.resumen-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.resumen-total {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(4, 47, 38, 0.2);
    font-weight: 800;
    font-size: 16px;
}

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

.estado-vacio h3 {
    margin: 0 0 8px;
    color: var(--green-dark);
}

.btn-seguir-comprando {
    background: var(--green-dark);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 16px;
    text-decoration: none;
    display: inline-block;
}

.teasers {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 22px;
}

.teaser {
    background: linear-gradient(180deg, #fff, #fbfffb);
    padding: 14px;
    border-radius: 12px;
    min-width: 200px;
    border: 1px solid rgba(4, 47, 38, 0.03);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@media (max-width:980px) {
    .nav-center {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .collections {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal {
        padding: 18px;
    }

    .decants-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .decant-prices {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero {
        flex-direction: column;
    }

    .controls {
        flex-direction: column;
        align-items: stretch;
    }

    .search-input {
        min-width: auto;
    }

    .premium-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .reserva-layout {
        grid-template-columns: 1fr;
    }

    .datos-section {
        position: static;
    }

    .teasers {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width:640px) {
    .collections {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .hero h2 {
        font-size: 28px;
    }

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

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

    .decants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .section-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .modal {
        width: 95%;
        padding: 16px;
    }

    .producto-item {
        flex-direction: column;
        text-align: center;
    }

    .producto-cantidad {
        justify-content: center;
    }
}