/**
 * Shop Promotional Cards - CRO Optimized
 * Styles for the promotional CTAs on the shop page
 * @version 1.0.0
 */

/* ===== SHOP PROMOTIONAL CARDS - CRO OPTIMIZED ===== */

.shop-promo-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem 0;
    margin: 2rem 0 1.5rem 0;
}

.promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-rows: auto 120px;
    min-height: 400px;
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.promo-card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.promo-badge-experience {
    background: linear-gradient(135deg, #d8a81b 0%, #b7780d 100%);
    box-shadow: 0 2px 8px rgba(216, 168, 27, 0.3);
}

.promo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d8a81b 0%, #f0c040 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(216, 168, 27, 0.3);
}

.promo-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #2B2823;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.promo-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.promo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.promo-features li {
    color: #2B2823;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promo-features li i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

.promo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.promo-btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.promo-btn-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: #fff;
}

.promo-btn-secondary {
    background: linear-gradient(135deg, #d8a81b 0%, #b7780d 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(216, 168, 27, 0.3);
}

.promo-btn-secondary:hover {
    background: linear-gradient(135deg, #b7780d 0%, #8f5c0a 100%);
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(216, 168, 27, 0.4);
    color: #fff;
}

.promo-card-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.promo-percussion-bg {
    background-image: var(--promo-percussion-bg);
}

.promo-camp-bg {
    background-image: var(--promo-camp-bg);
}

/* Responsive Design - Optimized for faster product access on mobile */
@media (max-width: 768px) {
    .shop-promo-section {
        padding: 1rem 0;
        margin: 0.5rem 0;
    }

    .promo-cards-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .promo-card {
        grid-template-rows: auto 80px;
        min-height: auto;
    }

    .promo-card-content {
        padding: 1rem;
    }

    .promo-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .promo-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.75rem;
        margin-bottom: 0.5rem;
    }

    .promo-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .promo-card p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }

    .promo-features {
        margin: 0 0 0.75rem 0;
    }

    .promo-features li {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }

    .promo-features li i {
        font-size: 0.85rem;
    }

    .promo-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .promo-card-image {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .shop-promo-section {
        padding: 0.75rem 0;
        margin: 0.25rem 0;
    }

    .promo-cards-grid {
        gap: 0.5rem;
    }

    .promo-card {
        grid-template-rows: auto 60px;
    }

    .promo-card-content {
        padding: 0.75rem;
    }

    .promo-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .promo-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .promo-card p {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }

    .promo-features {
        margin: 0 0 0.5rem 0;
    }

    .promo-features li {
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
    }

    .promo-cta-btn {
        padding: 0.5rem 0.85rem;
        font-size: 0.8rem;
    }

    .promo-card-image {
        height: 60px;
    }
}
