:root {
    --color-primary-start: #FF7A30;
    --color-primary-end: #D9480F;
    --gradient-primary: linear-gradient(135deg, var(--color-primary-start) 0%, var(--color-primary-end) 100%);
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #faf9fd;
    color: #2b2b3a;
}

.tienda-header {
    background: var(--gradient-primary);
}

.tienda-nav a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: .92rem;
    white-space: nowrap;
}
.tienda-nav a:hover { color: #fff; }

.tienda-footer {
    background: #201233;
}

.producto-card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(38,20,84,.08);
    height: 100%;
    transition: transform .15s ease;
}
.producto-card:hover { transform: translateY(-3px); }

.producto-card .img-wrap {
    aspect-ratio: 1 / 1;
    background: #f1eef8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.producto-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.badge-agotado {
    position: absolute;
    top: 10px; left: 10px;
}

.btn-gradient {
    background: var(--gradient-primary);
    border: none;
    color: #fff;
}
.btn-gradient:hover { color: #fff; opacity: .92; }

.emprendedor-avatar {
    width: 64px; height: 64px; object-fit: cover; border-radius: 50%;
}

