/* ============================================
   Nextvietnam Shop Shortcodes CSS
   [featured_films], [featured_usb], [shop_banner]
   ============================================ */

/* ============================================
   [featured_films] — Film Grid Section
   ============================================ */

.nv-featured-films-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.nv-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.nv-section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e232b;
    margin: 0 0 12px;
}

.nv-section-header p {
    font-size: 17px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Films Grid */
.nv-films-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 900px) {
    .nv-films-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .nv-films-grid { grid-template-columns: 1fr; }
}

/* Film Card */
.nv-film-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(52, 82, 188, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.nv-film-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(52, 82, 188, 0.2);
}

/* Thumbnail area */
.nv-film-card__thumb {
    display: block;
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #1e232b;
    text-decoration: none;
}

.nv-film-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.nv-film-card:hover .nv-film-card__thumb img {
    transform: scale(1.06);
}

.nv-film-card__no-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 64px;
    background: linear-gradient(135deg, #1e232b, #3452bc);
}

/* Badge on thumbnail */
.nv-film-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #3452bc;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Card body */
.nv-film-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nv-film-card__body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e232b;
    margin: 0 0 10px;
    line-height: 1.4;
}

.nv-film-card__body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.nv-film-card__body h3 a:hover {
    color: #3452bc;
}

.nv-film-card__excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}

/* Footer: price + buy button */
.nv-film-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.nv-film-card__price {
    font-size: 22px;
    font-weight: 700;
    color: #3452bc;
}

.nv-film-card__price del {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 400;
    margin-right: 4px;
}

.nv-film-card__btn {
    background: #3452bc;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.25s ease, transform 0.2s ease;
    display: inline-block;
}

.nv-film-card__btn:hover {
    background: #2440a8;
    transform: translateY(-1px);
    color: #fff !important;
}

/* Meta chips */
.nv-film-card__meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.nv-film-card__meta span {
    font-size: 11px;
    color: #3452bc;
    background: #eff6ff;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 600;
}

/* CTA link below grid */
.nv-films-cta {
    text-align: center;
    margin-top: 36px;
}

.nv-films-cta a {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid #3452bc;
    color: #3452bc;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.nv-films-cta a:hover {
    background: #3452bc;
    color: #fff;
}

/* ============================================
   [featured_usb] — USB CTA Section
   ============================================ */

.nv-usb-cta-section {
    background: linear-gradient(135deg, #1e232b 0%, #2d3748 100%);
    padding: 60px 20px;
    margin: 60px 0;
}

.nv-usb-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .nv-usb-cta-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
}

.nv-usb-cta__image img {
    width: 100%;
    max-width: 380px;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

@media (max-width: 900px) {
    .nv-usb-cta__image img { max-width: 280px; margin: 0 auto; display: block; }
}

.nv-usb-cta__tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #a5b4fc;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.nv-usb-cta__content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #f8fafc;
    margin: 0 0 12px;
    line-height: 1.3;
}

.nv-usb-cta__content > p {
    font-size: 17px;
    color: #94a3b8;
    margin: 0 0 24px;
    line-height: 1.7;
}

.nv-usb-cta__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.nv-usb-cta__features li {
    font-size: 15px;
    color: #cbd5e1;
    padding: 6px 0;
    line-height: 1.5;
}

.nv-usb-cta__buy {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .nv-usb-cta__buy { justify-content: center; }
}

.nv-usb-cta__price {
    font-size: 30px;
    font-weight: 700;
    color: #60a5fa;
}

.nv-usb-cta__btn {
    background: #fff;
    color: #3452bc !important;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.25s ease, transform 0.2s ease;
    display: inline-block;
    white-space: nowrap;
}

.nv-usb-cta__btn:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
    color: #2440a8 !important;
}

.nv-usb-cta__paypal {
    font-size: 13px;
    color: #64748b;
    margin: 14px 0 0;
}

.nv-usb-cta__paypal strong {
    color: #93c5fd;
}

/* ============================================
   [shop_banner] — Call to Action Banner
   ============================================ */

.nv-shop-banner {
    background: linear-gradient(135deg, #3452bc 0%, #1e40af 100%);
    padding: 56px 20px;
    margin: 48px 0;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.nv-shop-banner::before,
.nv-shop-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.nv-shop-banner::before {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -80px;
}
.nv-shop-banner::after {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -40px;
}

.nv-shop-banner__inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.nv-shop-banner__inner h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.3;
}

.nv-shop-banner__inner p {
    font-size: 17px;
    color: rgba(255,255,255,0.82);
    margin: 0 0 32px;
    line-height: 1.7;
}

.nv-shop-banner__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.nv-shop-banner__btn-primary {
    background: #fff;
    color: #3452bc !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.25s ease, transform 0.2s ease;
    display: inline-block;
}

.nv-shop-banner__btn-primary:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
    color: #2440a8 !important;
}

.nv-shop-banner__btn-secondary {
    background: transparent;
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.25s ease;
    display: inline-block;
}

.nv-shop-banner__btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff !important;
}
