/**
 * Modern Price Box CSS
 * 
 * Responsive price box styling that matches the Crafto theme
 * and provides a professional look for product variations
 */

/* ====================================================================
   PRICE BOX SECTION
   ==================================================================== */

#preise {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

#preise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23dee2e6" opacity="0.3"/></svg>') repeat;
    background-size: 50px 50px;
    pointer-events: none;
}

.pricing-section-title {
    position: relative;
    z-index: 2;
}

/* ====================================================================
   DURATION SELECTOR
   ==================================================================== */

.duration-selector {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    overflow: hidden;
    background: white;
    display: inline-flex;
    position: relative;
    z-index: 2;
    border: 1px solid #2d4566;
}

.duration-selector .btn-check {
    display: none;
}

.duration-selector .btn {
    border: none !important;
    border-radius: 0 !important;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #2d4566 !important;
    background: white !important;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border-right: 1px solid #2d4566;
}

.duration-selector .btn:hover {
    color: #2d4566 !important;
    background: #f8f9fa !important;
    border-color: transparent !important;
}

.duration-selector .btn-check:checked + .btn {
    background: #2d4566 !important;
    color: #fff !important;
    border-color: transparent !important;
    transform: none;
    box-shadow: none;
}

.duration-selector .btn:first-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.duration-selector .btn:last-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

/* ====================================================================
   PRICE CARDS
   ==================================================================== */

/* Override Bootstrap column padding for price cards */
#preise .col-lg-3,
#preise .col-md-6 {
    padding-right: 10px;
    padding-left: 10px;
    display: flex; /* Make columns flex containers */
}

/* Ensure price cards container uses flexbox for equal heights */
#preise .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; /* Ensure all columns stretch to same height */
}

.price-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #0286dd;
}

.price-card.popular-card {
    border-color: #4CAF50;
    transform: scale(1.05);
    z-index: 2;
}

.price-card.popular-card:hover {
    transform: scale(1.05) translateY(-8px);
}

/* ====================================================================
   BANNERS AND BADGES
   ==================================================================== */

.popular-badge {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    padding: 6px 24px;
    border-radius: 0 0 12px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
    z-index: 3;
}

.variation-banner {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff6b6b;
    color: white;
    padding: 8px 16px;
    border-radius: 0 0 0 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    z-index: 3;
}

/* ====================================================================
   CARD HEADER - COMPREHENSIVE EQUAL HEIGHT SOLUTION
   ==================================================================== */

.card-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #f1f3f4;
    background: #fafbfc;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align content to bottom for consistent positioning */
    position: relative;
    /* Fixed total height to ensure consistency across all variations */
    min-height: 160px; /* Accounts for largest possible combination */
}

/* Cards with popular badge: reduce top padding since badge provides spacing */
.popular-card .card-header {
    margin-top: 28px; /* Space for the popular badge */
    padding-top: 24px; /* Standard top padding */
    min-height: 132px; /* Compensate for margin-top */
}

/* Cards without popular badge: add extra top padding to match */
.price-card:not(.popular-card) .card-header {
    padding-top: 52px; /* Extra padding to compensate for missing badge */
    min-height: 160px;
}

/* Ensure variation description always reserves space */
.variation-name {
    font-size: 24px;
    font-weight: 700;
    color: #2d4566;
    margin-bottom: 8px;
}

/* Always reserve space for description, even if empty */
.card-header::after {
    content: '';
    min-height: 22px; /* Reserve space for potential description */
    display: block;
}

/* When description exists, remove the pseudo-element space */
.card-header:has(.variation-description)::after {
    display: none;
}

.variation-description {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 0;
    min-height: 22px; /* Consistent space whether text exists or not */
}

/* Duplicate definitions removed - already defined in header section above */

/* ====================================================================
   PRICING SECTION - CONSISTENT POSITIONING
   ==================================================================== */

.card-pricing {
    padding: 24px;
    background: white;
    border-bottom: 1px solid #f1f3f4;
    /* Ensure consistent positioning regardless of above elements */
    margin-top: 0; /* Reset any inherited margins */
}

.price-display {
    margin-bottom: 12px;
}

.monthly-price {
    font-size: 36px;
    font-weight: 700;
    color: #2d4566;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: #6c757d;
    font-weight: 400;
}

.total-price {
    font-size: 14px;
    margin-bottom: 0px;
    line-height: 12px;
}

.total-amount {
    font-weight: 600;
    color: #495057;
}

.total-period {
    color: #6c757d;
}

.savings-badge {
    display: inline-block;
   
    color: #ec750b;
    padding: 0px 0px;
    font-size: 14px;
    font-weight: 600;
    

   
}

/* ====================================================================
   FREE TRIAL BADGE (TOP POSITION) - COMPREHENSIVE EQUAL HEIGHT
   ==================================================================== */

/* Container for free trial badge area - ALWAYS takes up consistent space */
.free-trial-area {
    min-height: 60px; /* Consistent space for all cards regardless of content */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ensures consistent spacing even when empty */
}

.free-trial-badge-top {
    background-color: #ec750b;
    color: white;
    width: 100%;
    padding: 1px 2px; /* Increased padding for better balance */
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(236, 117, 11, 0.3);
}

.free-trial-badge-top i {
    margin-right: 6px;
}

/* Ensure empty free trial areas still take up the same space */
.free-trial-area:empty {
    min-height: 60px; /* Same as above */
}

/* Alternative: Use pseudo-element to ensure consistent space */
.free-trial-area::after {
    content: '';
    min-height: 60px;
    width: 1px; /* Invisible spacer */
}

/* Hide spacer when content exists */
.free-trial-area:not(:empty)::after {
    display: none;
}

/* ====================================================================
   FEATURES SECTION
   ==================================================================== */

.card-features {
    flex: 1;
    padding: 0 1px;
    background: white;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 20px;
}

.features-list li {
    margin-bottom: 0 !important;
    padding-top: 5px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 1px 0;
    border-bottom: 1px solid #f8f9fa;
}

.feature-item:last-child {
    border-bottom: none;
}


.feature-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    margin-right: 12px;
    color: #28a745;
}

.feature-item i.bi-check {
    color: #2d4566;
}

.feature-text {
    flex: 1;
    font-size: 14px;
    color: #495057;
    line-height: 1.4;
}

.feature-text strong {
    color: #2d4566;
    font-weight: 600;
}

.feature-info {
    color: #6c757d;
    font-size: 14px;
    margin-left: 8px;
    transition: color 0.3s ease;
}

.feature-info:hover {
    color: #0286dd;
}

/* ====================================================================
   EXPANDABLE FEATURES
   ==================================================================== */

.show-more-features {
    text-align: center;
    padding: 16px 0 8px;
    border-bottom: none !important;
}

.show-more-link {
    color: #0286dd;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.show-more-link:hover {
    color: #0260a4;
    text-decoration: none;
}

.show-more-link i {
    transition: transform 0.3s ease;
}

.show-more-link.expanded i {
    transform: rotate(180deg);
}

.expandable-features {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* ====================================================================
   FREE TRIAL AND SETUP FEE
   ==================================================================== */

.free-trial-badge {
    background: linear-gradient(45deg, #17a2b8, #138496);
    color: white;
    padding: 8px 16px;
    margin: 16px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(23, 162, 184, 0.3);
}

/* Container for setup fee area - always takes up space */
.setup-fee-area {
    min-height: 40px; /* Reserve space for setup fee */
    padding: 0 24px 16px;
    text-align: center;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.setup-fee {
    color: #6c757d;
}

/* Empty state for cards without setup fee */
.setup-fee-area:empty {
    min-height: 40px; /* Still reserve the space */
}

/* ====================================================================
   ORDER BUTTON
   ==================================================================== */

.card-action {
    padding: 24px;
    background: #fafbfc;
    border-top: 1px solid #f1f3f4;
    margin-top: auto;
}

.order-button {
    background-color: #2d4566;
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 180px;
    text-decoration: none;
    display: inline-block;
}

.order-button:hover {
    background-color: white;
    border: 1px solid #2d4566;
    color: #2d4566;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Arrow button animation styles - inherit from general btn-with-arrow styles */
.order-button.btn-with-arrow .btn-text {
    transition: all 0.3s ease;
    display: inline-block;
}

.order-button.btn-with-arrow .arrow-right {
    margin-left: 8px;
    transition: all 0.3s ease;
    opacity: 1;
}

.order-button.btn-with-arrow .arrow-left {
    margin-right: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    position: absolute;
    left: 16px;
    transform: translateY(3px);
}

.order-button.btn-with-arrow:hover .btn-text {
    transform: translateX(16px);
}

.order-button.btn-with-arrow:hover .arrow-right {
    opacity: 0;
}

.order-button.btn-with-arrow:hover .arrow-left {
    opacity: 1;
}

/* ====================================================================
   TOP ORDER BUTTON (Second Button)
   ==================================================================== */

.order-button-top {
    background-color: #2d4566;
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 180px;
    text-decoration: none;
    display: inline-block;
}

.order-button-top:hover {
    background-color: white;
    border: 1px solid #2d4566;
    color: #2d4566;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Arrow button animation styles for top button */
.order-button-top.btn-with-arrow .btn-text {
    transition: all 0.3s ease;
    display: inline-block;
}

.order-button-top.btn-with-arrow .arrow-right {
    margin-left: 8px;
    transition: all 0.3s ease;
    opacity: 1;
}

.order-button-top.btn-with-arrow .arrow-left {
    margin-right: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    position: absolute;
    left: 16px;
    transform: translateY(3px);
}

.order-button-top.btn-with-arrow:hover .btn-text {
    transform: translateX(16px);
}

.order-button-top.btn-with-arrow:hover .arrow-right {
    opacity: 0;
}

.order-button-top.btn-with-arrow:hover .arrow-left {
    opacity: 1;
}

/* ====================================================================
   RESPONSIVE DESIGN
   ==================================================================== */

/* Large screens */
@media (min-width: 1200px) {
    .price-card {
        margin-bottom: 0;
    }
    
    .popular-card {
        transform: scale(1.08);
    }
    
    .popular-card:hover {
        transform: scale(1.08) translateY(-8px);
    }
}

/* Medium screens */
@media (max-width: 991.98px) {
    .duration-selector {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .duration-selector .btn {
        min-width: 100px;
        flex: 1;
    }
    
    .price-card {
        margin-bottom: 24px;
    }
    
    .popular-card {
        transform: none;
    }
    
    .popular-card:hover {
        transform: translateY(-8px);
    }
}

/* Small screens */
@media (max-width: 767.98px) {
    .duration-selector {
        width: 100%;
        max-width: 400px;
    }
    
    .duration-selector .btn {
        padding: 10px 12px;
        font-size: 13px;
        font-weight: 600;
    }
    
    .card-header {
        padding: 20px 20px 12px;
        min-height: 140px; /* Reduced but still consistent min-height for mobile */
    }
    
    .popular-card .card-header {
        min-height: 112px; /* Account for popular badge on mobile */
    }
    
    /* Adjust spacing for non-popular cards on mobile */
    .price-card:not(.popular-card) .card-header {
        padding-top: 44px; /* Reduced extra padding for mobile */
        min-height: 140px;
    }
    
    .free-trial-area {
        min-height: 48px; /* Reduced but consistent space for mobile */
        margin-bottom: 16px;
    }
    
    .free-trial-area::after {
        min-height: 48px; /* Match reduced mobile height */
    }
    
    .setup-fee-area {
        min-height: 32px; /* Reduced space for mobile */
    }
    
    .card-pricing {
        padding: 20px;
    }
    
    .card-features {
        padding: 0 20px;
    }
    
    .card-action {
        padding: 20px;
    }
    
    .monthly-price {
        font-size: 28px;
    }
    
    .variation-name {
        font-size: 20px;
    }
    
    .order-button {
        padding: 8px 16px;
        font-size: 12px;
        max-width: 150px;
    }
    
    .order-button-top {
        padding: 8px 16px;
        font-size: 12px;
        max-width: 150px;
    }
}

/* Extra small screens */
@media (max-width: 575.98px) {
    .duration-selector .btn {
        padding: 8px 10px;
        font-size: 12px;
        min-width: 60px;
        font-weight: 600;
    }
    
    .card-header {
        padding: 16px 16px 12px;
        min-height: 120px; /* Further reduced but consistent for extra small screens */
    }
    
    .popular-card .card-header {
        min-height: 92px; /* Account for popular badge on extra small screens */
    }
    
    /* Adjust spacing for non-popular cards on extra small screens */
    .price-card:not(.popular-card) .card-header {
        padding-top: 40px; /* Further reduced extra padding for extra small screens */
        min-height: 120px;
    }
    
    .free-trial-area {
        min-height: 40px; /* Further reduced for extra small screens */
    }
    
    .free-trial-area::after {
        min-height: 40px; /* Match extra small height */
    }
    
    .card-pricing {
        padding: 16px;
    }
    
    .free-trial-badge-top {
        font-size: 11px;
        padding: 4px 8px;
        margin-bottom: 8px;
    }
    
    .card-features {
        padding: 0 16px;
    }
    
    .card-action {
        padding: 16px;
    }
    
    .card-action-top {
        padding: 16px 16px 0 !important;
    }
    
    .monthly-price {
        font-size: 24px;
    }
    
    .variation-name {
        font-size: 18px;
    }
    
    .feature-item {
        padding: 10px 0;
    }
    
    .feature-item i {
        font-size: 14px;
        width: 18px;
        margin-right: 10px;
    }
    
    .feature-text {
        font-size: 13px;
    }
    
    .popular-badge {
        font-size: 11px;
        padding: 4px 16px;
    }
    
    .order-button-top {
        padding: 6px 12px;
        font-size: 11px;
        max-width: 120px;
    }
    
    .order-button {
        padding: 6px 12px;
        font-size: 11px;
        max-width: 120px;
    }
}

/* ====================================================================
   ANIMATIONS AND TRANSITIONS
   ==================================================================== */

/* Smooth loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-card {
    animation: fadeInUp 0.6s ease forwards;
}

.price-card:nth-child(1) { animation-delay: 0.1s; }
.price-card:nth-child(2) { animation-delay: 0.2s; }
.price-card:nth-child(3) { animation-delay: 0.3s; }
.price-card:nth-child(4) { animation-delay: 0.4s; }

/* Pulse animation for popular card */
.popular-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #4CAF50;
    border-radius: 12px;
    animation: pulse 2s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ====================================================================
   LOADING STATES
   ==================================================================== */

.price-card.loading {
    pointer-events: none;
    opacity: 0.6;
}

.price-card.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0286dd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ====================================================================
   ACCESSIBILITY
   ==================================================================== */

/* Focus styles */
.duration-selector .btn:focus {
    outline: 2px solid #0286dd;
    outline-offset: 2px;
}

.order-button:focus {
    outline: 2px solid #0286dd;
    outline-offset: 2px;
}

.show-more-link:focus {
    outline: 2px solid #0286dd;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .price-card,
    .order-button,
    .duration-selector .btn,
    .show-more-link i {
        transition: none;
    }
    
    .price-card {
        animation: none;
    }
    
    .popular-card::after {
        animation: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .price-card {
        border: 2px solid #000;
    }
    
    .popular-card {
        border: 3px solid #000;
    }
    
    .feature-item {
        border-bottom: 2px solid #000;
    }
}

/* Tab Mobile Selector */
.tab-mobile-container {
    display: none;
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.tab-mobile-toggle {
    width: 100%;
    padding: 12px 20px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-mobile-toggle:hover {
    background-color: #e9ecef;
}

.tab-mobile-toggle span {
    color: #2d4566;
    font-weight: bold;
}

.tab-mobile-toggle i {
    color: #2d4566;
}

/* Slide-up Menu Overlay */
.tab-slideup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-slideup-overlay.show {
    display: block;
    opacity: 1;
}

/* Slide-up Menu */
.tab-slideup-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.tab-slideup-menu.show {
    transform: translateY(0);
}

/* Slide-up Header */
.tab-slideup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #dee2e6;
}

.tab-slideup-header h5 {
    margin: 0;
    color: #2d4566;
    font-size: 18px;
    font-weight: bold;
}

.tab-slideup-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.tab-slideup-close:hover {
    background-color: #f8f9fa;
}

/* Slide-up Content */
.tab-slideup-content {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

/* Slide-up Items */
.tab-slideup-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    color: #2d4566;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

a.tab-slideup-item {
    display: flex;
    text-decoration: none;
}

.tab-slideup-item:hover {
    background-color: #f8f9fa;
    color: #2d4566;
}

.tab-slideup-item.active {
    background-color: #e8f4fd;
    cursor: default;
}

.tab-slideup-item span {
    font-size: 16px;
    font-weight: 500;
}

.tab-slideup-item i {
    font-size: 20px;
    color: #6c757d;
}

.tab-slideup-item.active i {
    color: #2d4566;
}

/* Mobile Only Styles */
@media (max-width: 767px) {
    .tab-buttons-container {
        display: none !important;
    }
    
    .tab-mobile-container {
        display: block;
    }
    
    /* Override theme font-size reduction for pricebox elements */
    .price-card,
    .price-card * {
        font-size: calc(var(--bs-body-font-size) * 1.333) !important; /* Compensate for 12px base */
    }
    
    /* Specific font sizes for price display elements */
    .price-display {
        font-size: 32px !important; /* Fixed pixel size */
    }
    
    .monthly-price {
        font-size: 36px !important; /* Fixed pixel size */
    }
    
    .price-period {
        font-size: 16px !important;
    }
    
    .total-price {
        font-size: 14px !important;
    }
    
    .variation-name {
        font-size: 20px !important;
    }
    
    .variation-description {
        font-size: 14px !important;
    }
    
    .feature-text {
        font-size: 14px !important;
    }
    
    /* Order buttons full width on mobile */
    .order-button,
    .order-button-top,
    .price-card .order-button,
    .price-card .order-button-top {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 24px !important;
        font-size: 16px !important;
        line-height: 1.5 !important;
        min-height: 48px !important;
        text-align: center !important;
    }
    
    .card-action,
    .card-action-top {
        padding: 16px !important;
        width: 100% !important;
    }
    
    /* Ensure links stretch full width */
    .card-action a,
    .card-action-top a {
        display: block !important;
        width: 100% !important;
    }
    
    /* Adjust arrow spacing for full width buttons */
    .order-button .arrow-left,
    .order-button-top .arrow-left {
        margin-right: 12px !important;
    }
    
    .order-button .arrow-right,
    .order-button-top .arrow-right {
        margin-left: 12px !important;
    }
}

/* Ensure desktop tabs work properly */
@media (min-width: 768px) {
    .tab-mobile-container {
        display: none !important;
    }
    
    .tab-slideup-overlay,
    .tab-slideup-menu {
        display: none !important;
    }
}