SET FOREIGN_KEY_CHECKS = 0;
/* =============================================
   Techoper - Manual Pricing Page Styles
   Clean, modern design for regional pricing
   ============================================= */

/* Page Container */
.pricing-page-container {
    padding: 2rem 0 4rem;
    background: #fff;
    /* White background like other pages */
    min-height: calc(100vh - 200px);
}

/* Page Title Section */
.page-title-section {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* Product Header Section */
.product-header-section {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-image-wrapper {
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: inline-block;
}

.mobile-product-image {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.mobile-product-image:hover {
    transform: scale(1.05);
}

.product-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.action-buttons-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-action {
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e5e5e5;
    color: #333;
}

.btn-action:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.btn-compare,
.btn-images,
.btn-specs {
    background: #e5e5e5;
    color: #333;
    border: none;
}

.btn-compare:hover,
.btn-images:hover,
.btn-specs:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Intro Section */
.pricing-intro-section {
    background: #f0f0f0;
    /* Gray background */
    color: #333;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.intro-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Regional Pricing Sections */
.regional-pricing-sections {
    margin: 2rem 0;
}

.region-pricing-block {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.region-pricing-block:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.region-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.region-flag {
    font-size: 2.5rem;
}

.region-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

/* Pricing Table */
.pricing-table-wrapper {
    overflow-x: auto;
}

.pricing-table {
    margin-bottom: 0;
    width: 100%;
}

.pricing-table thead {
    background: #f7fafc;
}

.pricing-table th {
    font-weight: 600;
    color: #4a5568;
    border-bottom: 2px solid #e2e8f0;
    padding: 1rem;
    text-align: left;
}

.pricing-row {
    transition: background 0.2s ease;
}

.pricing-row:hover {
    background: #f7fafc;
}

.pricing-table td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #e2e8f0;
}

/* Store Cell */
.store-cell {
    width: 30%;
}

.store-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.store-icon {
    font-size: 1.5rem;
}

.amazon-icon {
    color: #ff9900;
}

.flipkart-icon {
    color: #2874f0;
}

.store-name {
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
}

/* Variant Cell */
.variant-cell {
    width: 30%;
    font-size: 0.95rem;
    color: #4a5568;
}

/* Price Cell */
.price-cell {
    width: 40%;
}

.price-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.price-link:hover {
    opacity: 0.8;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #dc2626;
    /* RED COLOR as required */
}

.price-link:hover .price-value {
    color: #b91c1c;
}

/* No Pricing Alert */
.no-pricing-alert {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: #856404;
}

.no-pricing-alert i {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 5px solid #f59e0b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.disclaimer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.disclaimer-content {
    color: #78350f;
    line-height: 1.7;
    font-size: 0.95rem;
}

.disclaimer-content p {
    margin-bottom: 1rem;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-page-title {
        font-size: 1.5rem;
    }

    .mobile-image-wrapper {
        margin-bottom: 1.5rem;
    }

    .mobile-product-image {
        max-width: 150px;
    }

    .product-name {
        font-size: 1.4rem;
        text-align: center;
    }

    .action-buttons-group {
        justify-content: center;
    }

    .btn-action {
        flex: 1 1 auto;
        min-width: 100px;
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .region-flag {
        font-size: 2rem;
    }

    .region-title {
        font-size: 1.2rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.7rem 0.5rem;
        font-size: 0.9rem;
    }

    .store-icon {
        font-size: 1.2rem;
    }

    .price-value {
        font-size: 1.2rem;
    }

    .intro-heading {
        font-size: 1.2rem;
    }

    .intro-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .pricing-page-container {
        padding: 1rem 0 2rem;
    }

    .product-header-section {
        padding: 1.5rem;
    }

    .pricing-intro-section {
        padding: 1.5rem;
    }

    .region-pricing-block {
        padding: 1rem;
    }

    .action-buttons-group {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-action {
        width: auto;
        padding: 0.6rem 1.2rem;
    }

    /* Stack table on very small screens */
    .pricing-table {
        font-size: 0.85rem;
    }

    .store-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}

/* Print Styles */
@media print {

    .action-buttons-group,
    header,
    footer {
        display: none;
    }

    .pricing-page-container {
        background: #fff;
    }

    .region-pricing-block {
        box-shadow: none;
        border: 1px solid #e2e8f0;
        page-break-inside: avoid;
    }

    .price-value {
        color: #000 !important;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.region-pricing-block {
    animation: fadeInUp 0.4s ease;
}
SET FOREIGN_KEY_CHECKS = 1;