/* Product Info Page Styles */

/* Main Content */
.product-info-main {
    background-color: #ffffff;
    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: #f8f8f8;
}

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

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

/* Supported States Section */
.supported-states-section {
    padding: 50px 0;
    background-color: #ffffff;
    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: #ffffff;
    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: #333333;
    margin-top: 20px;
}

.highlight-red {
    color: #ff0000;
    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: #333333;
    margin: 0;
    font-weight: 500;
}

/* Product Features Section */
.product-features-section {
    padding: 50px 0;
    background-color: #ffffff;
}

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

.feature-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.feature-media {
    width: 100%;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #f0f0f0;
}

.feature-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

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

.parameters-banner {
    background-color: #ff3366;
    color: #ffffff;
    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: #ff0000;
    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: #e8e8e8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 14px;
    border: 2px solid #d0d0d0;
}

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

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

.callout-label {
    background-color: #ffffff;
    border: 1px solid #333333;
    padding: 5px 10px;
    font-size: 12px;
    color: #333333;
    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: #666666;
    line-height: 1.8;
}

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

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

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

.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: #f8f8f8;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #c4ff0d;
}

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

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

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

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

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

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

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

.receipt-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c4ff0d;
    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: #999999;
    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: #ffffff;
}

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

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

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

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

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

.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: #666666;
    line-height: 1.8;
    margin: 0;
}

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

.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: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

.footer-bottom p {
    color: #888888;
    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);
    }

    .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: 1fr;
    }

    .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: 12px;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
        margin-bottom: 8px;
    }

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

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

    .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;
    }
}

