/* Restore desktop pricing cards layout */

/* Desktop layout (default) */
@media (min-width: 769px) {
    /* Show all cards by default for desktop */
    .pricing-card {
        display: block !important;
        width: 45% !important;
        margin: 0 2.5% 30px !important;
        box-sizing: border-box !important;
        float: none !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        height: auto !important;
        min-height: 700px !important;
    }op pricing cards layout to exactly match original design */

/* Desktop layout (default) */
@media (min-width: 769px) {
    /* Show all cards by default for desktop */
    .pricing-card {
        display: block !important;
        width: 45% !important;
        margin: 0 2.5% 30px !important;
        box-sizing: border-box !important;
        float: left !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }
    
    /* Create a flex grid for desktop */
    .pricing-carousel {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: stretch !important;
        padding: 0 !important;
        overflow: visible !important;
        position: relative !important;
        gap: 30px !important; /* Add consistent spacing between cards */
        max-width: 1200px !important;
        margin: 0 auto !important;
    }
    
    /* Completely hide ALL mobile carousel elements on desktop */
    .pricing-carousel-arrow,
    .pricing-carousel-indicators,
    .pricing-carousel-left,
    .pricing-carousel-right {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Always show features and details on desktop */
    .pricing-card .features,
    .pricing-card .size-pricing,
    .pricing-card .pricing-note {
        display: block !important;
    }
    
    /* Remove the active card styling on desktop */
    .pricing-card.active {
        /* Reset any mobile-specific styles */
        transform: none !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Featured card styling for desktop */
    .pricing-card.featured {
        box-shadow: 0 8px 25px rgba(107, 78, 47, 0.15) !important;
    }
    
    /* Hide expand button on desktop */
    .expand-btn {
        display: none !important;
    }
    
    /* Ensure cards appear in original style */
    .pricing-card .features {
        list-style-type: none !important;
        padding: 0 !important;
        margin: 20px 0 !important;
        text-align: center !important;
    }
    
    .pricing-card .features li {
        padding: 5px 0 !important;
        margin-bottom: 5px !important;
        text-align: center !important;
    }
    
    .pricing-card h2 {
        text-align: center !important;
        margin-bottom: 15px !important;
    }
    
    .price-range {
        text-align: center !important;
        margin-bottom: 20px !important;
        font-size: 1.8rem !important;
    }
    
    .pricing-note {
        font-style: italic !important;
        text-align: center !important;
        margin: 15px 0 !important;
    }
    
    .pricing-card .btn {
        display: block !important;
        width: 100% !important;
        max-width: 250px !important;
        margin: 20px auto 10px !important;
        text-align: center !important;
    }
    
    /* Remove all active card specific styling */
    .pricing-card.active {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        width: 45% !important;
        display: block !important;
    }
}

/* Additional desktop enhancements */
@media (min-width: 992px) {
    .pricing-card {
        width: 45% !important; /* Keep consistent width */
        margin: 0 2.5% 40px !important;
        padding: 30px !important;
    }
    
    /* Match the exact layout of the reference */
    .pricing-card .size-pricing {
        background-color: #f9f9f9 !important;
        border-radius: 8px !important;
        padding: 15px !important;
        margin-bottom: 20px !important;
    }
    
    .size-option {
        display: flex !important;
        justify-content: space-between !important;
        margin-bottom: 8px !important;
        padding-bottom: 5px !important;
    }
    
    .size-option:not(:last-child) {
        border-bottom: 1px solid #eee !important;
    }
}

/* Large desktop screens */
@media (min-width: 1200px) {
    .pricing-card {
        padding: 35px !important;
    }
    
    /* Make sure the cards are side by side, exactly as in the reference */
    .pricing-carousel {
        width: 100% !important;
        max-width: 1100px !important;
        margin: 0 auto !important;
    }
}