:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --gold: #d4af37;
    --gold-gradient: linear-gradient(135deg, #f3e5ab, #d4af37, #aa7c11);
    --red: #e60012;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --border-color: #262626;
    --whatsapp-green: #25d366;
    --white: #ffffff;
    --brand-blue: #2f60ff;
    --brand-yellow: #d4af37;
}

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

/* FIX DE PANTALLA COMPLETA */
html, body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* BARRA SUPERIOR DE ANUNCIOS */
.announcement-bar {
    width: 100%;
    background: var(--gold-gradient);
    color: #000000;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* HEADER & NAVBAR */
header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.nav-logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.brand-text {
    color: #ffffff !important;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.btn-nav-ws {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--brand-yellow);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    border: 2px solid #fff23b;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 252, 47, 0.5);
}

.btn-nav-ws:hover {
    background-color: #fff23b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 252, 47, 0.5);
}

/* HERO SECTION (FIX DE TAMAÑO E IMAGEN COMPLETA) */
.hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.85)), url('img/Imagen1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.hero-subtitle-tag {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
}

.hero h1 span {
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 650px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 900;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary-ws {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.btn-secondary-ws:hover {
    border-color: var(--whatsapp-green);
    color: var(--whatsapp-green);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.2);
}

.features-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--gold);
}

.feature-item span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-light);
    text-transform: uppercase;
}

/* CATÁLOGO DE PRODUCTOS */
.catalog {
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin: 1.8rem 0 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

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

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.product-card.hide {
    display: none !important;
}

.card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--brand-blue);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.6rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    z-index: 15;
    letter-spacing: 0.5px;
}

.card-badge.gold-badge {
    background: var(--gold-gradient);
    color: #000;
}

/* ACCIONES ADMIN EN TARJETA PRODUCTO */
.admin-card-actions {
    display: none;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 30;
    flex-direction: row;
    gap: 6px;
}

body.admin-active .admin-card-actions {
    display: flex;
}

.admin-card-actions .add-btn,
.admin-card-actions .edit-btn,
.admin-card-actions .delete-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(18, 18, 18, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.2s ease;
}

.admin-card-actions button i {
    font-size: 13px;
    color: #ffffff;
    pointer-events: none;
}

.admin-card-actions .add-btn:hover {
    background: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
}

.admin-card-actions .edit-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.admin-card-actions .edit-btn:hover i {
    color: #000000;
}

.admin-card-actions .delete-btn:hover {
    background: var(--red);
    border-color: var(--red);
}

/* TARJETA ESPECIAL (+) PARA AGREGAR PRODUCTO */
.add-product-card {
    display: none;
    background: rgba(20, 20, 20, 0.6);
    border: 2px dashed var(--gold);
    border-radius: 8px;
    min-height: 280px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem;
    text-align: center;
}

body.admin-active .add-product-card {
    display: flex;
}

.add-product-card:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

.add-product-card i {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    transition: transform 0.2s ease;
}

.add-product-card:hover i {
    transform: scale(1.15);
}

.add-product-card span {
    color: var(--text-light);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* CARRUSEL DE IMÁGENES DE PRODUCTO */
.product-gallery-container {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #000;
}

.gallery-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease-in-out;
}

.gallery-slide {
    min-width: 100%;
    height: 100%;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    z-index: 10;
    transition: background 0.2s;
}

.gallery-nav-btn:hover {
    background: var(--gold);
    color: #000;
}

.gallery-prev { left: 5px; }
.gallery-next { right: 5px; }

.gallery-dots {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 10;
}

.gallery-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--gold);
    width: 12px;
    border-radius: 4px;
}

.product-info {
    padding: 0.9rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.65rem;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.6rem;
    line-height: 1.25;
}

.sizes-container {
    margin-bottom: 0.8rem;
}

.sizes-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.size-pills {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.size-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    margin-top: auto;
}

.old-price {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 600;
}

.product-price {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--white);
}

.btn-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: var(--whatsapp-green);
    color: #ffffff;
    border: none;
    padding: 0.6rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background: #1eb854;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* MODAL DE ADMIN */
.admin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

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

.admin-modal-content {
    background: #121212;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 1.8rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
}

.modal-header h3 {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 800;
}

.close-modal-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

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

.admin-form .form-group {
    margin-bottom: 1rem;
}

.admin-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.admin-form input[type="text"],
.admin-form input[type="file"],
.admin-form select {
    width: 100%;
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
    color: #ffffff !important;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.admin-form input:focus,
.admin-form select:focus {
    border-color: var(--gold) !important;
}

.select-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.select-row select {
    flex: 1;
    min-width: 0;
}

.btn-secondary {
    background-color: #1a1a1a !important;
    color: var(--gold) !important;
    border: 1px solid #333333 !important;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.btn-secondary:hover {
    background: var(--gold) !important;
    color: #000000 !important;
    border-color: var(--gold) !important;
}

.btn-danger,
.btn-delete-category {
    background-color: rgba(230, 0, 18, 0.15) !important;
    color: var(--red) !important;
    border: 1px solid rgba(230, 0, 18, 0.4) !important;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.btn-danger:hover,
.btn-delete-category:hover {
    background-color: var(--red) !important;
    color: #ffffff !important;
    border-color: var(--red) !important;
}

.btn-add-category {
    background: rgba(212, 175, 55, 0.15);
    border: 1px dashed var(--gold);
    color: var(--gold);
    padding: 0.6rem;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.4rem;
    transition: all 0.2s ease;
}

.btn-add-category:hover {
    background: var(--gold);
    color: #000;
}

.btn-submit-product {
    width: 100%;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 900;
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scrollbar Modal Admin */
.admin-modal-content::-webkit-scrollbar { width: 6px; }
.admin-modal-content::-webkit-scrollbar-track { background: #121212; }
.admin-modal-content::-webkit-scrollbar-thumb { background: #333333; border-radius: 4px; }
.admin-modal-content::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* SECCIÓN RESEÑAS INSTAGRAM */
.ig-reviews-section {
    width: 100%;
    max-width: 1300px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.ig-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.ig-story-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 12px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.ig-story-card:hover {
    border-color: var(--brand-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(47, 96, 255, 0.25);
}

.story-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    padding: 2px;
    margin-bottom: 10px;
}

.story-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-dark);
}

.story-preview {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.story-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-overlay i {
    font-size: 2rem;
    color: var(--brand-blue);
}

.story-overlay span {
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.ig-story-card:hover .story-overlay {
    opacity: 1;
}

.story-info {
    margin-top: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ig-username {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text-light);
}

.story-tag {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 700;
}

/* LIGHTBOX INSTAGRAM MODAL */
.ig-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.ig-modal-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.ig-close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

/* FAQ */
.faq-section {
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.faq-item {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px;
    padding: 15px;
    color: var(--text-light);
}

.faq-item summary {
    font-weight: 700;
    cursor: pointer;
    color: var(--text-light);
}

.faq-item p {
    margin-top: 10px;
    color: var(--text-muted) !important;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* FOOTER */
footer {
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.admin-link {
    color: var(--text-muted);
    font-size: 0.75rem;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 0.5rem;
    display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .announcement-bar {
        font-size: 0.75rem;
        padding: 0.5rem;
    }

    .navbar, header nav, .nav-container {
        padding: 0.5rem 0.8rem !important;
        gap: 0.5rem !important;
    }

    .logo-img, .logo img {
        max-height: 32px !important;
        width: auto !important;
    }

    .btn-ws-group, 
    a[href*="chat.whatsapp.com"],
    header a.btn,
    .nav-ws-btn {
        padding: 6px 10px !important;
        font-size: 0.7rem !important;
        white-space: nowrap !important;
        border-radius: 20px !important;
        line-height: 1.2 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        width: auto !important;
        max-width: fit-content !important;
        height: auto !important;
        min-height: unset !important;
    }

    .btn-ws-group svg,
    a[href*="chat.whatsapp.com"] svg,
    .btn-ws-group i,
    a[href*="chat.whatsapp.com"] i {
        font-size: 0.85rem !important;
        width: 14px !important;
        height: 14px !important;
        flex-shrink: 0 !important;
    }

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

    .product-gallery-container {
        height: 140px;
    }

    .product-info {
        padding: 0.6rem;
    }

    .product-title {
        font-size: 0.8rem;
    }

    .product-price {
        font-size: 0.95rem;
    }

    .nav-links {
        display: none;
    }
}
