.wpsell-template-bold {
    background: #fff;
}
.wpsell-template-bold .bold-hero {
    position: relative;
    background: var(--wpsell-gold);
    padding: 80px 0;
    overflow: hidden;
}
.wpsell-template-bold .hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}
.wpsell-template-bold .shape {
    position: absolute;
    background: white;
    border-radius: 50%;
}
.wpsell-template-bold .shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: 10%;
}
.wpsell-template-bold .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: 5%;
}
.wpsell-template-bold .shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 5%;
}
.wpsell-template-bold .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.wpsell-template-bold .category-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.wpsell-template-bold .bold-title {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
}
.wpsell-template-bold .bold-excerpt {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}
.wpsell-template-bold .hero-numbers {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}
.wpsell-template-bold .number-item .number {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}
.wpsell-template-bold .number-item .label {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.wpsell-template-bold .bold-btn-primary {
    display: inline-block;
    background: white;
    color: var(--wpsell-gold);
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}
.wpsell-template-bold .bold-btn-primary:hover {
    transform: translateY(-3px);
}
.wpsell-template-bold .price-save {
    margin-top: 10px;
    color: #ffeb3b;
    font-weight: 600;
}
.wpsell-template-bold .bold-video,
.wpsell-template-bold .bold-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.wpsell-template-bold .bold-content {
    padding: 80px 0;
}
.wpsell-template-bold .bold-section {
    margin-bottom: 80px;
}
.wpsell-template-bold .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.wpsell-template-bold .section-label {
    display: block;
    color: var(--wpsell-gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.wpsell-template-bold .section-header h2 {
    font-size: 36px;
    color: #1a1a1a;
}
.wpsell-template-bold .benefits-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.wpsell-template-bold .benefit-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: var(--wpsell-radius-lg);
    position: relative;
}
.wpsell-template-bold .card-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(200,169,81,0.3);
    position: absolute;
    top: 15px;
    right: 20px;
}
.wpsell-template-bold .benefit-card p {
    font-size: 16px;
    color: var(--wpsell-800);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .wpsell-template-bold .hero-grid {
        grid-template-columns: 1fr;
    }
}
.wpsell-template-video-first {
    background: #0a0a0a;
    color: #fff;
}
.wpsell-template-video-first .video-first-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    background: #000;
}
.wpsell-template-video-first .hero-video-container,
.wpsell-template-video-first .hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.wpsell-template-video-first .hero-video-wrapper {
    width: 100%;
    height: 100%;
}
.wpsell-template-video-first .hero-video-wrapper iframe {
    width: 100%;
    height: 100%;
}
.wpsell-template-video-first .hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wpsell-template-video-first .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.wpsell-template-video-first .overlay-content {
    text-align: center;
}
.wpsell-template-video-first .play-pulse {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}
.wpsell-template-video-first .play-pulse .dashicons {
    font-size: 50px;
    width: 50px;
    height: 50px;
    color: #000;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    70% { box-shadow: 0 0 0 30px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.wpsell-template-video-first .video-info-bar {
    background: #1a1a1a;
    padding: 40px 0;
    border-bottom: 1px solid var(--wpsell-800);
}
.wpsell-template-video-first .info-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}
.wpsell-template-video-first .info-main h1 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
}
.wpsell-template-video-first .info-main p {
    font-size: 18px;
    color: var(--wpsell-400);
}
.wpsell-template-video-first .info-cta {
    text-align: right;
}
.wpsell-template-video-first .cta-price-badge {
    background: #e74c3c;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}
.wpsell-template-video-first .cta-price-badge.free {
    background: var(--wpsell-success);
}
.wpsell-template-video-first .video-btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}
.wpsell-template-video-first .video-btn:hover {
    background: #c0392b;
}
.wpsell-template-video-first .video-content {
    background: #0a0a0a;
    padding: 60px 0;
}
.wpsell-template-video-first .video-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
.wpsell-template-video-first .stat-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: var(--wpsell-radius-lg);
    text-align: center;
    border: 1px solid var(--wpsell-800);
}
.wpsell-template-video-first .stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
}
.wpsell-template-video-first .stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
}
.wpsell-template-video-first .stat-label {
    font-size: 14px;
    color: var(--wpsell-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.wpsell-template-video-first .video-section {
    margin-bottom: 60px;
}
.wpsell-template-video-first .section-heading {
    font-size: 32px;
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #e74c3c;
}
.wpsell-template-video-first .video-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--wpsell-300);
}
.wpsell-template-video-first .checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.wpsell-template-video-first .checklist-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: #1a1a1a;
    border-radius: var(--wpsell-radius);
    border: 1px solid var(--wpsell-800);
}
.wpsell-template-video-first .check-icon {
    width: 30px;
    height: 30px;
    background: var(--wpsell-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}
.wpsell-template-video-first .check-text {
    color: var(--wpsell-300);
    font-size: 15px;
    line-height: 1.6;
}
@media (max-width: 992px) {
    .wpsell-template-video-first .video-stats,
    .wpsell-template-video-first .checklist {
        grid-template-columns: repeat(2, 1fr);
    }
    .wpsell-template-video-first .info-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .wpsell-template-video-first .video-stats,
    .wpsell-template-video-first .checklist {
        grid-template-columns: 1fr;
    }
}
/* ── Classic Hero — Full-width dark gradient ─────────────── */
.wpsell-template-classic .wpsell-course-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f3460 100%);
    color: #fff;
    padding: 56px 0 64px;
    position: relative;
    overflow: hidden;
    /* Break out of .ast-container to full viewport width */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.wpsell-template-classic .wpsell-course-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,169,81,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.wpsell-template-classic .wpsell-course-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -3%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200,169,81,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.wpsell-template-classic .wpsell-course-hero .wpsell-container {
    position: relative;
    z-index: 1;
}

.wpsell-template-classic .wpsell-breadcrumbs {
    font-size: 13px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.wpsell-template-classic .wpsell-breadcrumbs a {
    color: #fff;
    text-decoration: none;
}

.wpsell-template-classic .wpsell-breadcrumbs a:hover {
    opacity: 1;
    text-decoration: underline;
}

.wpsell-template-classic .wpsell-course-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    max-width: 75%;
}

.wpsell-template-classic .wpsell-course-excerpt {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 0 28px;
}

.wpsell-template-classic .wpsell-course-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.wpsell-template-classic .wpsell-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.2s ease;
}

.wpsell-template-classic .wpsell-meta-item:hover {
    background: rgba(255, 255, 255, 0.18);
}

.wpsell-template-classic .wpsell-meta-item .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: var(--wpsell-gold, #C8A951);
}

@media (max-width: 768px) {
    .wpsell-template-classic .wpsell-course-hero {
        padding: 36px 0 44px;
    }

    .wpsell-template-classic .wpsell-course-hero::before,
    .wpsell-template-classic .wpsell-course-hero::after {
        display: none;
    }

    .wpsell-template-classic .wpsell-course-title {
        font-size: 28px;
        max-width: 100%;
    }

    .wpsell-template-classic .wpsell-course-excerpt {
        font-size: 15px;
    }

    .wpsell-template-classic .wpsell-meta-item {
        font-size: 13px;
        padding: 6px 14px;
    }
}

.wpsell-template-classic .wpsell-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-top: 40px;
}
.wpsell-template-classic .wpsell-media-section {
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .wpsell-template-classic .wpsell-content-grid {
        grid-template-columns: 1fr;
    }
}
.wpsell-template-modern .wpsell-modern-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
}
.wpsell-template-modern .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}
.wpsell-template-modern .hero-overlay {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92), rgba(15, 52, 96, 0.88));
    width: 100%;
    padding: 80px 0;
}
.wpsell-template-modern .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.wpsell-template-modern .hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}
.wpsell-template-modern .hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin: 40px 0;
}
.wpsell-template-modern .stat-box {
    text-align: center;
}
.wpsell-template-modern .stat-box strong {
    display: block;
    font-size: 36px;
    margin-bottom: 5px;
}
.wpsell-template-modern .wpsell-btn-xl {
    padding: 18px 48px;
    font-size: 18px;
}
.wpsell-template-modern .modern-section,
.wpsell-template-modern .modern-benefits,
.wpsell-template-modern .modern-curriculum {
    margin: 60px 0;
}
.wpsell-template-modern .section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}
.wpsell-template-modern .benefits-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.wpsell-template-modern .benefit-tile {
    background: white;
    padding: 30px;
    border-radius: var(--wpsell-radius-lg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}
.wpsell-template-modern .benefit-tile:hover {
    transform: translateY(-5px);
}
.wpsell-template-modern .tile-icon {
    width: 60px;
    height: 60px;
    background: var(--wpsell-gold, #C8A951);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}
.wpsell-template-minimal {
    background: #ffffff;
}
.wpsell-template-minimal .wpsell-minimal-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
}
.wpsell-template-minimal .minimal-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--wpsell-200);
}
.wpsell-template-minimal .minimal-header h1 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #1a1a1a;
}
.wpsell-template-minimal .minimal-excerpt {
    font-size: 18px;
    color: var(--wpsell-500);
    margin-bottom: 20px;
}
.wpsell-template-minimal .minimal-meta {
    font-size: 14px;
    color: var(--wpsell-400);
}
.wpsell-template-minimal .minimal-meta span {
    margin: 0 8px;
}
.wpsell-template-minimal .minimal-cta-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--wpsell-50);
    border-radius: var(--wpsell-radius);
}
.wpsell-template-minimal .minimal-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: var(--wpsell-radius-sm);
    font-weight: 500;
    transition: background 0.3s;
}
.wpsell-template-minimal .minimal-btn:hover {
    background: var(--wpsell-800);
}
.wpsell-template-minimal .cta-price {
    font-size: 24px;
    font-weight: 600;
    color: #000;
}
.wpsell-template-minimal .minimal-video,
.wpsell-template-minimal .minimal-image {
    margin-bottom: 40px;
    border-radius: var(--wpsell-radius);
    overflow: hidden;
}
.wpsell-template-minimal .minimal-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--wpsell-800);
    margin-bottom: 40px;
}
.wpsell-template-minimal .minimal-description p {
    margin-bottom: 20px;
}
.wpsell-template-minimal .minimal-benefits h3,
.wpsell-template-minimal .minimal-curriculum h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}
.wpsell-template-minimal .benefits-list {
    list-style: none;
    padding: 0;
}
.wpsell-template-minimal .benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid var(--wpsell-100);
}
.wpsell-template-minimal .benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #000;
}
.wpsell-template-minimal .minimal-curriculum {
    margin-top: 50px;
}
