 
    /* Drag and Drop Styles */
    .sortable-row.sortable-ghost {
        opacity: 0.4;
        background-color: #f8f9fa;
    }

    .sortable-row.sortable-drag {
        opacity: 0.8;
        background-color: #e9ecef;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .drag-handle {
        color: #6c757d;
    }

    .drag-handle:hover {
        color: #495057;
        background-color: #f8f9fa;
    }

    /* Switch Toggle Styles */
    .switch {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 24px;
    }

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: .4s;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
    }

    input:checked + .slider {
        background-color: #28a745;
    }

    input:checked + .slider:before {
        transform: translateX(26px);
    }

    .slider.round {
        border-radius: 24px;
    }

    .slider.round:before {
        border-radius: 50%;
    }

/* Policy Pages Styles */
.policy-content {
    line-height: 1.8;
    color: #333;
}

.policy-content h4 {
    color: #030731;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #F5AF24;
}

.policy-content h5 {
    color: #3D3D3D;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.policy-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-content ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.policy-content ul:not(.list-unstyled) li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #F5AF24;
    border-radius: 50%;
}

.policy-content ul.list-unstyled li {
    padding-left: 0;
}

.policy-content ul.list-unstyled li::before {
    display: none;
}

.terms_main,
.privacy_main {
    padding-top: 40px;
    padding-bottom: 60px;
    background-color: #F6F6F8;
}

/* cart CSS */
   .cart-container {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .cart-header {
        margin-bottom: 30px;
    }

    .cart-header h2 {
        font-size: 28px;
        font-weight: 600;
        color: #333;
    }

    .cart-empty {
        text-align: center;
        padding: 60px 20px;
        background: #f8f9fa;
        border-radius: 8px;
        border: 2px solid #ffba02;
    }

    .cart-empty i {
        font-size: 64px;
        color: #ccc;
        margin-bottom: 20px;
    }

    .cart-empty h3 {
        font-size: 24px;
        color: #666;
        margin-bottom: 10px;
    }

    .cart-empty p {
        color: #999;
        margin-bottom: 20px;
    }

    .school-section {
        background: #fff;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 30px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .school-header {
        background: #ff9800;
        color: white;
        padding: 15px 20px;
        border-radius: 6px 6px 0 0;
        margin: -20px -20px 20px -20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .school-header h3 {
        margin: 0;
        font-size: 20px;
    }

    .add-more-btn {
        background: white;
        color: #ff9800;
        border: none;
        padding: 8px 16px;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s;
    }

    .add-more-btn:hover {
        background: #f5f5f5;
    }

    .cart-table {
        width: 100%;
        border-collapse: collapse;
    }

    .cart-table thead {
        background: #f8f9fa;
    }

    .cart-table th {
        padding: 12px;
        text-align: left;
        font-weight: 600;
        color: #333;
        border-bottom: 2px solid #dee2e6;
    }

    .cart-table td {
        padding: 15px 12px;
        border-bottom: 1px solid #dee2e6;
    }

    .cart-table tbody tr:hover {
        background: #f8f9fa;
    }

    .product-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .product-image {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 4px;
    }

    .product-name {
        font-weight: 500;
        color: #333;
    }

    .qty-controls {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .qty-btn {
        width: 30px;
        height: 30px;
        border: 1px solid #ddd;
        background: white;
        cursor: pointer;
        border-radius: 4px;
        font-size: 18px;
    }

    .qty-btn:hover {
        background: #f8f9fa;
    }

    .qty-input {
        width: 50px;
        text-align: center;
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 5px;
    }

    .remove-btn {
        color: #dc3545;
        cursor: pointer;
        padding: 8px 12px;
        border: 1px solid #dc3545;
        background: white;
        border-radius: 4px;
        transition: all 0.3s;
    }

    .remove-btn:hover {
        background: #dc3545;
        color: white;
    }

    .cart-summary {
        background: #fff;
        border-radius: 8px;
        padding: 25px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        position: sticky;
        top: 20px;
    }

    .cart-summary h3 {
        font-size: 20px;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid #eee;
    }

    .summary-row {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        font-size: 16px;
    }

    .summary-row.total {
        font-size: 20px;
        font-weight: 600;
        color: #ff9800;
        border-top: 2px solid #eee;
        padding-top: 15px;
        margin-top: 10px;
    }

    .checkout-btn {
        width: 100%;
        padding: 15px;
        background: #ff9800;
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        margin-top: 20px;
        transition: all 0.3s;
    }

    .checkout-btn:hover {
        background: #f57c00;
    }

    .continue-shopping {
        display: inline-block;
        padding: 12px 30px;
        background: #6c757d;
        color: white;
        border-radius: 6px;
        text-decoration: none;
        margin-top: 20px;
    }

    .continue-shopping:hover {
        background: #5a6268;
        color: white;
    }

    .clear-cart-btn {
        color: #dc3545;
        cursor: pointer;
        padding: 8px 16px;
        border: 1px solid #dc3545;
        background: white;
        border-radius: 4px;
        float: right;
    }

    .clear-cart-btn:hover {
        background: #dc3545;
        color: white;
    }
 /* cart CSS */