/* Pricing Page Specific Styles - Vintage Clothing Theme */

/* Color Variables for Vintage Clothing Starter Kit */
:root {
    --vintage-beige: #f5f1eb;
    --vintage-brown: #8b6f47;
    --vintage-green: #6b8e5a;
    --vintage-blue: #3c7dff;
    --kit-box: #4a90e2;
    --kit-camera: #10b981;
    --kit-star: #f59e0b;
}

/* Header CTA Button */
.cta-button {
    display: none;
}

@media (min-width: 1024px) {
    .cta-button {
        display: block;
    }
}

.nav-link.active {
    color: #1e40af !important;
    font-weight: 600;
}

/* Pricing Hero Section */
.pricing-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 64, 175, 0.7);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.pricing-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

/* Pricing Plans Section */
.pricing-plans {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--vintage-beige) 0%, #ffffff 100%);
}

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

.plan-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.plan-card.recommended {
    border-color: var(--vintage-green);
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(107, 142, 90, 0.15);
}

.plan-card.recommended:hover {
    transform: translateY(-18px);
    box-shadow: 0 24px 64px rgba(16, 185, 129, 0.2);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--vintage-green), var(--vintage-brown));
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(107, 142, 90, 0.3);
}

.plan-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
    border: 2px solid #e2e8f0;
    transition: border-color 0.3s ease;
}

.plan-card:hover .plan-image {
    border-color: #3b82f6;
}

.plan-card.recommended .plan-image {
    border-color: var(--vintage-green);
}

.item-count-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.item-count-badge.premium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.kit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plan-card:hover .kit-img {
    transform: scale(1.05);
}

.plan-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-icon i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* Specific kit icon styling */
.plan-icon i.fa-box {
    color: var(--kit-box) !important;
}

.plan-icon i.fa-camera {
    color: var(--kit-camera) !important;
}

.plan-icon i.fa-star {
    color: var(--kit-star) !important;
}

.plan-title {
    text-align: center;
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.plan-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1e40af;
}

.price-currency {
    font-size: 1.5rem;
    color: #1e40af;
    margin-left: 4px;
}

.price-tax {
    font-size: 1rem;
    color: #64748b;
    margin-left: 8px;
}

/* .plan-installment - removed as installment examples are deleted */

.plan-features h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.plan-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #374151;
    line-height: 1.5;
}

.plan-features i {
    color: #10b981;
    margin-top: 2px;
    flex-shrink: 0;
}

.plan-shipping {
    background: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #047857;
}

.btn-plan,
.btn-plan-recommended {
    width: 100%;
    padding: 16px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-plan {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
}

.btn-plan:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.btn-plan-recommended {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.btn-plan-recommended:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

/* Notice Section */
.pricing-notice {
    padding: 60px 0;
    background: #f8fafc;
}

.notice-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 12px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.notice-box h3 {
    color: #856404;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.notice-box ul {
    list-style: none;
    margin: 0;
}

.notice-box li {
    color: #856404;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.notice-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d97706;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
    background: #f8faff;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #e2e8f0;
}

.faq-question:hover {
    background: #eff6ff;
}

.faq-question h3 {
    color: #1e40af;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.faq-question i {
    color: #3b82f6;
}

.faq-answer {
    padding: 1.5rem;
    background: white;
}

.faq-answer p {
    color: #374151;
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #1e40af;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
    background: #f8faff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .pricing-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .plan-card {
        padding: 2rem 1.5rem;
    }
    
    .plan-card.recommended {
        transform: none;
        margin-bottom: 1rem;
    }
    
    .plan-card.recommended:hover {
        transform: translateY(-5px);
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .pricing-hero .hero-title {
        font-size: 2rem;
    }
    
    .pricing-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .plan-card {
        padding: 1.5rem 1rem;
    }
    
    .plan-image {
        height: 150px;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .notice-box {
        padding: 1.5rem;
    }
    
    .faq-question,
    .faq-answer {
        padding: 1rem;
    }
}