    .producto-page {
        --primary: #2b9dee;
        --primary-dark: #1a8ad4;
        --bg-cream: #F9F7F2;
        --bg-light: #f6f7f8;
        --text-dark: #1E293B;
        --text-soft: #64748B;
        font-family: var(--font-secondary);
    }
    .producto-page .img-main {
        border-radius: 1rem;
        overflow: hidden;
        background: white;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        cursor: zoom-in;
    }
    .producto-page .img-thumb {
        border-radius: 0.75rem;
        overflow: hidden;
        background: white;
        border: 2px solid transparent;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .producto-page .img-thumb:hover,
    .producto-page .img-thumb.active {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(43, 157, 238, 0.15);
    }
    .producto-page .badge-eco {
        background: rgba(255,255,255,0.9);
        backdrop-filter: blur(8px);
        padding: 4px 12px;
        border-radius: 9999px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--primary);
    }
    .producto-page .badge-new {
        background: #FCD34D;
        color: #1F2937;
        padding: 4px 10px;
        border-radius: 9999px;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        transform: rotate(6deg);
    }
    .producto-page .badge-sale {
        background: #EF4444;
        color: white;
        padding: 4px 10px;
        border-radius: 9999px;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        transform: rotate(-3deg);
    }
    .producto-page .specs-bar {
        display: flex;
        gap: 0;
        padding: 16px 0;
        border-top: 1px solid #E2E8F0;
        border-bottom: 1px solid #E2E8F0;
    }
    .producto-page .specs-bar .spec-item {
        flex: 1;
        text-align: center;
        position: relative;
    }
    .producto-page .specs-bar .spec-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 32px;
        background: #E2E8F0;
    }
    .producto-page .specs-bar .spec-label {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #94A3B8;
        margin-bottom: 4px;
    }
    .producto-page .specs-bar .spec-value {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
    }
    .producto-page .tip-box {
        background: rgba(43, 157, 238, 0.08);
        border: 1px solid rgba(43, 157, 238, 0.15);
        border-radius: 1rem;
        padding: 20px;
    }
    .producto-page .parada-highlight {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.03), rgba(43, 157, 238, 0.08));
        border: 1px solid rgba(43, 157, 238, 0.18);
        border-radius: 1rem;
        padding: 20px;
    }
    .producto-page .parada-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
    .producto-page .parada-stat {
        background: rgba(255,255,255,0.92);
        border: 1px solid rgba(148, 163, 184, 0.2);
        border-radius: 0.85rem;
        padding: 10px 12px;
    }
    .producto-page .parada-stat-label {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #94A3B8;
    }
    .producto-page .parada-stat-value {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
        margin-top: 4px;
    }
    .producto-page .parada-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 16px;
    }
    .producto-page .btn-parada {
        background: var(--text-dark);
        color: white;
        border-radius: 9999px;
        padding: 13px 22px;
        font-weight: 700;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.2s ease;
    }
    .producto-page .btn-parada:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
    }
    .producto-page .btn-parada-secondary {
        background: white;
        color: var(--text-dark);
        border: 1px solid #CBD5E1;
        border-radius: 9999px;
        padding: 12px 20px;
        font-weight: 600;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.2s ease;
    }
    .producto-page .btn-parada-secondary:hover {
        border-color: var(--primary);
        color: var(--primary);
    }
    .producto-page .tip-icon {
        background: var(--primary);
        color: white;
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .producto-page .btn-whatsapp {
        background: #25D366;
        color: white;
        border-radius: 9999px;
        padding: 14px 32px;
        font-weight: 700;
        font-size: 0.95rem;
        transition: all 0.2s ease;
        box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .producto-page .btn-whatsapp:hover {
        background: #1EBE5A;
        transform: scale(1.03);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    }
    .producto-page .btn-contact {
        background: white;
        color: var(--text-dark);
        border: 2px solid #E2E8F0;
        border-radius: 9999px;
        padding: 14px 32px;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .producto-page .btn-contact:hover {
        border-color: var(--primary);
        color: var(--primary);
    }
    .producto-page .stock-bar {
        padding: 16px 20px;
        border-radius: 0.75rem;
        border: 1px solid #E2E8F0;
        background: white;
    }
    .producto-page .stock-indicator {
        height: 6px;
        border-radius: 9999px;
        background: #E2E8F0;
        overflow: hidden;
    }
    .producto-page .stock-fill {
        height: 100%;
        border-radius: 9999px;
        background: #22C55E;
    }
    .producto-page .bullet-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 10px 0;
    }
    .producto-page .bullet-icon {
        width: 24px;
        height: 24px;
        border-radius: 6px;
        background: rgba(43, 157, 238, 0.1);
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
    }
    .producto-page .rating-row {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 1rem;
    }
    .producto-page .rating-stars {
        position: relative;
        display: inline-block;
        line-height: 1;
        font-size: 16px;
        letter-spacing: 1px;
    }
    .producto-page .rating-stars-base {
        color: #E2E8F0;
    }
    .producto-page .rating-stars-fill {
        color: #F59E0B;
        position: absolute;
        left: 0;
        top: 0;
        overflow: hidden;
        white-space: nowrap;
    }
    .producto-page .related-card {
        background: white;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(0,0,0,0.06);
        transition: all 0.3s ease;
    }
    @media (max-width: 640px) {
        .producto-page .parada-grid {
            grid-template-columns: 1fr;
        }
    }
    .producto-page .related-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(43, 157, 238, 0.12);
    }
    .producto-page .related-card .img-wrap {
        aspect-ratio: 1;
        overflow: hidden;
        background: #F9FAFB;
        position: relative;
    }
    .producto-page .related-card .img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 12px;
        transition: transform 0.4s ease;
    }
    .producto-page .related-card:hover .img-wrap img {
        transform: scale(1.06);
    }
