/* assets/css/styles_index.css */
:root {
    --bg-color: #000000;       /* Negro puro para el fondo */
    --card-bg: #111111;        /* Gris ultra oscuro para las tarjetas */
    --text-color: #ffffff;     /* Blanco para textos principales */
    --text-muted: #888888;     /* Gris para descripciones */
    --border-color: #222222;   /* Bordes sutiles */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* Contenedor del Feed */
.feed-container {
    width: 100%;
    max-width: 450px; 
    margin: 0 auto;
    padding-top: 100px; 
    padding-bottom: 40px;
}

/* Tarjeta de Producto */
.product-card {
    position: relative;
    width: 100%;
    height: calc(100vh - 140px); 
    margin-bottom: 40px;
    border-radius: 20px; /* Bordes un toque más afilados/modernos */
    overflow: hidden;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0,0,0,0.8);
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    /* Degradado de negro a transparente */
    background: linear-gradient(to top, rgba(0,0,0,1) 10%, rgba(0,0,0,0.5) 50%, transparent);
}

/* Información Flotante */
.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 10;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.product-info h3 {
    font-size: 1.7rem;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.product-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.4;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Botón de Compra Monocromático */
.btn-add-to-cart {
    background: #ffffff;
    border: none;
    color: #000000;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease-in-out;
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    background: #eeeeee;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-add-to-cart:active { transform: scale(0.98); }