/* Webshop Page Specific Styles */

/* ============================================
   BLACK FRIDAY BANNERS
   ============================================ */

/* Main Black Friday Banner */
.black-friday-banner {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    padding: 1rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
    z-index: 1;
}

.black-friday-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: bf-shine 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes bf-shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.bf-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.bf-icon {
    font-size: 1.5rem;
    color: #000;
    animation: bf-pulse 1s ease-in-out infinite;
}

@keyframes bf-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.bf-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* Countdown Banner */
.bf-countdown-banner {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    border: 3px solid #fbbf24;
    border-radius: 1rem;
    padding: 1.25rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.3), inset 0 0 60px rgba(251, 191, 36, 0.1);
}

.bf-countdown-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    animation: bf-glow 4s ease-in-out infinite;
}

@keyframes bf-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.bf-countdown-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.bf-fire {
    font-size: 1.8rem;
    color: #fbbf24;
    animation: bf-fire-dance 0.5s ease-in-out infinite alternate;
}

@keyframes bf-fire-dance {
    0% { transform: translateY(0) rotate(-5deg); }
    100% { transform: translateY(-3px) rotate(5deg); }
}

.bf-countdown-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Countdown Timer */
.bf-countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid #fbbf24;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    min-width: 70px;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.countdown-label {
    font-size: 0.7rem;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
    opacity: 0.8;
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Sticky Top Banner */
.bf-sticky-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    background: linear-gradient(90deg, #000, #1a1a2e, #000);
    border-bottom: 2px solid #fbbf24;
    padding: 0.6rem 1rem;
    animation: bf-sticky-slide 0.5s ease-out;
}

@keyframes bf-sticky-slide {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.bf-sticky-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bf-sticky-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: bf-text-glow 2s ease-in-out infinite;
}

@keyframes bf-text-glow {
    0%, 100% { text-shadow: 0 0 5px rgba(251, 191, 36, 0.5); }
    50% { text-shadow: 0 0 20px rgba(251, 191, 36, 0.8), 0 0 30px rgba(251, 191, 36, 0.4); }
}

.bf-sticky-close {
    background: transparent;
    border: 1px solid #fbbf24;
    color: #fbbf24;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bf-sticky-close:hover {
    background: #fbbf24;
    color: #000;
}

/* Adjust navbar position when sticky banner is visible */
body:has(.bf-sticky-top) .navbar {
    top: 42px;
}

body:has(.bf-sticky-top) .page-hero,
body:has(.bf-sticky-top) main {
    padding-top: 42px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .bf-sticky-top {
        padding: 0.5rem 0.75rem;
    }
    
    .bf-sticky-text {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .bf-sticky-close {
        width: 20px;
        height: 20px;
        font-size: 0.85rem;
    }
    
    body:has(.bf-sticky-top) .navbar {
        top: 36px;
    }
    
    body:has(.bf-sticky-top) .page-hero,
    body:has(.bf-sticky-top) main {
        padding-top: 36px;
    }
    
    .black-friday-banner {
        padding: 0.75rem 1rem;
    }
    
    .bf-text {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
    
    .bf-icon {
        font-size: 1.2rem;
    }
    
    .bf-countdown-banner {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .bf-countdown-text {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .bf-fire {
        font-size: 1.4rem;
    }
    
    .bf-countdown-timer {
        gap: 0.3rem;
    }
    
    .countdown-item {
        padding: 0.5rem 0.6rem;
        min-width: 50px;
    }
    
    .countdown-number {
        font-size: 1.3rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .countdown-separator {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bf-countdown-timer {
        gap: 0.2rem;
    }
    
    .countdown-item {
        padding: 0.4rem 0.5rem;
        min-width: 40px;
    }
    
    .countdown-number {
        font-size: 1.1rem;
    }
    
    .countdown-label {
        font-size: 0.5rem;
    }
    
    .countdown-separator {
        font-size: 0.8rem;
    }
}

/* ============================================
   PRICING STYLES
   ============================================ */

/* Pricing Grid - uses skills-grid from common.css */
.pricing-grid {
    margin-top: 3rem;
    padding: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
}

/* Pricing Card Enhancements */
.pricing-card {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid var(--soft-purple);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
    transform: scale(1.02);
}

.pricing-card.premium {
    border: 2px solid var(--soft-blue);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
}

/* Featured/Popular Badge */
.pricing-card.featured {
    border: 2px solid var(--soft-green);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(59, 130, 246, 0.05));
    position: relative;
    overflow: hidden;
    padding-top: 2.5rem;
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--soft-green), #059669);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 0 0 20px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    z-index: 10;
    white-space: nowrap;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

/* Pricing Icon */
.pricing-icon {
    font-size: 1.8rem !important;
    margin-bottom: 1rem;
    color: white !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--soft-purple), var(--soft-blue));
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.pricing-icon i {
    color: white !important;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Pricing Price */
.pricing-price {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 2px solid var(--soft-bg-light);
    border-bottom: 2px solid var(--soft-bg-light);
    position: relative;
}

/* Original Price (Strikethrough) */
.price-original {
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--soft-text-muted);
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

/* Discount Badge */
.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    margin: 0.5rem 0;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.price-amount.free {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-period {
    display: block;
    font-size: 0.9rem;
    color: var(--soft-text-muted);
}

/* Pricing Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--soft-text-primary);
}

.pricing-features li i {
    color: var(--soft-blue);
    margin-right: 0.75rem;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Order Button */
.order-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

/* Modal Styles - copied from contact form */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
    padding: 2rem 1rem;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15), 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="dark"] .modal-content {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

@keyframes slideUp {
    from {
        transform: translateY(60px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 10;
    background: transparent;
    border: none;
    width: auto;
    height: auto;
    padding: 0.5rem;
}

.modal-close:hover {
    color: var(--soft-purple);
    transform: scale(1.2);
}

.modal-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--soft-purple), var(--soft-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--heading-font);
    padding-right: 2rem;
    line-height: 1.2;
    font-weight: 700;
}

.modal-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Order Form - copied from contact form */
.order-form {
    display: flex;
    flex-direction: column;
}

.order-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.order-form .form-group label {
    display: block;
    position: static;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
    order: 1;
}

.order-form .form-group input,
.order-form .form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: white;
    color: var(--text-color);
    box-sizing: border-box;
    order: 2;
}

.order-form .form-group input::placeholder,
.order-form .form-group textarea::placeholder {
    color: rgba(100, 116, 139, 0.6);
}

.order-form .form-group input:focus,
.order-form .form-group textarea:focus {
    outline: none;
    border-color: var(--soft-purple);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.order-form .form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Dark theme inputs in modal */
[data-theme="dark"] .order-form .form-group input,
[data-theme="dark"] .order-form .form-group textarea {
    background: rgba(15, 23, 42, 0.5) !important;
    border-color: rgba(59, 130, 246, 0.3);
    color: #f1f5f9 !important;
}

[data-theme="dark"] .order-form .form-group input::placeholder,
[data-theme="dark"] .order-form .form-group textarea::placeholder {
    color: rgba(203, 213, 225, 0.5);
}

[data-theme="dark"] .order-form .form-group input:focus,
[data-theme="dark"] .order-form .form-group textarea:focus {
    background: rgba(15, 23, 42, 0.7) !important;
    border-color: var(--soft-purple-light);
}

[data-theme="dark"] .order-form .form-group label {
    color: #cbd5e1;
}

/* Mobile spacing for order form */
@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .order-form .form-group {
        margin-bottom: 0.3rem;
    }
    
    .order-form .form-group label {
        margin-bottom: 0.25rem;
    }
}

/* Video Container (za template demo) */
.video-container {
    position: relative;
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    background: var(--soft-bg-medium);
}

.template-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: var(--transition-medium);
}

.template-video:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-heavy);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-icon {
        font-size: 1.6rem !important;
        width: 60px;
        height: 60px;
    }
    
    .pricing-icon i {
        font-size: 1.5rem;
    }
    
    .price-original {
        font-size: 1.1rem;
    }
    
    .discount-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Center all buttons in pricing cards */
    .order-btn,
    .pricing-card .btn,
    .pricing-card button {
        width: 85% !important;
        margin: 0 auto !important;
        padding: 3.5vw 5.5vw !important;
        font-size: 4.5vw !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .modal {
        padding: 0.5rem;
    }
    
    .modal.active {
        padding: 1rem 0.5rem;
        align-items: flex-start;
    }
    
    .modal-content {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
        max-height: 95vh;
        margin: 0.5rem;
        border-radius: 1rem;
    }
    
    .modal-close {
        right: 0.5rem;
        top: 0.5rem;
        width: 2rem;
        height: 2rem;
        font-size: 1.3rem;
    }
    
    .modal-title {
        font-size: 1.3rem;
        padding: 0 0.5rem;
        text-align: center;
    }
    
    .modal-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .order-form {
        gap: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        min-height: 70px;
    }
    
    .order-btn {
        padding: 0.85rem;
        font-size: 0.95rem;
    }
    
    .video-container {
        border-radius: 1rem;
    }
    
    .template-video {
        border-radius: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    /* Same button sizes for consistency */
    
    .modal-content {
        padding: 1.2rem 0.8rem;
        margin: 0.25rem;
    }
    
    .modal-close {
        right: 0.25rem;
        top: 0.25rem;
    }
    
    .modal-title {
        font-size: 1.1rem;
        text-align: center;
        padding: 0 0.5rem;
        margin-left: 1.5rem;
    }
    
    .modal-subtitle {
        font-size: 0.85rem;
        text-align: center;
        word-break: break-word;
        padding: 0 0.5rem;
        margin-left: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
}

/* Large screens - prevent modal from being too wide */
@media (min-width: 1400px) {
    .modal-content {
        max-width: 650px;
    }
}

/* Skills intro text for packages description */
.skills-intro,
.section-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 1rem;
    border-left: 4px solid var(--soft-purple);
}

.section-note {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 1rem;
    border: 1px dashed var(--soft-green);
}

/* Checkbox Group Styles for Modal */
.order-form .form-checkbox-group {
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

.order-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 0.75rem;
    font-weight: normal;
    margin: 0;
}

.order-form .checkbox-label input[type="checkbox"] {
    width: auto;
    height: 1.25rem;
    min-width: 1.25rem;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: var(--soft-purple);
    padding: 0;
    border: none;
    pointer-events: auto;
}

.order-form .checkbox-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    pointer-events: auto;
}

.order-form .checkbox-text a {
    color: var(--soft-purple);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.order-form .checkbox-text a:hover {
    color: var(--soft-blue);
    text-decoration: underline;
}

.form-response {
    display: none;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.form-response.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-response.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-form .checkbox-label input[type="checkbox"]:focus {
    outline: 2px solid var(--soft-purple);
    outline-offset: 2px;
}

.order-form .form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

/* ============================================
   BLACK FRIDAY - LIGHT THEME STYLES
   ============================================ */

/* Light theme - Yellow Banner */
[data-theme="light"] .black-friday-banner {
    background: linear-gradient(135deg, #1f2937, #374151, #1f2937);
}

[data-theme="light"] .black-friday-banner .bf-text {
    color: #fbbf24;
    text-shadow: none;
}

[data-theme="light"] .black-friday-banner .bf-icon {
    color: #fbbf24;
}

/* Light theme - Countdown Banner */
[data-theme="light"] .bf-countdown-banner {
    background: linear-gradient(135deg, #fef3c7, #fde68a, #fcd34d);
    border-color: #d97706;
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.25), inset 0 0 60px rgba(217, 119, 6, 0.1);
}

[data-theme="light"] .bf-countdown-banner::before {
    background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
}

[data-theme="light"] .bf-fire {
    color: #d97706;
}

[data-theme="light"] .bf-countdown-text {
    color: #92400e;
    text-shadow: none;
}

[data-theme="light"] .countdown-item {
    background: rgba(255, 255, 255, 0.6);
    border-color: #d97706;
}

[data-theme="light"] .countdown-number {
    color: #92400e;
    text-shadow: none;
}

[data-theme="light"] .countdown-label {
    color: #78350f;
}

[data-theme="light"] .countdown-separator {
    color: #d97706;
}

/* Light theme - Pricing Cards with Discount */
[data-theme="light"] .discount-badge {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

[data-theme="light"] .price-original {
    color: #6b7280;
}

/* ============================================
   TEMPLATE SLIDER STYLES
   ============================================ */

.template-section .about-image {
    position: relative;
}

.template-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.template-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.template-slide {
    display: none;
    flex-direction: column;
    animation: fadeIn 0.5s ease;
}

.template-slide.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.template-slide .template-preview-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.template-slide .template-image-link:hover .template-preview-img {
    transform: scale(1.02);
}

.template-info {
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    margin-top: 1rem;
    text-align: center;
}

.template-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.template-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.template-info .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.template-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.template-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.template-nav-btn:hover {
    background: var(--accent-color);
    color: white;
}

.template-dots {
    display: flex;
    gap: 0.5rem;
}

.template-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.template-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.template-dot:hover {
    background: var(--accent-color);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .template-info {
        padding: 1rem;
    }
    
    .template-info h4 {
        font-size: 1.1rem;
    }
    
    .template-nav-btn {
        width: 36px;
        height: 36px;
    }
}
