/* ======================================================
   Sarekam CSS — mini-cart.css
   Extracted from index.html | Phase 1 Refactor
   DO NOT add styles from other sections to this file.
   ====================================================== */

        .bottom-mini-cart {
            display: none;
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: auto;
            min-width: 220px;
            background: #0d6efd;
            color: #fff;
            border-radius: 12px;
            padding: 10px 18px;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
            z-index: 9999;
            cursor: pointer;
            animation: slideUpMiniCart 0.3s ease-out;
            gap: 20px;
        }

        @keyframes slideUpMiniCart {
            from { bottom: -100px; opacity: 0; }
            to { bottom: 20px; opacity: 1; }
        }

        .mini-cart-left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .mc-title {
            font-weight: 800;
            font-size: 1rem;
            line-height: 1.1;
        }

        .mc-count {
            font-size: 0.7rem;
            font-weight: 500;
            opacity: 0.9;
            margin-top: 2px;
            text-transform: uppercase;
        }

        .mini-cart-thumbs {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: flex-end;
        }

        .mc-thumb {
            width: 34px;
            height: 34px;
            border-radius: 6px;
            object-fit: cover;
            border: 2px solid #0d6efd;
            margin-left: -12px;
            background: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            position: relative;
        }

        .mc-thumb:first-child {
            margin-left: 0;
        }

        .mc-thumb-more {
            width: 34px;
            height: 34px;
            border-radius: 6px;
            border: 2px solid #0d6efd;
            margin-left: -12px;
            background: #fff;
            color: #0d6efd;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
            z-index: 10;
        }

        .mini-cart-right {
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 5px;
        }

