/* ===== Product Detail Pages ===== */

/* Hero */
.product-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding-bottom: 4rem;
}

.product-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 17, 22, 0.3) 0%, rgba(15, 17, 22, 0.85) 100%);
    z-index: 1;
}

.product-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-light {
    font-size: 0.85rem;
}

.breadcrumb-light .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-light .breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-light .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.product-hero-badge {
    display: inline-block;
    background: rgba(167, 139, 250, 0.25);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(167, 139, 250, 0.3);
}

.product-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.product-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* About */
.product-about {
    padding: 5rem 0;
    background: #fff;
}

.product-about-text {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #a78bfa;
}

.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #6b5b95;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-icon {
    font-size: 1.75rem;
    color: #7c3aed;
    margin-bottom: 0.5rem;
}

.stat-icon i {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 12px;
}

.stat-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* Features */
.product-features {
    padding: 5rem 0;
    background: #f8fafc;
}

.feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6b5b95, #7c3aed);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #a78bfa;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    margin-bottom: 1.25rem;
}

.feature-icon i {
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(107, 91, 149, 0.1), rgba(124, 58, 237, 0.1));
    color: #7c3aed;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    background: linear-gradient(135deg, #6b5b95, #7c3aed);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* CTA */
.product-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #6b5b95 0%, #7c3aed 50%, #3f3358 100%);
    color: #fff;
}

.product-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.product-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Other Products */
.other-products {
    padding: 4rem 0;
    background: #fff;
}

.other-products h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1e293b;
}

.other-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.35s ease;
    text-align: center;
}

.other-product-card i {
    font-size: 2rem;
    color: #7c3aed;
    transition: transform 0.3s ease;
}

.other-product-card span {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.other-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #a78bfa;
    color: #6b5b95;
}

.other-product-card:hover i {
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 991px) {
    .product-hero-title {
        font-size: 2.5rem;
    }

    .product-hero {
        min-height: 50vh;
    }
}

@media (max-width: 767px) {
    .product-hero-title {
        font-size: 2rem;
    }

    .product-hero-subtitle {
        font-size: 1rem;
    }

    .product-hero {
        min-height: 45vh;
        padding-bottom: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .product-about,
    .product-features {
        padding: 3rem 0;
    }

    .product-cta {
        padding: 3rem 0;
    }

    .product-cta h2 {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}
