/***********************************************************************************
* Mini Cart Styles
***********************************************************************************/

    /* Hide the mini cart when viewing the Cart page */
    body.woocommerce-cart .ct-header-cart {
        display: none !important;
    }

    .ct-cart-content {
        border: 1px solid var(--theme-palette-color-1) !important;
        border-radius: 20px !important;
        width: 310px !important; /* default fallback */
        transition: width 0.3s ease !important;
        transform-origin: top right !important;
    }

    /* Tablet screens */
    @media (min-width: 768px) and (max-width: 1023px) {
        .ct-cart-content {
            width: 400px !important;
        }
    }

    /* Landscape mode on tablets (optional) */
    @media (min-width: 768px) and (orientation: landscape) {
        .ct-cart-content {
            width: 450px !important;
        }
    }

    /* Desktop and up */
    @media (min-width: 1024px) {
        .ct-cart-content {
            width: 480px !important;
        }
    }

    /* Extra wide screens */
    @media (min-width: 1440px) {
        .ct-cart-content {
            width: 540px !important;
        }
    }
