/* Storefront & Plans Styles */

/* Storefront & Plans Styles */

.storefront-header-content h2 {
    letter-spacing: -1px;
}

.storefront-tabs-wrapper {
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
}

.storefront-tabs-wrapper::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.storefront-tabs {
    display: inline-flex;
    background: var(--cp-sidebar-bg);
    padding: 0.4rem;
    border-radius: 50rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(108, 117, 125, 0.1);
}

[data-theme="dark"] .storefront-tabs {
    border-color: rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.storefront-tab-link {
    padding: 0.75rem 1.5rem;
    color: var(--cp-text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 50rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.storefront-tab-link:hover {
    color: var(--cp-text-main);
    background: rgba(13, 110, 253, 0.05);
}

.storefront-tab-link.active {
    background: var(--cp-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

[data-theme="dark"] .storefront-tab-link.active {
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

/* Pricing Card Dark Mode Overrides for Main Site Pricing Cards */
[data-theme="dark"] .pricing-card {
    background: var(--cp-sidebar-bg);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .pricing-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    border-color: rgba(13, 110, 253, 0.3);
}

[data-theme="dark"] .pricing-card .plan-header .plan-name {
    color: var(--cp-text-muted) !important;
}

[data-theme="dark"] .pricing-card .plan-header .price-wrapper .currency,
[data-theme="dark"] .pricing-card .plan-header .price-wrapper .price {
    color: var(--cp-text-main) !important;
}

[data-theme="dark"] .pricing-card .plan-header .price-wrapper .period {
    color: var(--cp-text-muted) !important;
}

[data-theme="dark"] .pricing-card .features-list li {
    color: var(--cp-text-main);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .pricing-card .features-list li .icon-wrapper {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .pricing-card .features-list li .icon-wrapper.bg-primary-subtle {
    background: rgba(13, 110, 253, 0.1) !important;
}

/* Featured (Pro) Card Dark Mode Override */
[data-theme="dark"] .pricing-card.pricing-featured {
    background: linear-gradient(180deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.02) 100%);
    border-color: rgba(13, 110, 253, 0.4);
    box-shadow: 0 15px 50px -10px rgba(13, 110, 253, 0.15);
}

[data-theme="dark"] .pricing-card.pricing-featured:hover {
    box-shadow: 0 25px 60px -15px rgba(13, 110, 253, 0.25);
}

[data-theme="dark"] .pricing-card.pricing-featured .plan-header .plan-name {
    color: var(--cp-primary) !important;
}

[data-theme="dark"] .pricing-card.pricing-featured .plan-header .price-wrapper .currency,
[data-theme="dark"] .pricing-card.pricing-featured .plan-header .price-wrapper .price {
    color: var(--cp-primary) !important;
}