﻿/* Product Info Page Styles */

/* ─── Page Hero ─── */
.pi-hero-section {
    background: linear-gradient(rgba(0,0,0,0.90), rgba(0,0,0,0.50)),
                url('../images/illustrations/product info hero.jpg') center/cover no-repeat;
    padding: 80px 0 70px;
    text-align: center;
    border-bottom: 3px solid #2563eb;
}
.pi-hero-inner { max-width: 780px; margin: 0 auto; }
.pi-hero-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
    border: 1px solid #2563eb;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.pi-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}
.pi-hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.90);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.pi-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-pi-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.btn-pi-primary:hover { background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%); transform: translateY(-2px); }
.btn-pi-secondary {
    background: transparent;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid rgba(37, 99, 235, 0.4);
    transition: border-color 0.2s, transform 0.2s;
}
.btn-pi-secondary:hover { border-color: #2563eb; color: #2563eb; background: rgba(37, 99, 235,0.08); transform: translateY(-2px); }

/* ─── Stats Bar ─── */
.pi-stats-bar {
    background: #e2e8f0;
    padding: 28px 0;
    border-bottom: 1px solid #222222;
}
.pi-stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.pi-stat { text-align: center; }
.pi-stat-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 6px;
}
.pi-stat-label {
    display: block;
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ─── Section Subtitle ─── */
.pi-section-sub {
    text-align: center;
    font-size: 15px;
    color: #64748b;
    margin-top: -18px;
    margin-bottom: 36px;
    line-height: 1.6;
}
.pi-section-sub a { color: #0f172a; font-weight: 600; text-decoration: underline; }

/* ─── Pricing Tiers ─── */
.pi-pricing-section {
    padding: 60px 0;
    background: #f1f5f9;
}
.pi-pricing-subtitle {
    text-align: center;
    font-size: 15px;
    color: #475569;
    margin-top: -20px;
    margin-bottom: 40px;
}
.pi-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.pi-price-card {
    background: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}
.pi-price-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-4px); }
.pi-price-featured {
    border-color: #2563eb;
    background: #f8fafc;
}
.pi-price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 50px;
    white-space: nowrap;
}
.pi-price-qty {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pi-price-featured .pi-price-qty { color: #64748b }
.pi-price-amount {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 4px;
}
.pi-price-featured .pi-price-amount { color: #2563eb; }
.pi-price-label { font-size: 12px; color: #64748b; margin-bottom: 20px; }
.pi-price-featured .pi-price-label { color: #64748b; }
.pi-price-cta {
    display: block;
    background: #ffffff;
    color: #0f172a;
    padding: 10px 0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}
.pi-price-cta:hover { background: #e5e7eb; }
.pi-price-featured .pi-price-cta { background: #2563eb; color: #ffffff; }
.pi-price-featured .pi-price-cta:hover { background: linear-gradient(135deg, #60a5fa, #2563eb); }

/* ─── Responsive additions ─── */
@media (max-width: 768px) {
    .pi-hero-section { padding: 64px 20px 54px; min-height: 300px; background-position: center top; }
    .pi-hero-title { font-size: 28px; }
    .pi-hero-sub { font-size: 14px; }
    .pi-pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pi-stats-grid { gap: 16px; }
    .pi-stat-num { font-size: 24px; }
}
@media (max-width: 480px) {
    .pi-hero-section { padding: 48px 16px 40px; min-height: 260px; }
    .pi-hero-title { font-size: 22px; letter-spacing: -0.3px; }
    .pi-hero-sub { font-size: 13px; }
    .pi-pricing-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* Main Content */
.product-info-main {
    background-color: #f8fafc;
    min-height: 100vh;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Title Section */
.page-title-section {
    padding: 40px 0 30px;
    background-color: #f1f5f9;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin: 0;
}

/* Section Heading */
.section-heading {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 30px;
}

/* Supported States Section */
.supported-states-section {
    padding: 50px 0;
    background-color: #f8fafc;
    overflow: hidden;
}

.carousel-wrapper {
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.carousel-row {
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll-left 20s linear infinite;
    width: fit-content;
}

.carousel-track-reverse {
    animation: scroll-right 20s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.id-card {
    flex-shrink: 0;
    width: 280px;
    height: 180px;
    background-color: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: perspective(1000px) rotateY(-5deg);
}

.id-card:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.id-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.states-note {
    text-align: center;
    font-size: 14px;
    color: #334155;
    margin-top: 20px;
}

.highlight-red {
    color: #dc2626;
    font-weight: 600;
}

/* Pricing Notice Section */
.pricing-notice-section {
    padding: 30px 0;
    background-color: #fff9e6;
}

.pricing-notice-box {
    background-color: #fffbf0;
    border: 2px solid #ffd700;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.pricing-text {
    font-size: 16px;
    color: #334155;
    margin: 0;
    font-weight: 500;
}

/* ── Product Features Section ───────────────────────────── */
.product-features-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.product-features-section .section-heading {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #dbe4ef;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(37, 99, 235, 0.18);
    border-color: rgba(37, 99, 235, 0.22);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-media {
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #0f172a;
    position: relative;
}

.feature-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-media video {
    transform: scale(1.05);
}

.feat-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #2563eb;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 11px;
    border-radius: 50px;
    z-index: 3;
    line-height: 1.5;
}

.feature-card-body {
    padding: 24px;
}

.feature-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

.feature-image-placeholder {
    width: 100%;
    height: 150px;
    background-color: #e2e8f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-bottom: 15px;
}

/* Product Parameters Section */
.product-parameters-section {
    padding: 50px 0;
    background-color: #f1f5f9;
}

.parameters-banner {
    background-color: #ff3366;
    color: #0f172a;
    padding: 15px 30px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.parameters-banner::before,
.parameters-banner::after {
    content: '|||';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
}

.parameters-banner::before {
    left: 20px;
}

.parameters-banner::after {
    right: 20px;
}

.banner-text {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.parameters-content {
    margin-top: 40px;
    text-align: center;
}

.parameter-description-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.parameter-notice {
    margin-top: 30px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.notice-text {
    font-size: 16px;
    color: #dc2626;
    font-weight: 600;
    line-height: 1.8;
    margin: 0;
    padding: 0 20px;
}

.id-mockup-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 40px;
}

.id-mockup-placeholder {
    width: 100%;
    height: 400px;
    background-color: #dbe4ef;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 14px;
    border: 2px solid #cbd5e1;
}

.callout {
    position: absolute;
    display: flex;
    align-items: center;
}

.callout-line {
    width: 60px;
    height: 2px;
    background-color: #e5e7eb;
}

.callout-label {
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 5px 10px;
    font-size: 12px;
    color: #334155;
    white-space: nowrap;
    border-radius: 4px;
}

.callout-1 { top: 10%; left: -80px; }
.callout-2 { top: 30%; right: -80px; }
.callout-3 { top: 50%; left: -80px; }
.callout-4 { top: 70%; right: -80px; }
.callout-5 { bottom: 20%; left: -80px; }
.callout-6 { bottom: 5%; right: -80px; }

.parameters-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.parameters-description p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
}

/* Shipping Status Section */
.shipping-status-section {
    padding: 50px 0;
    background-color: #f8fafc;
}

.shipping-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.shipping-image-placeholder {
    width: 100%;
    height: 350px;
    background-color: #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 14px;
    border: 1px solid #cbd5e1;
}

.shipping-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.shipping-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shipping-info-block {
    background-color: #f1f5f9;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #2563eb;
}

.info-block-title {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.info-block-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Package Receipt Section */
.package-receipt-section {
    padding: 50px 0;
    background-color: #f1f5f9;
}

.receipt-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.receipt-text {
    font-size: 14px;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 20px;
}

.receipt-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.receipt-list li {
    font-size: 14px;
    color: #64748b;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.receipt-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 20px;
    line-height: 1;
}

.receipt-illustration-placeholder {
    width: 100%;
    height: 350px;
    background-color: #e8f4ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 14px;
    border: 1px solid #d0e8ff;
}

.receipt-illustration {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* FAQ Section */
.faq-section {
    padding: 50px 0 80px;
    background-color: #f8fafc;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f1f5f9;
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    background-color: #dbe4ef;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #cbd5e1;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: #64748b;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #f8fafc;
    color: #0f172a;
    padding: 50px 0 20px;
    border-top: 1px solid #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #2563eb;
}

.footer-column ul li {
    color: #64748b;
    font-size: 14px;
}

.footer-seo-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ffffff;
}

.footer-seo-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
    text-align: center;
}

.footer-keywords {
    text-align: center;
    line-height: 2;
    color: #64748b;
    font-size: 14px;
}

.footer-keywords a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-keywords a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ffffff;
}

.footer-bottom p {
    color: #64748b;
    font-size: 13px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .states-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .shipping-content,
    .receipt-content {
        grid-template-columns: 1fr;
    }

    .callout-1, .callout-3, .callout-5 {
        left: 10px;
    }

    .callout-2, .callout-4, .callout-6 {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 24px;
    }

    .section-heading {
        font-size: 20px;
    }

    .states-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .state-item {
        min-height: 44px;
        padding: 10px 12px;
        font-size: 13px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-features-section .section-heading {
        font-size: 26px;
    }

    .feature-media {
        height: 180px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-keywords {
        font-size: 13px;
        line-height: 1.8;
    }

    .id-mockup-container {
        padding: 20px;
    }

    .callout {
        display: none;
    }

    .faq-item {
        min-height: 44px;
    }

    .faq-question {
        padding: 14px 40px 14px 0;
        font-size: 14px;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 0 10px;
    }

    .page-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .section-heading {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .section-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .states-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .state-item {
        padding: 8px 10px;
        font-size: 12px;
        min-height: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-features-section .section-heading {
        font-size: 22px;
    }

    .feature-media {
        height: 190px;
    }

    .feature-card-body {
        padding: 18px;
    }

    .feature-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .feature-description {
        font-size: 13px;
    }

    .id-mockup-container {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .id-mockup-placeholder {
        height: 150px;
        font-size: 12px;
    }

    .parameters-description p {
        font-size: 13px;
    }

    .faq-item {
        padding: 12px 15px;
        min-height: 40px;
    }

    .faq-question {
        font-size: 13px;
        padding: 12px 35px 12px 0;
    }

    .faq-answer {
        font-size: 12px;
        padding-top: 10px;
    }

    .faq-toggle {
        font-size: 18px;
        width: 30px;
        height: 30px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .content-container {
        padding: 0 8px;
    }

    .page-title {
        font-size: 16px;
    }

    .section-heading {
        font-size: 15px;
    }

    .section-description {
        font-size: 12px;
    }

    .states-grid {
        gap: 6px;
    }

    .state-item {
        padding: 6px 8px;
        font-size: 11px;
        min-height: 38px;
    }

    .feature-item {
        padding: 12px;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .feature-title {
        font-size: 13px;
    }

    .feature-description {
        font-size: 11px;
    }

    .id-mockup-container {
        padding: 15px 10px;
    }

    .id-mockup-placeholder {
        height: 130px;
        font-size: 11px;
    }

    .faq-item {
        min-height: 38px;
    }

    .faq-question {
        font-size: 12px;
        padding: 10px 32px 10px 0;
    }

    .faq-answer {
        font-size: 11px;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .footer-keywords {
        font-size: 12px;
        line-height: 1.6;
    }

    .footer-keywords a {
        display: inline-block;
        margin: 2px 0;
    }
}

