/* MyShop Coffee Pricing Page Styles */

/* Reset and Base */
.myshop-pricing-wrapper {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.myshop-pricing-wrapper * {
    box-sizing: border-box;
}

/* Hero Section */
.pricing-hero {
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 40px; /* Added spacing to prevent menu overlap */
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>') center/50px 50px;
    transform: rotate(45deg);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    color: #a67c52;
    flex-shrink: 0;
}

/* Pricing Plans */
.pricing-plans {
    padding: 80px 20px;
    background: #f9f5f0;
}

.plans-header {
    text-align: center;
    margin-bottom: 60px;
}

.plans-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 15px;
}

.plans-header p {
    font-size: 18px;
    color: #666;
}

.pricing-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Style overrides for third-party pricing table */
.pricing-table-wrapper .wrc-pricing-table {
    font-family: 'Poppins', sans-serif !important;
}

.pricing-table-wrapper .wrc-pricing-table .pricing-column {
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.pricing-table-wrapper .wrc-pricing-table .pricing-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
}

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

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 2px solid #a67c52;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #a67c52;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 15px;
}

.price .amount {
    font-size: 48px;
    font-weight: 700;
    color: #a67c52;
}

.price .period {
    font-size: 18px;
    color: #666;
    display: block;
}

.card-description {
    color: #666;
    font-size: 16px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
}

.check-icon {
    color: #a67c52;
    flex-shrink: 0;
    margin-top: 2px;
}

.card-footer {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background: #a67c52;
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(166, 124, 82, 0.3);
}

.btn-primary:hover {
    background: #8c6744;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 124, 82, 0.4);
}

.featured .btn-primary {
    background: #2c1810;
}

.featured .btn-primary:hover {
    background: #1a0f08;
}

.footer-note {
    color: #999;
    font-size: 14px;
    margin-top: 10px;
}

/* How It Works */
.how-it-works {
    padding: 80px 20px;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #a67c52;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 15px;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #f9f5f0;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #a67c52 0%, #8c6744 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    background: white;
    color: #a67c52;
    padding: 18px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* Company Details Section */
.company-details-section {
    padding: 30px 20px;
    background: #f9f5f0;
    text-align: center;
    border-top: 1px solid #e0d7ce;
}

.company-details-section p {
    font-size: 12px;
    color: #666;
    margin: 3px 0;
    line-height: 1.4;
}

.company-name {
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-header h2,
    .how-it-works h2,
    .faq-section h2,
    .registration-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .price .amount {
        font-size: 36px;
    }
}

/* Print Styles */
@media print {
    .myshop-pricing-wrapper {
        color: black;
    }
    
    .pricing-hero,
    .cta-section {
        background: none;
        color: black;
    }
    
    .btn-primary,
    .btn-cta,
    .registration-section {
        display: none;
    }
}