/* Product Info Tabs - theme colors and Space Grotesk */
@import url('theme-color.css');

.product-info-tabs-section {
    font-family: 'Space Grotesk', sans-serif;
}

.product-info-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-info-tab {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    background: none;
    border: none;
    padding: 0 0 0.75rem;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.product-info-tab:hover {
    color: var(--accent-blue);
}

.product-info-tab--active {
    color: var(--text-dark);
}

.product-info-tab--active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 2px;
}

.product-info-tabs-divider {
    height: 1px;
    background: var(--border-light);
    margin-top: -1px;
}

.product-info-tab-content {
    min-height: 80px;
}

.product-info-pane {
    font-family: 'Space Grotesk', sans-serif;
}

.product-info-pane-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-bottom: 1.25rem;
}

.product-info-pane-body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-medium);
    line-height: 1.7;
}

.product-info-pane-body p {
    font-family: 'Space Grotesk', sans-serif;
}

[x-cloak] {
    display: none !important;
}

@media (max-width: 768px) {
    .product-info-tabs {
        gap: 1rem;
    }

    .product-info-tab {
        font-size: 0.9375rem;
        padding-bottom: 0.5rem;
    }

    .product-info-pane-title {
        font-size: 1.25rem;
    }
}

/* Shipping Charges Section */
.shipping-charges-section {
    padding: 1.5rem 0;
}

.ship-card {
    background: var(--primary-light);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ship-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 4px 12px rgba(77, 106, 146, 0.1);
    transform: translateY(-2px);
}

.ship-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4D6A92 0%, #5A8FA0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.ship-icon i {
    font-size: 1.5rem;
    color: white;
}

.ship-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.ship-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.ship-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-top: auto;
}

.shipping-table-wrapper {
    margin-top: 2rem;
}

.shipping-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--primary-light);
    border-radius: 8px;
    overflow: hidden;
}

.shipping-table thead {
    background: var(--tertiary-light);
}

.shipping-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 2px solid var(--border-light);
}

.shipping-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-medium);
}

.shipping-table tbody tr:last-child td {
    border-bottom: none;
}

.shipping-table tbody tr:hover {
    background: var(--secondary-light);
}

/* FAQ Section */
.faq-section {
    padding: 1.5rem 0;
}

.faq-sidebar {
    position: sticky;
    top: 2rem;
    padding: 2rem;
    background: var(--secondary-light);
    border-radius: 12px;
}

.faq-ghost-text {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(77, 106, 146, 0.05);
    line-height: 1;
    margin-bottom: -2rem;
    font-family: 'Barlow Condensed', sans-serif;
}

.faq-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'Barlow', sans-serif;
}

.faq-sub {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.faq-contact-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #4D6A92 0%, #5A8FA0 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 106, 146, 0.3);
    color: white;
    text-decoration: none;
}

.faq-right {
    padding-left: 1rem;
}

.faq-item2 {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 0;
}

.faq-q2 {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-q2:hover {
    color: var(--accent-blue);
}

.faq-q2.active {
    color: var(--accent-blue);
}

.faq-num {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-light);
    min-width: 30px;
    transition: color 0.4s ease;
}

.faq-q2.active .faq-num,
.faq-num.active {
    color: var(--accent-blue);
}

.faq-q2-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.4s ease;
}

.faq-q2.active .faq-q2-text {
    color: var(--accent-blue);
}

.faq-arr {
    display: flex;
    align-items: center;
    transition: transform 0.5s ease;
    color: var(--text-light);
}

.faq-q2.active .faq-arr,
.faq-arr.active {
    transform: rotate(180deg);
    color: var(--accent-blue);
}

.faq-a2 {
    overflow: hidden;
    padding: 0 0 1.25rem 3rem;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.faq-a2[x-cloak] {
    display: none !important;
}

.faq-a2 p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .ship-card {
        margin-bottom: 1.5rem;
    }

    .faq-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .faq-right {
        padding-left: 0;
    }

    .faq-a2 {
        padding-left: 2.5rem;
    }

    .faq-a2:not([x-cloak]) {
        padding-left: 2.5rem;
    }

    .faq-heading {
        font-size: 2rem;
    }

    .faq-ghost-text {
        font-size: 5rem;
    }
}