/* 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;
    }
}
