/* BOTÓN DE COMPRA PREMIUM */
.btn-buy {
    background: var(--brand-gold);
    color: #000;
    border: none;
    padding: var(--sp-3) var(--sp-6);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    width: 100%;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    filter: brightness(1.1);
}

/* BRAND TAG (Etiqueta de Marca) */
.brand-tag {
    position: absolute;
    top: var(--sp-4);
    left: var(--sp-4);
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    padding: var(--sp-1) var(--sp-3);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* CARDS BASE */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--bg-surface);
    aspect-ratio: 3/4;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

/* ESTILOS DASHBOARD */
.dashboard-card {
    background: var(--bg-surface);
    padding: var(--sp-8);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sp-6);
    margin: var(--sp-8) 0;
}

.metric {
    background: var(--bg-accent);
    padding: var(--sp-6);
    border-radius: var(--radius-md);
}

.metric span { color: var(--text-muted); font-size: var(--fs-xs); }
.metric p { font-size: var(--fs-xl); font-weight: 700; margin-top: 5px; }
.metric.highlight p { color: var(--brand-gold); }

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--sp-8);
}

.dashboard-table th {
    text-align: left;
    padding: var(--sp-4);
    border-bottom: 2px solid var(--bg-accent);
    color: var(--text-muted);
}

.dashboard-table td {
    padding: var(--sp-4);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.text-gold { color: var(--brand-gold); font-weight: 600; }

/* SECCIONES DE CONTENIDO EDITORIAL */
.editorial-section {
    padding: var(--sp-12) 5%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.85;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: var(--sp-8);
    background: linear-gradient(to right, #fff, var(--brand-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: var(--fs-xl);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: var(--sp-12);
}

/* CARDS DE SERVICIOS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-8);
}

.service-card {
    background: var(--bg-surface);
    padding: var(--sp-8);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--brand-gold);
    transform: translateY(-10px);
}

.service-card i {
    color: var(--brand-gold);
    margin-bottom: var(--sp-4);
}

.service-card h4 {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    margin-bottom: var(--sp-4);
}

/* STORYTELLING DE PRODUCTO (Ajuste para que se vea la historia) */
.product-story {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin: var(--sp-4) 0;
    line-height: 1.6;
    font-style: italic;
    border-left: 2px solid var(--brand-gold);
    padding-left: var(--sp-4);
}
/* BARRA DE FILTROS REAL */
.filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }

.filter-btn {
    background: #111;
    border: 1px solid #333;
    color: #999;
    padding: 8px 24px;
    border-radius: 30px;
    white-space: nowrap;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    border-color: var(--brand-gold);
    color: var(--brand-gold);
    background: rgba(212, 175, 55, 0.05);
}
/* TARJETAS DE PRODUCTO EDITORIAL */
.product-card-desktop {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
}

.product-card-desktop:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.product-story {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price {
    font-weight: 700;
    color: var(--brand-gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.btn-buy {
    background: var(--brand-gold);
    color: black;
    border: none;
    padding: 12px;
    width: 100%;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-buy:hover {
    filter: brightness(1.2);
    box-shadow: 0 5px 15px var(--brand-gold-glow);
}