/* ========================================================================
   DYNAMIC PRODUCT SEARCH STYLES - Simple & Fast
   ======================================================================== */

/* Search Box Positioning */
.mydigitalmart-search-box {
    position: relative;
}


/* ======================================================================== 
   END OF SEARCH STYLES
   ======================================================================== */


/* ========================================================================
   CART & CHECKOUT HEADER SECTIONS
   Shared styles for cart and checkout page header components
   ======================================================================== */

/* Back to Website Section */
.cart-back-to-website {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px 24px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
    flex-wrap: wrap;
    gap: 12px;
}

.back-to-website-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e91e63;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.back-to-website-link:hover {
    background: #e91e63;
    color: #ffffff;
    text-decoration: none;
    border-color: #e91e63;
    transform: translateX(-3px);
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.2);
}

.back-to-website-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.back-to-website-link:hover i {
    transform: translateX(-3px);
}

.back-to-website-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.back-icon {
    font-size: 18px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .cart-back-to-website {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 20px;
    }

    .back-to-website-link {
        width: 100%;
        justify-content: center;
    }

    .back-to-website-text {
        width: 100%;
        justify-content: center;
    }
}

/* Delivery Address Card */
.cart-address-card {
    background: #ffffff;
    border-radius: 4px;
    padding: 16px 24px;
    margin-bottom: 16px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2);
}

.address-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.address-card-header h3 {
    font-size: 16px;
    font-weight: 500;
    color: #212121;
    margin: 0;
}

.change-address-btn {
    background: #fb641b;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 2px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.change-address-btn:hover {
    background: #e55500;
    color: #ffffff;
}

.address-text {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Login Section for Cart & Checkout Pages */
.cart-login-card {
    background: #ffffff;
    border-radius: 4px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2);
}

.cart-login-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cart-login-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
}

.cart-login-text {
    flex: 1;
    min-width: 200px;
}

.cart-login-text h3 {
    font-size: 18px;
    font-weight: 500;
    color: #212121;
    margin: 0 0 4px 0;
}

.cart-login-text p {
    font-size: 14px;
    color: #878787;
    margin: 0;
}

.cart-login-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cart-login-btn,
.cart-signup-btn {
    padding: 10px 24px;
    border-radius: 2px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cart-login-btn {
    background: #fb641b;
    color: #ffffff;
}

.cart-login-btn:hover {
    background: #e55500;
    color: #ffffff;
}

.cart-signup-btn {
    background: #e91e63;
    color: #ffffff;
}

.cart-signup-btn:hover {
    background: #c2185b;
    color: #ffffff;
}

.cart-login-divider {
    font-size: 14px;
    color: #878787;
    font-weight: 400;
}

/* Saved Address Cards */
/* Delivery Address Section Header Styles */
.delivery-address-header-row {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 12px;
}

.delivery-address-title {
    color: #e67e22;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.delivery-address-subtitle-row {
    margin-top: 8px;
}

.delivery-address-subtitle {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

.delivery-address-action-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btn-add-new-address {
    border: 2px solid #e67e22;
    background: white;
    color: #e67e22;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(230, 126, 34, 0.1);
}

.btn-add-new-address i {
    font-size: 16px;
}

.btn-add-new-address:hover {
    background: #e67e22;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.btn-add-new-address:hover i {
    color: white;
}

/* Saved Address Card Styles */
.saved-address-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
    position: relative;
}

.saved-address-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    border-color: #d0d0d0;
    transform: translateY(-2px);
}

.saved-address-card.selected {
    border-color: #d0d0d0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    background: #fafafa;
}

.saved-address-card .address-radio-label {
    flex-shrink: 0;
    margin-right: 15px;
    margin-top: 4px;
    cursor: pointer;
    display: inline-block;
}

.saved-address-card .address-radio {
    accent-color: #e91e63;
    /* Pink radio button */
    cursor: pointer;
    width: 20px;
    height: 20px;
    margin: 0;
}

.saved-address-card .address-content {
    flex: 1;
}

.saved-address-card .address-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.saved-address-card .address-name {
    color: #212121;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.saved-address-card .address-type-badge {
    background: #27ae60;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.saved-address-card .address-details {
    margin-bottom: 12px;
}

.saved-address-card .address-line {
    color: #666;
    font-size: 14px;
    margin: 0 0 6px 0;
    line-height: 1.6;
}

.saved-address-card .address-mobile {
    color: #666;
    font-size: 14px;
    margin: 0 0 6px 0;
}

.saved-address-card .address-mobile strong {
    color: #212121;
    font-weight: 600;
}

.saved-address-card .address-cod {
    color: #27ae60;
    font-size: 13px;
    margin: 0 0 0 0;
    font-weight: 500;
}

.saved-address-card .address-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.saved-address-card .btn-address-action {
    padding: 6px 12px;
    border: 1px solid #d0d0d0;
    background: white;
    color: #666;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 80px;
    justify-content: center;
}

.saved-address-card .btn-address-action i {
    font-size: 11px;
}

.saved-address-card .btn-address-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.saved-address-card .btn-edit {
    border-color: #e0e0e0;
    color: #666;
}

.saved-address-card .btn-edit:hover {
    background: #e91e63;
    border-color: #e91e63;
    color: white;
}

.saved-address-card .btn-edit:hover i {
    color: white;
}

.saved-address-card .btn-remove {
    border-color: #e0e0e0;
    color: #666;
}

.saved-address-card .btn-remove:hover {
    background: #e67e22;
    border-color: #e67e22;
    color: white;
}

.saved-address-card .btn-remove:hover i {
    color: white;
}

/* ========================================================================
   END OF CART & CHECKOUT HEADER SECTIONS
   ======================================================================== */

/* ========================================================================
   ADDRESS MODAL STYLES
   ======================================================================== */

/* State Dropdown - Proper Design */
.address-state-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    height: 45px;
    font-size: 14px;
    color: #212121;
}

.address-state-select:hover {
    border-color: #e67e22;
    box-shadow: 0 0 0 1px rgba(230, 126, 34, 0.1);
}

.address-state-select:focus {
    border-color: #e67e22;
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.address-state-select option {
    padding: 10px;
    font-size: 14px;
    color: #212121;
    background: white;
}

.address-state-select option:first-child {
    color: #999;
}

/* Address Modal Form Controls - Consistent Border Colors */
#addressModal .form-control {
    border: 1px solid #d0d0d0;
    transition: all 0.3s ease;
}

#addressModal .form-control:focus {
    border-color: #e67e22 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1) !important;
}

#addressModal .form-control:hover:not(:focus) {
    border-color: #e0e0e0;
}

/* Modal Footer - Remove flex-wrap */
#addressModal .modal-footer {
    flex-wrap: nowrap !important;
}

/* Modal Footer Buttons - Theme Colors */
.btn-modal-cancel {
    background: #6c757d;
    color: white;
    border: 1px solid #6c757d;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-modal-cancel:hover {
    background: #5a6268;
    border-color: #5a6268;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

.btn-modal-save {
    background: #e67e22;
    color: white;
    border: 1px solid #e67e22;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.6;
}

.btn-modal-save:hover:not(:disabled) {
    background: #d35400;
    border-color: #d35400;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
}

.btn-modal-save:disabled {
    background: #e67e22;
    border-color: #e67e22;
    color: white;
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-modal-save:not(:disabled) {
    opacity: 1;
}

/* SweetAlert2 - Remove flex-wrap for address delete confirmation */
.swal2-actions {
    flex-wrap: nowrap !important;
}

/* ========================================================================
   END OF ADDRESS MODAL STYLES
   ======================================================================== */


/* Store Settings Page Styles */
.store-info-card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.identity-docs-card .card-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
}

.banking-info-card .card-header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border: none;
}

.store-logo-preview {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #e9ecef;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.store-logo-placeholder {
    width: 120px;
    height: 120px;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.store-logo-placeholder:hover {
    border-color: #007bff;
    background: #e3f2fd;
}

.document-preview-img {
    width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.document-placeholder {
    width: 200px;
    height: 120px;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.document-placeholder:hover {
    border-color: #ffc107;
    background: #fff8e1;
}

.logo-upload-section,
.document-upload-section {
    position: relative;
}

.logo-upload-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.5;
}

.document-upload-section::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg, #fff3cd, #ffeaa7);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
}

.text-danger {
    font-weight: bold;
}

.form-text {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.input-group .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.btn {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Store URL Highlight Section */
.store-url-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.store-url-highlight .card-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.store-url-highlight .symbol-label {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.store-url-highlight .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #333;
}

.store-url-highlight .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.store-url-highlight .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Disabled Button States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Two Column Layout */
.h-100 {
    height: 100% !important;
}

.h-80px {
    height: 80px !important;
}

/* Bold Labels */
.fs-6.fw-semibold {
    font-weight: 800 !important;
    color: #1a1a1a !important;
    font-size: 0.95rem !important;
}

/* Make all form labels bold */
label,
.form-label,
.fs-6,
.fw-semibold {
    font-weight: 700 !important;
    color: #1a1a1a !important;
}

/* Specific label styling */
.fs-6.fw-semibold.mb-3 {
    font-weight: 800 !important;
    color: #000000 !important;
    font-size: 1rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Small Copy Button */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 0.375rem;
}


/* Enhanced Top Bar with Icons */
.axil-header-top {
    background: #1a1a1a;
    border-bottom: 1px solid #333;
}

.axil-header-top .dropdown-toggle {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
}

.axil-header-top .dropdown-toggle:hover {
    color: #f19100;
}

.axil-header-top .dropdown-toggle i {
    color: #f19100;
    font-size: 12px;
}

.axil-header-top .dropdown-menu {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 5px 0;
    margin-top: 5px;
}

.axil-header-top .dropdown-item {
    color: #ffffff;
    padding: 8px 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.axil-header-top .dropdown-item:hover {
    background: #f19100;
    color: #ffffff;
}

.axil-header-top .quick-link {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.axil-header-top .quick-link li a {
    color: #f39c12;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.axil-header-top .quick-link li a:hover {
    color: #f19100;
}

.axil-header-top .quick-link li a i {
    color: #f39c12;
    font-size: 12px;
}

.header-top-link .quick-link li {
    padding: 0 4px;
}

/* Welcome Message in Top Header */
.axil-header-top .welcome-message {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.axil-header-top .welcome-message i {
    color: #f19100;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .store-url-highlight .col-md-4 {
        margin-top: 1rem;
    }

    .banking-info-card .col-lg-6:first-child {
        margin-bottom: 1rem;
    }
}

/* Center welcome message on tablets and show on mobile */
@media (max-width: 991px) and (min-width: 768px) {
    .axil-header-top .welcome-message {
        text-align: center;
        margin-bottom: 10px;
    }
}

/* Hide welcome message only on very small screens */
@media (max-width: 767px) {
    .axil-header-top .welcome-message {
        display: none;
    }

    .axil-header-top .quick-link {
        gap: 15px;
    }

    .axil-header-top .quick-link li a {
        font-size: 13px;
    }

    .axil-header-top .quick-link li a span {
        display: none;
    }

    .axil-header-top .quick-link li a i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .axil-header-top .quick-link {
        gap: 10px;
    }
}

/* Product Image Uniform Sizing */
.axil-product .thumbnail {
    height: 380px;
    overflow: hidden;
    display: block;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
    position: relative;
    width: 100%;
}

.axil-product .thumbnail>a,
.axil-product .thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.axil-product .thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
}

/* Product image — no zoom/transform on hover (image stays static) */

/* Social Share Section After Price */
.product-share-section {
    margin-top: 12px;
    padding: 8px 0;
}

.share-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    background: #e91e63;
}

.share-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    background: white;
    border: 2px solid #e91e63;
}

.share-btn:hover i {
    color: #e91e63;
}

.share-btn i {
    color: white;
    font-size: 14px;
}

/* Ensure product cards have consistent height and no cutting */
.axil-product {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 520px;
    max-height: none;
}

.axil-product:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.axil-product .product-content {
    margin: 0 15px 15px 15px;
    padding: 12px 0;
}

.axil-product .product-content .title {
    margin-bottom: 8px;
}

.axil-product .product-content .title a {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.6em;
    height: auto;
}

.axil-product .product-content .title a:hover {
    color: #e91e63;
}

.axil-product .product-price-variant {
    margin-top: auto;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.axil-product .product-price-variant .price {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
}

.axil-product .product-price-variant .old-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-right: 6px;
}

/* Category Image Uniform Sizing */
.axil-category .thumbnail {
    height: 140px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.axil-category .thumbnail:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.axil-category .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.axil-category .thumbnail:hover img {
    transform: scale(1.05);
}

/* Category Overlay */
.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(241, 144, 0, 0.9) 0%, rgba(255, 193, 7, 0.9) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.axil-category .thumbnail:hover .category-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.category-description {
    font-size: 13px;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    text-align: center;
    padding: 0 10px;
    display: block;
    max-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Category Card Styling */
.axil-category {
    min-height: 200px;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 15px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.axil-category:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    border-color: #f19100;
    z-index: 10;
}

.axil-category .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 10px;
    min-height: 50px;
}

.axil-category .content .title {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
    word-wrap: break-word;
    hyphens: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.axil-category .content .title a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.axil-category:hover .content .title {
    color: #f19100;
}

/* Attractive Section Title Design */
.title-container {
    position: relative;
    margin-bottom: 1rem;
}

.axil-categorie-area .section-title-wrapper .title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    margin-bottom: 5px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    gap: 15px;
}

.decoration-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 2px;
    position: relative;
}

.decoration-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    background: rgba(243, 156, 18, 0.3);
}

.decoration-diamond {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    transform: rotate(45deg);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.4);
}

/* Section Subtitle */
.section-title-wrapper .subtitle {
    font-size: 1.4rem;
    color: #6c757d;
    /* text-align: center; */
    margin-top: 0.8rem;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Poppins', sans-serif;
}

/* Category Actions */
.category-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Fresh Category Explore Button Design */
.category-explore-btn {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.category-explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.category-explore-btn:hover::before {
    left: 100%;
}

.category-explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.category-explore-btn .btn-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.category-explore-btn .btn-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.category-explore-btn .btn-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.category-explore-btn:hover .btn-icon {
    transform: scale(1.1);
}

.category-explore-btn:hover .btn-arrow {
    transform: translateX(3px);
}

.section-title-wrapper .title-highlighter {
    background: linear-gradient(135deg, #f19100, #e67e22);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(241, 145, 0, 0.3);
}

/* Responsive adjustments for product images */
@media (max-width: 768px) {
    .axil-product .thumbnail {
        height: 360px;
    }

    .axil-product {
        min-height: 450px;
    }

    .axil-product .product-content {
        margin: 0 12px 15px 12px;
        padding: 10px 0;
    }

    .axil-product .product-content .title a {
        font-size: 13px;
        min-height: 2.4em;
        height: auto;
    }

    .axil-product .product-price-variant .price {
        font-size: 13px;
    }

    .axil-product .product-price-variant .old-price {
        font-size: 11px;
    }

    .product-list .axil-product,
    .isotope-list .axil-product {
        min-height: 450px;
    }

    .axil-category .thumbnail {
        height: 120px;
    }

    .axil-category {
        min-height: 180px;
        margin-bottom: 15px;
    }

    .axil-category .content {
        min-height: 45px;
    }

    .axil-category .content .title {
        font-size: 13px;
        line-height: 1.2;
    }

    .category-description {
        font-size: 12px;
        max-height: 50px;
        -webkit-line-clamp: 2;
        padding: 0 8px;
    }

    .axil-categorie-area .section-title-wrapper .title {
        font-size: 2.5rem;
        margin-bottom: 5px;
    }

    .section-title-wrapper .subtitle {
        font-size: 1.3rem;
        margin-top: 0.6rem;
    }

    .category-explore-btn {
        padding: 14px 30px;
        font-size: 15px;
        gap: 10px;
    }

    .category-explore-btn .btn-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .axil-product .thumbnail {
        height: 280px;
    }

    .axil-product {
        min-height: 360px;
    }

    .axil-product .product-content {
        margin: 0 10px 15px 10px;
        padding: 8px 0;
    }

    .axil-product .product-content .title a {
        font-size: 12px;
        min-height: 2.2em;
        height: auto;
    }

    .axil-product .product-price-variant .price {
        font-size: 12px;
    }

    .axil-product .product-price-variant .old-price {
        font-size: 10px;
    }

    .product-list .axil-product,
    .isotope-list .axil-product {
        min-height: 360px;
    }

    .axil-category .thumbnail {
        height: 80px;
    }

    .axil-category {
        padding: 10px;
        min-height: 160px;
        margin-bottom: 15px;
    }

    .axil-category .content {
        min-height: 40px;
    }

    .axil-category .content .title {
        font-size: 12px;
        line-height: 1.2;
    }

    .category-description {
        font-size: 11px;
        max-height: 40px;
        -webkit-line-clamp: 2;
        padding: 0 5px;
    }

    .axil-categorie-area .section-title-wrapper .title {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .section-title-wrapper .subtitle {
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }

    .title-decoration {
        margin-bottom: 17px;
        gap: 10px;
    }

    .decoration-line {
        width: 30px;
        height: 2px;
    }

    .decoration-diamond {
        width: 8px;
        height: 8px;
    }

    .category-explore-btn {
        padding: 12px 25px;
        font-size: 14px;
        gap: 8px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .category-explore-btn .btn-text {
        font-size: 14px;
    }
}

/* Professional Signup Page Design - Specific to registration form */
.contact-form input,
.contact-form select,
.contact-form textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

/* Form group spacing */
.contact-form .form-group {
    margin-bottom: 20px !important;
}


/* Add extra spacing when validation message is shown */
.contact-form .form-group:has(.validation-div:not(:empty)) {
    margin-bottom: 20px !important;
}

/* Contact detail item h4 alignment */
.contact-detail-item h4 {
    text-align: left;
}

/* Benefits list h4 alignment */
.benefits-list h4 {
    text-align: left;
}

/* Logo spacing - Add margin bottom to logo section */
.header-brand {
    display: flex !important;
    align-items: center !important;
}

/* MyDigitalMart header spacing */
.mydigitalmart-main-header {
    margin-bottom: 0;
}

.mydigitalmart-category-nav {
    z-index: 999;
    position: relative;
}

/* Fix dropdown menu z-index to appear above banner */
.mainmenu .axil-submenu,
.mainmenu .submenu,
.mainmenu .dropdown-menu,
.mainmenu .mega-menu {
    z-index: 1001 !important;
    position: relative;
}

/* Ensure banner elements don't overlap menu dropdowns */
.banner__slider,
.axil-banner,
.banner-area,
.slider-area {
    z-index: 1 !important;
    position: relative;
}

/* Additional menu z-index fixes */
.header-main-nav,
.mainmenu,
.main-navigation {
    z-index: 1000 !important;
    position: relative;
}

/* Category and tag dropdown menus */
.mainmenu .menu-item-has-children .axil-submenu,
.mainmenu .menu-item-has-children .submenu,
.mainmenu .menu-item-has-children .dropdown-menu {
    z-index: 1002 !important;
    position: absolute;
}

/* Ensure all dropdowns appear above everything */
.mainmenu .axil-submenu,
.mainmenu .submenu,
.mainmenu .dropdown-menu,
.mainmenu .mega-menu,
.mainmenu .menu-item-has-children .axil-submenu,
.mainmenu .menu-item-has-children .submenu,
.mainmenu .menu-item-has-children .dropdown-menu {
    z-index: 1002 !important;
    position: absolute;
}

/* Header brand vertical centering - minimal approach */
.header-brand {
    display: flex !important;
    align-items: center !important;
}

/* Welcome message alignment in header top */
.axil-header-top .welcome-message {
    display: flex !important;
    align-items: center !important;
    justify-content: left !important;
}


/* Reduce spacing between form elements */
.contact-form .row--10 .col-12 {
    margin-bottom: 0 !important;
}

/* Ensure store setup button is clickable */
a[href*="general-settings"] {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 10 !important;
    cursor: pointer !important;
}

/* Fix any potential overlay issues on store success page */
.store-created-successfully .btn,
.store-created-successfully a {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 10 !important;
}

.contact-form .row--10 {
    margin-bottom: 0 !important;
}

/* Ensure form elements are visible and properly styled */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="password"],
.contact-form select {
    background-color: #ffffff !important;
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #2c3e50 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 48px !important;
    display: block !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    vertical-align: middle !important;
    transition: all 0.3s ease !important;
}

/* Focus states for contact form */
.contact-form input:focus,
.contact-form select:focus {
    border-color: #f39c12 !important;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1) !important;
    outline: none !important;
    background-color: #ffffff !important;
}

/* Placeholder styling for contact form */
.contact-form input::placeholder {
    color: #7f8c8d !important;
    opacity: 1 !important;
    font-size: 16px !important;
}

/* Eye icon positioning for password fields */
.contact-form .form-group div[style*="position: relative"] {
    position: relative !important;
}

.contact-form .form-group div[style*="position: relative"] input {
    padding-right: 50px !important;
}

/* Validation message styling - hidden by default */
.validation-div {
    font-size: 1.4rem;
    color: #e74c3c;
    margin-top: 8px;
    min-height: 18px;
    font-weight: 500;
    line-height: 1.2;
    display: none;
    width: 100%;
    margin-bottom: 0;
}

/* Show validation message when it has content */
.validation-div:not(:empty) {
    display: block !important;
    margin-bottom: 22px !important;
}

/* Ensure validation messages appear right below inputs */
.contact-form .form-group {
    position: relative;
    margin-bottom: 20px !important;
}

.contact-form .validation-div {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 6px;
    padding: 0;
    display: block;
    clear: both;
}

/* Ensure proper spacing for password fields with validation */
.contact-form .form-group div[style*="position: relative"] {
    margin-bottom: 0 !important;
}

.contact-form .form-group div[style*="position: relative"]+.validation-div {
    margin-top: 6px !important;
}

/* Button styling for contact form */
.contact-form button[type="submit"] {
    transition: all 0.3s ease !important;
}

.contact-form button[type="submit"]:hover:not(:disabled) {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4) !important;
}

/* Checkbox styling */
.contact-form input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin-right: 10px !important;
    accent-color: #f39c12 !important;
}

/* Feature cards hover effect */
.feature-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}




/* Responsive Design for Registration Form */
@media (max-width: 992px) {
    .contact-form {
        padding: 30px 20px !important;
    }

    .contact-form .title {
        font-size: 24px !important;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 20px 15px !important;
    }

    .contact-form .title {
        font-size: 22px !important;
    }

    .contact-form input,
    .contact-form select {
        padding: 12px !important;
        font-size: 14px !important;
    }
}









/* GLOBAL CLASS */
.mt-3rm {
    margin-top: -3.0em;
}

.ml-10 {
    margin-left: 10px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-50 {
    margin-left: 50px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.text-right {
    text-align: right;
}

.popup-registration-box {
    display: none;
}

.swal2-container.swal2-center {
    z-index: 999999;
}

.swal2-container .swal2-popup {
    font-size: 17px;
}

/* Cart Remove Confirmation Dialog - Buttons styling removed to fix JavaScript error - will re-add with different approach if needed */
.validation-div {
    color: #ff0202;
}

.header-brand .logo {
    max-width: 300px;
}

.mainmenu .become-a-reseller-btn {
    background: #f1910042;
    padding: 8px;
    border-radius: 3px;
}

/* Remove arrows from mega menu items */
.mega-menu-item.menu-item-has-children>a::after,
.mega-menu-item.menu-item-has-children>a::before {
    display: none !important;
}

.mainmenu .menu-item-has-children:not(.mega-menu-item)>a::after {
    color: #000000 !important;
}

/* Product actions font size */
.product-actions a {
    font-size: 1.6rem !important;
}

/* Shop Page Product Styling - Match Home Page Design */
.shop-page .axil-product {
    margin-bottom: 30px;
}

/* Fix row spacing and prevent overlap */
.row--15 {
    margin-left: -15px;
    margin-right: -15px;
}

.row--15>[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

/* Ensure product cards don't overlap */
.product-list .axil-product {
    margin-bottom: 30px !important;
    height: auto !important;
    min-height: 520px;
}

.product-list [class*="col-"] {
    margin-bottom: 30px !important;
}

.isotope-list .axil-product {
    margin-bottom: 30px !important;
    height: auto !important;
    min-height: 520px;
}

.isotope-list [class*="col-"] {
    margin-bottom: 30px !important;
}

/* Frontend Pagination Styling (Separate from Backend) */
.axil-pagination .pagination {
    margin: 0;
    padding: 0;
}

.axil-pagination .pagination .page-item {
    margin: 0 2px;
}

.axil-pagination .pagination .page-link {
    color: #6c757d;
    background-color: #fff;
    border: 1px solid #dee2e6;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.axil-pagination .pagination .page-link:hover {
    color: #f39c12;
    background-color: #f8f9fa;
    border-color: #f39c12;
}

.axil-pagination .pagination .page-item.active .page-link {
    color: #fff;
    background-color: #f39c12;
    border-color: #f39c12;
}

.axil-pagination .pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #fff;
    border-color: #dee2e6;
    cursor: not-allowed;
}

.axil-pagination .pagination .page-item.disabled .page-link:hover {
    color: #6c757d;
    background-color: #fff;
    border-color: #dee2e6;
}

.home-category-list .title {
    font-size: 16px;
}

.footer-call-to-action {
    display: block;
    position: fixed;
    cursor: pointer;
    z-index: 4;
    bottom: 30px;
    right: 50px;
}

/* Product */
.small-thumb-style-two .small-thumb-img img {
    height: 60px;
}

.address-box {
    background-color: var(--color-lighter);
    border-radius: 6px;
    padding: 17px 30px;
}

.axil-product>.thumbnail .label-block .product-badget {
    background-color: #ffc107;
}

.price-amount .old-price {
    text-decoration: line-through;
}

.product-variation .color-variant li .thumbnail {
    border: 1px solid #adadad;
    border-radius: 5px;
}

.product-variation .color-variant li .active {
    border: 3px solid #f19100;
}

/* Removed fixed height constraint to prevent cutting */
.login-signup-modal .modal-body {
    padding: 40px 40px;
}

.single-product-content .inner .product-title {
    font-size: 28px;
}

a.axil-btn.btn-bg-success {
    background-color: #008000;
    color: var(--color-white);
}

a.axil-btn.btn-bg-success i {
    color: var(--color-white);
}

/* Email OTP Verification Modal */
#emailOTPModal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#emailOTPModal .modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 20px 30px;
}

#emailOTPModal .modal-title {
    color: #e67e22;
    font-weight: 700;
    font-size: 24px;
}

#emailOTPModal .modal-body {
    padding: 30px;
}

#emailOTPModal #otp-email-address {
    line-height: 1.2;
    margin-bottom: 25px !important;
    font-size: 16px;
    color: #333;
}

#emailOTPModal .modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 20px 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

#emailOTPModal .otp-input {
    font-size: 24px;
    text-align: center;
    letter-spacing: 10px;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-weight: 600;
}

#emailOTPModal .otp-input:focus {
    border-color: #e67e22;
    box-shadow: 0 0 0 0.2rem rgba(230, 126, 34, 0.25);
}

#emailOTPModal #resend-otp-link {
    color: #e67e22;
    text-decoration: underline;
    font-weight: 600;
    padding: 0;
    font-size: 18px;
    background: none;
    border: none;
    box-shadow: none;
    outline: none;
    display: inline;
    cursor: pointer;
}

#emailOTPModal #resend-otp-link:hover {
    text-decoration: underline;
    color: #d66e1a;
    background: none;
    box-shadow: none;
}

#emailOTPModal #resend-otp-link:active {
    background: none;
    box-shadow: none;
    outline: none;
}

#emailOTPModal #resend-timer {
    display: none;
    margin-top: 8px;
    font-size: 14px;
    color: #6c757d;
    text-align: center;
}

#emailOTPModal #resend-timer[style*="block"],
#emailOTPModal #resend-timer:not([style*="none"]) {
    display: block !important;
    visibility: visible !important;
}

/* Email Verification Pending Section */
.email-verification-pending {
    margin-top: 15px;
    padding: 12px 15px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
}

.email-verification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: nowrap;
}

.email-verification-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #856404;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    min-width: 0;
}

.email-verification-text i {
    color: #856404;
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 16px;
}

.email-verification-text span {
    display: inline;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.btn-verify-now {
    background: #e67e22;
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    white-space: nowrap;
    font-size: 13px;
    flex-shrink: 0;
    width: 23%;
    min-width: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: auto;
}

.btn-verify-now:hover {
    background: #d66e1a;
}

/* Responsive styles for email verification pending */
@media (max-width: 768px) {
    .email-verification-content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .email-verification-text {
        font-size: 13px;
        line-height: 1.4;
    }

    .btn-verify-now {
        width: 100%;
        padding: 8px 14px;
        font-size: 14px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .email-verification-pending {
        padding: 10px 12px;
    }

    .email-verification-text {
        font-size: 12px;
        line-height: 1.4;
    }

    .email-verification-text i {
        font-size: 14px;
    }

    .btn-verify-now {
        padding: 7px 12px;
        font-size: 13px;
    }
}

/* Shop / Store */
.store-breadcrumb-area {
    padding: 30px 0 50px;
}

.store-breadcrumb-image {
    padding: 20px 0 30px;
    background-position: center;
    background-size: cover;
}

.store-breadcrumb-theme {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.store-breadcrumb-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(241, 145, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(40, 167, 69, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.store-breadcrumb-theme::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="shopping-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23f19100" opacity="0.1"/><path d="M5,5 L15,15 M15,5 L5,15" stroke="%23007bff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23shopping-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.store-breadcrumb-theme .container {
    position: relative;
    z-index: 2;
}

/* Store Layout - Reduced spacing */
.store-breadcrumb-area .row {
    margin: 0 -10px;
    align-items: center;
    min-height: 200px;
}

.store-breadcrumb-area .col-md-2 {
    padding: 0 10px;
}

.store-breadcrumb-area .col-md-10 {
    padding: 0 10px;
}

.store-breadcrumb-area .col-lg-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Store Icon */
.store-icon {
    text-align: center;
    margin-bottom: 15px;
}

.store-icon img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #f19100 !important;
    box-shadow: 0 4px 15px rgba(241, 145, 0, 0.3);
}

/* Trending Market Icon */
.trending-market-icon {
    width: 150px;
    height: 150px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 4px solid #f19100;
}

.trending-market-icon i {
    color: #f19100;
    font-size: 7rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Store Title */
.title {
    color: #2c3e50 !important;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}

.slug {
    color: #f19100 !important;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.description {
    color: #6c757d !important;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Social Media Buttons */
.store-breadcrumb-area .social-share {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: left;
    gap: 8px;
}

.store-breadcrumb-area .social-share a {
    color: #ffffff !important;
    height: 40px;
    width: 40px;
    background-color: #e91e63 !important;
    border-radius: 50%;
    text-decoration: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
    margin: 0px 8px;
}

.store-breadcrumb-area .social-share a:hover {
    background-color: #ffeb3b !important;
    color: #333333 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.4);
}

/* Buttons */
.store-breadcrumb-area .axil-btn {
    background-color: #f19100 !important;
    border-color: #f19100 !important;
    color: #ffffff !important;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 145, 0, 0.3);
    text-decoration: none;
    display: inline-block;
}

.store-breadcrumb-area .axil-btn:hover {
    background-color: #e68200 !important;
    border-color: #e68200 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 145, 0, 0.4);
}

.store-breadcrumb-area .axil-btn i {
    color: #ffffff !important;
    margin-right: 8px;
}

/* Sort Filter Section */
.sort-filter-section {
    margin: 30px 0 20px 0;
    padding: 0 15px;
}

.sort-dropdown-wrapper {
    position: relative;
}

.sort-dropdown {
    width: 100%;
    padding: 10px 30px 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: #ffffff;
    color: #495057;
    font-size: 14px;
    font-weight: 400;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    background-image: none;
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.sort-dropdown:focus {
    outline: none;
    border-color: #f19100 !important;
    box-shadow: 0 0 0 0.2rem rgba(241, 145, 0, 0.25) !important;
    background-color: #ffffff !important;
}

.sort-dropdown:hover {
    border-color: #f19100 !important;
    background-color: #fff8f0 !important;
}

.sort-dropdown:active {
    border-color: #f19100 !important;
    background-color: #fff8f0 !important;
    box-shadow: 0 0 0 0.2rem rgba(241, 145, 0, 0.25) !important;
}

.sort-dropdown-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
    display: none;
    ;
}

/* Override any browser default select styling */
.sort-dropdown option {
    background-color: #ffffff !important;
    color: #495057 !important;
    padding: 8px 12px;
}

.sort-dropdown option:hover {
    background-color: #fff8f0 !important;
    color: #f19100 !important;
}

.sort-dropdown option:checked {
    background-color: #f19100 !important;
    color: #ffffff !important;
}

.sort-dropdown option:focus {
    background-color: #f19100 !important;
    color: #ffffff !important;
}

.sort-dropdown option:selected {
    background-color: #f19100 !important;
    color: #ffffff !important;
}

/* Additional overrides for different browsers */
.sort-dropdown option[selected] {
    background-color: #f19100 !important;
    color: #ffffff !important;
}

/* Force theme colors on dropdown */
.sort-dropdown:focus option:checked {
    background-color: #f19100 !important;
    color: #ffffff !important;
}

.sort-dropdown option:active {
    background-color: #f19100 !important;
    color: #ffffff !important;
}

/* Additional browser-specific overrides */
.sort-dropdown::-ms-expand {
    display: none;
}

.sort-dropdown::-webkit-list-button {
    display: none;
}

/* Force override for all possible states */
select.sort-dropdown option {
    background: #ffffff !important;
    color: #495057 !important;
}

select.sort-dropdown option:checked,
select.sort-dropdown option:selected,
select.sort-dropdown option[selected="selected"] {
    background: #f19100 !important;
    color: #ffffff !important;
}

/* Override for when dropdown is open */
.sort-dropdown:focus option:checked,
.sort-dropdown:focus option:selected {
    background: #f19100 !important;
    color: #ffffff !important;
}

/* Categories Sidebar - Reverted to Simple Design */
.axil-shop-sidebar {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.toggle-list.product-categories {
    margin-bottom: 20px;
}

.toggle-list .title {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e91e63;
}

.shop-submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-submenu li {
    margin-bottom: 8px;
}

.shop-submenu .form-check {
    margin: 0;
    padding: 0;
}

.shop-submenu .form-check-input {
    margin-right: 8px;
    accent-color: #e91e63;
}

.shop-submenu .form-check-label {
    color: #495057;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.shop-submenu .form-check-label:hover {
    color: #e91e63;
}

.shop-submenu .form-check-input:checked+.form-check-label {
    color: #e91e63;
    font-weight: 600;
}

/* Modern Filter Button */
.modern-filter-btn {
    width: 100%;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.modern-filter-btn:hover {
    background: linear-gradient(135deg, #ffeb3b 0%, #fbc02d 100%);
    color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 235, 59, 0.4);
}

.product-content .social-share {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

.product-content .social-share a {
    font-size: 14px;
    color: #ffffff;
    height: 32px;
    width: 32px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    text-decoration: none;
    outline: none;
}

.single-product-content .social-share a {
    color: #ffffff;
    height: 32px;
    width: 32px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    text-decoration: none;
    outline: none;
}

.axil-category>.thumbnail>a img {
    border-radius: 6px;
    width: 100%;
    transition: .3s;
}

.store-page .social-share.ss1 {
    display: none;
}

/* Banners */
.main-slider-style-1 {
    padding: 0;
}

.navActive {
    background: #dfe0e5;
    border-bottom: 2px solid #00f;
}

.thumbnail-slick-slide {
    height: auto;
}

/* Start Offcanvas stikcy (Mobile App View) */
.offcanvas__stikcy--toolbar {
    position: fixed;
    bottom: 0;
    background: #ffff;
    left: 0;
    right: 0;
    z-index: 99;
    -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, .12);
    box-shadow: 0 0 9px rgba(0, 0, 0, .12);
    padding: 10px 20px;
    display: none;
}

.offcanvas__stikcy--toolbar ul {
    list-style: none;
    margin: 0;
    padding: 0px;
}

.offcanvas__stikcy--toolbar ul:last-child {
    margin-bottom: 0;
}

.offcanvas__stikcy--toolbar ul li {
    list-style: none;
    line-height: 2;
    margin: 0px;
}

.offcanvas__stikcy--toolbar__btn {
    position: relative;
    text-align: center;
}

.offcanvas__stikcy--toolbar__btn.minicart__open--btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.minicart__open--btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.offcanvas__stikcy--toolbar__btn {
    position: relative;
    text-align: center;
}

.offcanvas__stikcy--toolbar__icon {
    width: 3rem;
    height: 3rem;
    text-align: center;
    background: var(--theme-color);
    line-height: 3.8rem;
    border-radius: 50%;
    color: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.items__count {
    position: absolute;
    left: 1.8rem;
    top: -4px;
    width: 2rem;
    height: 2rem;
    font-size: 1.1rem;
    line-height: 2rem;
    background: #f19100;
    text-align: center;
    border-radius: 50%;
    color: var(--text-white-color);
}

.offcanvas__stikcy--toolbar__btn>* {
    pointer-events: none;
}

.offcanvas__stikcy--toolbar__label {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 6px;
}

.for-mobile-view-only {
    display: none;
}



@media only screen and (max-width: 991px) {
    .axil-header-top {
        display: none;
    }

    .offcanvas__stikcy--toolbar {
        display: block;
    }

    .for-mobile-view-only {
        display: block;
    }

    .hide-mobile-only {
        display: none;
    }

    .mobile-view-drawer {
        width: 33%;
    }

    .mydigitalmart-main-header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1000 !important;
        background-color: var(--color-white);
        box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .1);
        transition: var(--transition);
    }

    .mydigitalmart-category-nav {
        position: fixed;
        top: 60px;
        right: 0;
        left: 0;
        z-index: 999 !important;
        background-color: var(--color-white);
    }

    .banner__slider {
        margin-top: 120px;
    }

    .axil-categorie-area .slick-single-layout {
        width: 160px !important;
    }

    .service-box {
        padding: 15px;
    }

    .footer-call-to-action {
        bottom: 65px;
        right: 20px;
    }

    .shop-page .axil-product.product-style-one {
        border: 1px solid #d2d2d2;
    }

    /* .shop-page .axil-shop-top .category-select{display: none;} - Removed to show sort dropdown */

    /* Ensure sort dropdown is visible and properly styled on all pages */
    .axil-shop-top .category-select {
        display: block !important;
    }

    .single-select {
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 6px;
        padding: 8px 12px;
        font-size: 14px;
        color: #495057;
        min-width: 180px;
        height: 40px;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 8px center;
        background-size: 16px;
        padding-right: 35px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .single-select:hover {
        border-color: #f39c12;
        box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.1);
    }

    .single-select:focus {
        outline: none;
        border-color: #f39c12;
        box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.2);
    }

    .shop-page .axil-section-gap {
        padding: 0px;
    }

    .shop-page .axil-breadcrumb-area {
        padding: 40px 0 0px;
    }

    .store-page .axil-breadcrumb-area {
        padding: 20px 0 30px;
    }

    .store-page .store-icon {
        text-align: center;
    }

    .store-page .store-icon img {
        width: 200px;
        height: 200px;
    }

    .store-page .social-share.ss1 {
        display: flex;
    }

    .store-page .product-content .social-share {
        display: none;
    }

    .store-page .product-content .social-share a {
        height: 25px;
        width: 25px;
    }

    .store-page .axil-product>.thumbnail {
        min-height: 225px;
    }

    /* Mobile Store Layout */
    .store-breadcrumb-area .row {
        margin: 0;
        min-height: auto;
    }

    .store-breadcrumb-area .col-md-2,
    .store-breadcrumb-area .col-md-10 {
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .store-breadcrumb-area .col-lg-3 {
        display: block;
        text-align: center;
        margin-top: 20px;
    }

    .store-icon {
        text-align: center;
        margin-bottom: 15px;
    }

    .store-icon img {
        width: 120px;
        height: 120px;
    }

    .trending-market-icon {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .trending-market-icon i {
        font-size: 5rem;
    }

    .title {
        font-size: 2.2rem;
        text-align: center;
    }

    .slug {
        text-align: center;
    }

    .description {
        text-align: center;
    }

    .store-breadcrumb-area .social-share a {
        height: 35px;
        width: 35px;
    }

    /* Mobile Categories and Sort */
    .sort-filter-section {
        margin: 20px 0 15px 0;
        padding: 0 10px;
    }

    .axil-shop-sidebar {
        padding: 15px;
        margin-bottom: 20px;
    }

    .toggle-list .title {
        font-size: 1.1rem;
    }

    .shop-submenu .form-check-label {
        font-size: 13px;
    }

    .modern-filter-btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    /* Product Page */
    .axil-single-product-area .pro-des-features {
        justify-content: center;
    }

    .axil-single-product-area .pro-des-features li {
        font-size: 13px;
    }

    .axil-single-product-area .product-desc-wrapper {
        padding-top: 10px;
    }

    .single-product-content .inner .product-title {
        font-size: 20px;
    }

    .single-product-thumbnail .thumbnail img {
        width: 100%;
    }
}


@import url(https://fonts.googleapis.com/css?family=Lato);

.faq-heading {
    font-family: Lato;
    font-weight: 400;
    font-size: 19px;
    -webkit-transition: text-indent 0.2s;
    text-indent: 20px;
    color: #333;
}

.faq-text {
    font-family: Open Sans;
    font-weight: 400;
    color: #919191;
    width: 95%;
    padding-left: 20px;
    margin-bottom: 30px;
}

.faq {
    width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 4px;
    position: relative;
    border: 1px solid #E1E1E1;
}

.faq label {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 56px;
    padding-top: 1px;
    background-color: #FAFAFA;
    border-bottom: 1px solid #E1E1E1;
}

.faq input[type="checkbox"] {
    display: none;
}

.faq .faq-arrow {
    width: 5px;
    height: 5px;
    transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
    border-top: 2px solid rgba(0, 0, 0, 0.33);
    border-right: 2px solid rgba(0, 0, 0, 0.33);
    float: right;
    position: relative;
    top: -30px;
    right: 27px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.faq input[type="checkbox"]:checked+label>.faq-arrow {
    transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.faq input[type="checkbox"]:checked+label {
    display: block;
    background: rgba(255, 255, 255, 255) !important;
    color: #4f7351;
    height: 225px;
    transition: height 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.faq input[type='checkbox']:not(:checked)+label {
    display: block;
    transition: height 0.8s;
    height: 60px;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

::-webkit-scrollbar {
    display: none;
}

.faq .faq-arrow {
    width: 5px;
    height: 5px;
    border-top: 2px solid rgba(0, 0, 0, 0.33);
    border-right: 2px solid rgba(0, 0, 0, 0.33);
    float: right;
    position: relative;
    top: -30px;
    right: 27px;
}

.faq input[type="checkbox"]:checked+label>.faq-arrow {
    transition: transform 0.8s, -webkit-transform 0.8s;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.faq input[type="checkbox"]:checked+label {
    display: block;
    background: rgba(255, 255, 255, 255) !important;
    color: #4f7351;
    height: 225px;
    transition: height 0.8s;
}

.faq input[type='checkbox']:not(:checked)+label {
    display: block;
    transition: height 0.8s;
    height: 60px;
}

::-webkit-scrollbar {
    display: none;
}

/* Styles to display plus and minus buttons inline */
.input-counter {
    display: flex;
    align-items: center;
}

/* Style for the quantity value */
.quantity-value {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    /* This will make it perfectly round */
    border: 1px solid #ccc;
    background-color: #f5f5f5;
    margin: 0 5px;
    font-size: 14px;
    /* Adjust font size as needed */
    font-weight: bold;
    /* Adjust font weight as needed */
}

/* The rest of your existing CSS for the input element */
.input-counter input {
    width: 50px;
    padding: 5px;
    border: 1px solid #ccc;
    background-color: #f5f5f5;
    outline: none;
}


/* Your existing CSS for the buttons */

/* @DAM Added by CSS
/* Remove spinner arrows in number input for Chrome, Safari, Edge */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove spinner arrows in number input for Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.header-action .my-account .my-account-dropdown .reg-footer {
    margin-top: 23px;
    margin-bottom: 20px;
}

.header-action .my-account .my-account-dropdown .login-btn {
    margin-top: 0px;
    margin-bottom: 0px;
}


/* Dynamic Header Link Highlighting Based on Current Page */
.axil-header-top .quick-link li a.active-page {
    color: #f39c12 !important;
    font-weight: 600;
}

.axil-header-top .quick-link li a.active-page:hover {
    color: #e67e22 !important;
}

.axil-header-top .quick-link li a.active-page i {
    color: #f39c12 !important;
    font-size: 14px;
}

.axil-header-top .quick-link li a.active-page:hover i {
    color: #e67e22 !important;
}

/* Registration Page Styling */
.registration-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.registration-form-card input:focus,
.registration-form-card input:focus-visible {
    border-color: #f39c12 !important;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1) !important;
    outline: none !important;
}

/* Mobile Number Input Styling */
#phone_number {
    font-family: inherit !important;
    letter-spacing: normal !important;
}

#phone_number::placeholder {
    font-family: inherit !important;
    letter-spacing: normal !important;
}

.registration-form-card button:hover:not(:disabled) {
    background: #e67e22 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4) !important;
}

.download-app-card a:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-1px);
}

/* Why Choose Section Styling */
.why-choose-section .benefit-item:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.why-choose-section .benefit-item:hover .benefit-icon {
    background: #e67e22 !important;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Download App Card Hover Effects */
.download-app-card a:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Login Page Styling */
.login-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 100vh;
}

.login-form-card input:focus,
.login-form-card input:focus-visible {
    border-color: #e67e22 !important;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1) !important;
    outline: none !important;
}

.login-form-card button:hover:not(:disabled) {
    background: #d35400 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4) !important;
}

.features-section .feature-item:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.features-section .feature-item:hover .feature-icon {
    background: #d35400 !important;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Become a Reseller Form Styling */
.contact-form input:focus,
.contact-form input:focus-visible,
.contact-form textarea:focus,
.contact-form textarea:focus-visible {
    border-color: #f39c12 !important;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1) !important;
    outline: none !important;
}

/* Contact Form Card Styling */
.contact-form-card input:focus,
.contact-form-card input:focus-visible,
.contact-form-card textarea:focus,
.contact-form-card textarea:focus-visible {
    border-color: #f39c12 !important;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1) !important;
    outline: none !important;
}

.contact-form-card button:hover:not(:disabled) {
    background: #e67e22 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4) !important;
}

/* Mobile Responsive for Registration and Login */
@media (max-width: 768px) {

    .registration-section,
    .login-section {
        padding: 30px 0;
    }

    .download-app-card,
    .registration-form-card,
    .login-form-card,
    .why-choose-section,
    .features-section {
        padding: 25px 20px !important;
    }

    .download-app-card h3 {
        font-size: 18px !important;
    }

    .registration-form-card h2,
    .login-form-card h2 {
        font-size: 28px !important;
    }

    .why-choose-section h3,
    .features-section h3 {
        font-size: 20px !important;
    }

    .benefit-item,
    .feature-item {
        margin-bottom: 20px !important;
    }

    .benefit-item h4,
    .feature-item h4 {
        font-size: 15px !important;
        text-align: left !important;
    }

    .benefit-item p,
    .feature-item p {
        font-size: 13px !important;
    }
}

@media (max-width: 576px) {
    .registration-section .container .row {
        margin: 0 -10px;
    }

    .download-app-card,
    .registration-form-card,
    .why-choose-section {
        margin: 0 10px 20px 10px;
    }
}

/* ============================================
   MYNTRA-STYLE MEGA MENU
   ============================================ */

/* Desktop Mega Menu Styles */
.mega-menu-wrapper {
    position: relative;
}

.mega-menu-item {
    position: static !important;
}

.mega-menu-trigger {
    transition: color 0.2s ease;
}

.mega-menu-item:hover .mega-menu-trigger,
.mega-menu-item:focus-within .mega-menu-trigger {
    color: #f19100;
}

.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-width: 1200px;
    background: #ffffff;
    border: 1px solid #eaeaec;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 0;
    padding: 30px 40px;
}

.mega-menu-item:hover .mega-menu-dropdown,
.mega-menu-item:focus-within .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    max-width: 100%;
    margin: 0 auto;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 50px 40px;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-group-title {
    font-size: 18px;
    font-weight: 700;
    color: #f19100;
    text-decoration: none;
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: none;
    transition: color 0.2s ease;
    line-height: 1.4;
    display: block;
}

.mega-menu-group-title:hover,
.mega-menu-group-title:focus {
    color: #f19100;
    outline: none;
}

.mega-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-menu-items li {
    margin: 0;
}

.mega-menu-items a {
    font-size: 15px;
    color: #282c3f;
    text-decoration: none;
    display: block;
    /* padding: 8px 0; */
    transition: color 0.2s ease;
    line-height: 1.5;
}

.mega-menu-items a:hover,
.mega-menu-items a:focus {
    color: #f19100;
    outline: none;
}

/* Mobile Accordion Menu */
@media (max-width: 991px) {
    .mega-menu-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        max-width: 100%;
        background: transparent;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mega-menu-item.mobile-open .mega-menu-dropdown {
        max-height: 2000px;
        padding: 15px 0;
    }

    .mega-menu-content {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mega-menu-column {
        border-bottom: 1px solid #eaeaec;
        padding: 15px 0;
    }

    .mega-menu-group-title {
        font-size: 15px;
        font-weight: 600;
        color: #282c3f;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        user-select: none;
    }

    .mega-menu-group-title::after {
        content: '+';
        font-size: 20px;
        font-weight: 300;
        color: #696e79;
        transition: transform 0.3s ease;
    }

    .mega-menu-column.mobile-open .mega-menu-group-title::after {
        transform: rotate(45deg);
    }

    .mega-menu-items {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 0;
        padding-left: 15px;
    }

    .mega-menu-column.mobile-open .mega-menu-items {
        max-height: 1000px;
        margin-top: 10px;
    }

    .mega-menu-items a {
        font-size: 14px;
        padding: 8px 0;
    }

    .mega-menu-items a::before {
        display: none;
    }

    .mega-menu-items a:hover,
    .mega-menu-items a:focus {
        padding-left: 0;
        color: #f19100;
    }

    .mega-menu-trigger {
        cursor: pointer;
    }
}

/* Keyboard Navigation Styles - No outline, just color change */
.mega-menu-trigger:focus,
.mega-menu-group-title:focus,
.mega-menu-items a:focus {
    outline: none;
    color: #f19100;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Smooth Animations */
.mega-menu-dropdown * {
    transition: all 0.2s ease;
}

/* Active State */
.mega-menu-item.active .mega-menu-trigger {
    color: #f19100;
    font-weight: 600;
}

/* ============================================
   MyDigitalMart Header Design
   ============================================ */

/* Main Header Container */
.mydigitalmart-main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.mydigitalmart-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo Section */
.mydigitalmart-logo-section {
    flex-shrink: 0;
    min-width: 150px;
}

.mydigitalmart-logo {
    display: block;
    text-decoration: none;
}

.mydigitalmart-logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* Search Section - Center */
.mydigitalmart-search-section {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

.mydigitalmart-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
    height: 36px;
}

.search-icon-left {
    position: absolute;
    left: 14px;
    color: #f19100;
    font-size: 18px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mydigitalmart-search-input {
    flex: 1;
    width: 100%;
    height: 36px;
    padding: 0 50px 0 40px;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #000;
    outline: none;
    font-weight: 400;
}

.mydigitalmart-search-input::placeholder {
    color: #999;
    font-size: 14px;
    font-weight: 400;
}

.mydigitalmart-search-btn {
    position: absolute;
    right: 0;
    width: 44px;
    height: 36px;
    background-color: #f19100;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.mydigitalmart-search-btn:hover {
    background-color: #e68200;
}

.mydigitalmart-search-btn i {
    font-size: 18px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Ensure cart count is hidden when 0 */
.mydigitalmart-cart-count[data-count="0"],
.mydigitalmart-cart-count[data-count=""] {
    display: none !important;
    visibility: hidden;
}

/* Show cart count only when greater than 0 */
.mydigitalmart-cart-count:not([data-count="0"]):not([data-count=""]) {
    display: flex !important;
    visibility: visible;
}

/* Actions Section - Right */
.mydigitalmart-actions-section {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.mydigitalmart-action-item {
    position: relative;
}

/* Become a Seller - Always Orange */
.mydigitalmart-action-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #f19100;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 12px;
    transition: all 0.2s ease;
    cursor: pointer;
    line-height: 1.2;
}

.mydigitalmart-action-link:hover {
    color: #e68200;
}

.mydigitalmart-action-link .mydigitalmart-action-text {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    color: #f19100;
    transition: color 0.2s ease;
}

.mydigitalmart-action-link:hover .mydigitalmart-action-text {
    color: #e68200;
}

.mydigitalmart-action-link i {
    font-size: 20px;
    color: #f19100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.2s ease;
}

.mydigitalmart-action-link:hover i {
    color: #e68200;
}

/* Login and Cart - Default Black, Hover Orange */
.mydigitalmart-account-link,
.mydigitalmart-cart-link,
.mydigitalmart-wishlist-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #212121;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 12px;
    transition: all 0.2s ease;
    cursor: pointer;
    line-height: 1.2;
}

.mydigitalmart-account-link:hover,
.mydigitalmart-cart-link:hover,
.mydigitalmart-wishlist-link:hover {
    color: #f19100;
}

.mydigitalmart-account-link .mydigitalmart-action-text,
.mydigitalmart-cart-link .mydigitalmart-action-text,
.mydigitalmart-wishlist-link .mydigitalmart-action-text {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    color: #212121;
    transition: color 0.2s ease;
}

.mydigitalmart-account-link:hover .mydigitalmart-action-text,
.mydigitalmart-cart-link:hover .mydigitalmart-action-text,
.mydigitalmart-wishlist-link:hover .mydigitalmart-action-text {
    color: #f19100;
}

.mydigitalmart-account-link i,
.mydigitalmart-cart-link i,
.mydigitalmart-wishlist-link i {
    font-size: 20px;
    color: #212121;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.2s ease;
    position: relative;
}

.mydigitalmart-account-link:hover i,
.mydigitalmart-cart-link:hover i,
.mydigitalmart-wishlist-link:hover i {
    color: #f19100;
}

.mydigitalmart-account-link .fas.fa-chevron-down {
    font-size: 14px;
    margin-left: 6px;
    color: #212121;
    transition: color 0.2s ease;
}

.mydigitalmart-account-link:hover .fas.fa-chevron-down {
    color: #f19100;
}

/* Cart Count Badge */
.mydigitalmart-cart-item,
.mydigitalmart-wishlist-item {
    position: relative;
}

.mydigitalmart-cart-link,
.mydigitalmart-wishlist-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Cart Count - Show inside cart icon, hide if 0 */
.mydigitalmart-cart-link i,
.mydigitalmart-wishlist-link i {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mydigitalmart-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff6161;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.mydigitalmart-cart-count:not(:empty) {
    display: flex;
}

.mydigitalmart-cart-count[data-count="0"],
.mydigitalmart-cart-count:empty {
    display: none !important;
}

/* Wishlist Count Badge - Same styling as cart count */
.mydigitalmart-wishlist-count,
.wishlist-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff6161;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.mydigitalmart-wishlist-count:not(:empty),
.wishlist-count:not(:empty) {
    display: flex;
}

.mydigitalmart-wishlist-count[data-count="0"],
.mydigitalmart-wishlist-count:empty,
.wishlist-count[data-count="0"],
.wishlist-count:empty {
    display: none !important;
}

/* Dropdowns */
.mydigitalmart-account-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.mydigitalmart-account-item:hover .mydigitalmart-account-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mydigitalmart-account-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.mydigitalmart-account-dropdown li {
    margin: 0;
}

.mydigitalmart-account-dropdown a {
    display: block;
    padding: 12px 20px;
    color: #212121;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    line-height: 1.4;
    white-space: nowrap;
}

.mydigitalmart-account-dropdown a.signup-link {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mydigitalmart-account-dropdown a:hover {
    background-color: #fff5e6;
    color: #f19100;
}

/* Active state for account menu items */
.mydigitalmart-account-item.active .mydigitalmart-account-link,
.mydigitalmart-account-item.active .mydigitalmart-account-link .mydigitalmart-action-text,
.mydigitalmart-account-item.active .mydigitalmart-account-link i {
    color: #e67e22;
}

.mydigitalmart-account-dropdown a.active {
    background-color: #fff5e6;
    color: #e67e22;
    font-weight: 600;
}

.mydigitalmart-account-dropdown a.active i {
    color: #e67e22;
}

/* Category Navigation */
.mydigitalmart-category-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 8px 0;
}

.mydigitalmart-category-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.mydigitalmart-category-menu>li {
    position: relative;
}

.mydigitalmart-category-menu>li>a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #212121;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 0;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.mydigitalmart-category-menu>li>a:hover {
    color: #f19100;
}

/* Active state for current category */
.mydigitalmart-category-menu>li.current-menu-item>a,
.mydigitalmart-category-menu>li>a.active-category-link {
    color: #f19100 !important;
    border-bottom: 2px solid #f19100;
    padding-bottom: 8px;
    font-weight: 700;
}

.mega-menu-group-title.active-category-link {
    color: #f19100 !important;
    font-weight: 700;
}

.mega-menu-items a.active-category-link {
    color: #f19100 !important;
    font-weight: 600;
}

.mydigitalmart-category-menu>li>a .fa-chevron-down {
    font-size: 12px;
    color: #999;
    margin-left: 2px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-toggle button {
    background: none;
    border: none;
    font-size: 22px;
    color: #212121;
    cursor: pointer;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.mobile-menu-toggle button:hover {
    color: #f19100;
}

.mobile-menu-toggle button i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Mobile Search Modal */
.mobile-search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-search-modal.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.mobile-search-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 10000;
}

.mobile-search-modal.active .mobile-search-content {
    transform: translateY(0);
}

.mobile-search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
}

.mobile-search-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.mobile-search-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s ease;
}

.mobile-search-close:hover {
    color: #2874f0;
}

.mobile-search-body {
    padding: 20px;
}

.mobile-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f0f0f0;
    border-radius: 2px;
    padding: 8px 12px;
}

.mobile-product-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #1a1a1a;
    outline: none;
    padding: 8px 0;
}

.mobile-product-search-input::placeholder {
    color: #999;
}

.mobile-wooc-btn-search {
    background-color: #f19100;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 2px;
    transition: background-color 0.2s ease;
}

.mobile-wooc-btn-search:hover {
    background-color: #e68200;
}

/* Responsive Design */
@media only screen and (max-width: 1199px) {
    .mydigitalmart-search-section {
        max-width: 400px;
    }

    .mydigitalmart-actions-section {
        gap: 15px;
    }

    .mydigitalmart-action-text {
        display: none;
    }

    .mydigitalmart-action-link,
    .mydigitalmart-account-link,
    .mydigitalmart-cart-link,
    .mydigitalmart-wishlist-link {
        padding: 8px;
    }
}

@media only screen and (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }

    .mydigitalmart-search-section {
        display: none;
    }

    .mydigitalmart-category-nav {
        display: none;
    }

    .mydigitalmart-actions-section {
        gap: 10px;
    }

    .mydigitalmart-logo-section {
        min-width: 120px;
    }

    .mydigitalmart-logo img {
        max-height: 40px;
    }
}

/* ============================================
   MODERN CART PAGE STYLES
   ============================================ */

/* Cart Dropdown Styles */
.cart-dropdown {
    z-index: 99999;
}

.cart-dropdown .cart-content-wrap {
    padding: 20px 30px;
}

/* Hide cart footer when cart is empty - will be controlled by JavaScript */
.cart-dropdown .cart-footer {
    display: block;
}

/* Modern Cart Page Styles */
.modern-cart-area {
    padding: 0;
    background-color: #ffffff;
    min-height: 60vh;
}

.modern-cart-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 15px 60px;
}

.modern-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.cart-page-title {
    font-size: 24px;
    font-weight: 700;
    color: #212121;
    margin: 0;
}

.continue-shopping-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f19100;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
}

.continue-shopping-link:hover {
    color: #e68200;
}

/* Empty Cart State */
.empty-cart-state {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

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

.empty-cart-state h3 {
    font-size: 22px;
    color: #212121;
    margin-bottom: 10px;
}

.empty-cart-state p {
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
}

.start-shopping-btn {
    background-color: #f19100;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.start-shopping-btn:hover {
    background-color: #e68200;
    color: #ffffff;
}

/* Cart Items Container */
.cart-items-container {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    padding: 0;
    margin-top: 0;
}

.cart-item-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cart-item-list .cart-item-card {
    margin-top: 0;
    margin-bottom: 8px;
    border-radius: 8px;
    border: 1px solid rgb(233, 236, 239);
}

.cart-item-list .cart-item-card:first-child {
    margin-top: 0;
}

.cart-item-list .cart-item-card:last-child {
    margin-bottom: 0;
}

/* Card-Based Cart Item Design */
.cart-item-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eceef1;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.cart-item-card:first-child {
    margin-top: 0;
}

.cart-item-card:hover {
    border-color: #c8cbd0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09);
    transform: translateY(-2px);
}

.cart-item-content {
    display: flex;
    padding: 16px 18px;
    gap: 16px;
    margin-bottom: 0;
}

/* Image Wrapper — fixed size container with overflow:hidden for clean corners */
.cart-item-image-wrapper {
    flex-shrink: 0;
    display: block;
    line-height: 0;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    border: 1px solid #eceef1;
    cursor: pointer;
}

/* Hover Overlay — use ::before so the icon span z-index sits above it */
.cart-item-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.25s ease;
    pointer-events: none;
    z-index: 1;
}

.cart-item-image-wrapper:hover::before {
    background: rgba(0, 0, 0, 0.28);
}

/* Eye icon — sits above the overlay (z-index: 2) */
.cart-item-image-wrapper .img-hover-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 2;
}

.cart-item-image-wrapper:hover .img-hover-icon {
    opacity: 1;
}

/* The circle: width/height 40px MUST be set before border-radius for a perfect circle */
.cart-item-image-wrapper .img-hover-icon i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    /* inline-flex works on <i> (inline element) — centers the icon glyph */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #222;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
    flex-shrink: 0;
    line-height: 1;
}

.cart-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
    transition: transform 0.3s ease;
}

.cart-item-image-wrapper:hover .cart-item-image {
    transform: scale(1.06);
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.cart-item-title {
    font-size: 17px;
    font-weight: 600;
    color: #212121;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    margin: 0;
    transition: color 0.2s ease;
}

.cart-item-title:hover {
    color: #f19100;
}

/* Variants Row - Size and Quantity on same line */
.cart-variants-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.cart-variant-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.variant-label {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.variant-select {
    font-size: 14px;
    color: #212121;
    padding: 4px 8px;
    padding-right: 24px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    background: #ffffff;
    cursor: pointer;
    min-width: 60px;
    height: 32px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 6px center;
    background-size: 12px;
}

.variant-select:disabled {
    background-color: #f8f9fa;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    cursor: not-allowed;
    color: #666;
}

.variant-select.quantity-select:not(:disabled) {
    cursor: pointer;
}

.variant-select.quantity-select:not(:disabled):hover {
    border-color: #f19100;
}

.variant-select.quantity-select:not(:disabled):focus {
    outline: none;
    border-color: #f19100;
    box-shadow: 0 0 0 2px rgba(241, 145, 0, 0.1);
}

/* Price and Qty Section - All in One Line */
.cart-price-qty-section {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Price Section - All in One Line */
.cart-price-section {
    margin-top: 8px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.cart-current-price {
    font-size: 20px;
    font-weight: 700;
    color: #212121;
    margin: 0;
    display: inline-block;
}

.cart-original-price {
    font-size: 15px;
    color: #999;
    text-decoration: line-through;
    display: inline-block;
}

.cart-discount-badge {
    font-size: 15px;
    color: #e74c3c;
    font-weight: 600;
    display: inline-block;
}

/* Coupon Discount Section */
.cart-coupon-info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 12px;
    color: #17a2b8;
}

.coupon-text {
    color: #17a2b8;
}

.coupon-info-icon {
    font-size: 13px;
    color: #007bff;
    cursor: help;
}

/* Bottom Actions */
.cart-item-actions-bottom {
    display: flex;
    align-items: center;
    border-top: 1px solid #e9ecef;
    padding: 10px 20px;
    background: #f8f9fa;
}

.cart-action-btn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-remove-btn {
    color: #666;
}

.cart-remove-btn:hover {
    color: #212121;
}

.cart-wishlist-btn {
    color: #f19100;
}

.cart-wishlist-btn:hover {
    color: #e68200;
}

.cart-action-divider {
    width: 1px;
    height: 14px;
    background: #dee2e6;
    margin: 0 14px;
}

/* Order Summary */
.modern-cart-summary {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    padding: 20px;
}

.summary-title {
    font-size: 18px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9ecef;
}

.summary-details {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.summary-row.summary-total {
    padding-top: 10px;
    border-top: 2px solid #e9ecef;
    margin-top: 10px;
    margin-bottom: 0;
}

.summary-label {
    font-size: 15px;
    color: #666;
}

.summary-total .summary-label {
    font-size: 17px;
    font-weight: 700;
    color: #212121;
}

.summary-value {
    font-size: 17px;
    font-weight: 700;
    color: #212121;
}

.summary-total .summary-value {
    font-size: 22px;
    color: #f19100;
}

.summary-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.btn-checkout {
    background-color: #f19100;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: none;
    font-size: 15px;
}

.btn-checkout:hover {
    background-color: #e68200;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(241, 145, 0, 0.25);
}

.btn-continue {
    background-color: #ffffff;
    color: #212121;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
    font-size: 15px;
}

.btn-continue:hover {
    border-color: #f19100;
    color: #f19100;
}

.summary-note {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
    color: #999;
    font-size: 12px;
}

.summary-note i {
    color: #f19100;
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .modern-cart-wrapper {
        padding: 12px 12px 40px;
    }

    .modern-cart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 12px;
    }

    .cart-page-title {
        font-size: 22px;
    }

    .modern-cart-summary {
        position: static;
        margin-top: 20px;
    }

    .cart-item-content {
        gap: 12px;
        padding: 14px;
    }

    .cart-item-image {
        width: 90px;
        height: 90px;
    }

    .cart-variants-row {
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .modern-cart-wrapper {
        padding: 10px 10px 30px;
    }

    .cart-item-card {
        margin-bottom: 12px;
    }

    .cart-item-content {
        padding: 14px;
        gap: 12px;
        flex-direction: row;
    }

    .cart-item-image-wrapper {
        width: 90px;
        height: 90px;
        flex-shrink: 0;
    }

    .cart-item-image {
        width: 100%;
        height: 100%;
    }

    .cart-variants-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .cart-item-title {
        font-size: 15px;
    }

    .cart-current-price {
        font-size: 18px;
    }

    .cart-item-actions-bottom {
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
    }

    .cart-action-divider {
        display: none;
    }

    .cart-action-btn {
        width: 100%;
        text-align: center;
        padding: 10px;
        border: 1px solid #e9ecef;
        border-radius: 4px;
    }

    .cart-remove-btn {
        background: #ffffff;
    }

    .cart-remove-btn:hover {
        background: #f8f9fa;
    }

    .cart-wishlist-btn {
        background: #ffffff;
        border-color: #f19100;
    }

    .cart-wishlist-btn:hover {
        background: #fff5e6;
        color: #e68200;
    }
}

/* ============================================================
   PRODUCT CARD ACTION BUTTONS — Premium Floating FAB Design
   Wishlist (heart) + Quickview (eye) appear on image hover,
   stacked vertically on the RIGHT side of the card image.
   ============================================================ */

/* Container: absolute, right-aligned, stacked column */
.product-action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 20;
}

/* Base style for both floating action buttons */
.wishlist-btn-listing,
.quickview-btn-listing,
.cart-btn-listing,
.remove-btn-listing {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    border: none;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease,
        background 0.3s ease,
        opacity 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
    /* Slide-in from right on hover */
    opacity: 0;
    transform: translateX(18px);
}

/* Wishlist button — white bg, pink heart icon */
.wishlist-btn-listing {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
    transition-delay: 0.05s;
}

/* Quickview button — white bg, dark eye icon */
.quickview-btn-listing {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
    transition-delay: 0.12s;
}

/* Reveal buttons when product card is hovered */
.axil-product:hover .wishlist-btn-listing,
.axil-product:hover .quickview-btn-listing {
    opacity: 1;
    transform: translateX(0);
}

/* Wishlist icon */
.wishlist-btn-listing i {
    font-size: 16px;
    color: #e91e63;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
    line-height: 1;
}

/* Hide text span — icon-only design */
.wishlist-btn-listing span {
    display: none;
}

/* Wishlist hover */
.wishlist-btn-listing:hover {
    background: #ffffff !important;
    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.40) !important;
    transform: scale(1.12) translateX(0) !important;
}

.wishlist-btn-listing:hover i {
    color: #e91e63 !important;
    transform: scale(1.15) !important;
}

.wishlist-btn-listing:active {
    transform: scale(0.96);
    box-shadow: 0 2px 6px rgba(233, 30, 99, 0.2);
}

/* Wishlist — added/wishlisted state */
.wishlist-btn-listing.wishlist-added {
    background: #e91e63 !important;
    box-shadow: 0 4px 14px rgba(233, 30, 99, 0.45) !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
    pointer-events: none;
}

.wishlist-btn-listing.wishlist-added i {
    color: #ffffff !important;
}

/* Quickview icon */
.quickview-btn-listing i {
    font-size: 16px;
    color: #333333;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
    line-height: 1;
}

/* Quickview hover */
.quickview-btn-listing:hover {
    background: #ffffff !important;
    box-shadow: 0 6px 18px rgba(33, 33, 33, 0.28) !important;
    transform: scale(1.12) translateX(0) !important;
}

.quickview-btn-listing:hover i {
    color: #333333 !important;
    transform: scale(1.15) !important;
}

.quickview-btn-listing:active {
    transform: scale(0.96);
}

/* Cart Button */
.cart-btn-listing {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
    transition-delay: 0.05s;
}

.cart-btn-listing span {
    display: none;
}

.cart-btn-listing i {
    font-size: 16px;
    color: #007bff;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
    line-height: 1;
}

.cart-btn-listing:hover {
    background: #ffffff !important;
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.40) !important;
    transform: scale(1.12) translateX(0) !important;
}

.cart-btn-listing:hover i {
    color: #007bff !important;
    transform: scale(1.15) !important;
}

.cart-btn-listing:active {
    transform: scale(0.96);
}

/* Remove Button */
.remove-btn-listing {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
    transition-delay: 0.08s;
}

.remove-btn-listing span {
    display: none;
}

.remove-btn-listing i {
    font-size: 16px;
    color: #dc3545;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
    line-height: 1;
}

.remove-btn-listing:hover {
    background: #ffffff !important;
    box-shadow: 0 6px 18px rgba(220, 53, 69, 0.40) !important;
    transform: scale(1.12) translateX(0) !important;
}

.remove-btn-listing:hover i {
    color: #dc3545 !important;
    transform: scale(1.15) !important;
}

.remove-btn-listing:active {
    transform: scale(0.96);
}

/* Reveal buttons when product card is hovered */
.axil-product:hover .cart-btn-listing,
.axil-product:hover .remove-btn-listing {
    opacity: 1;
    transform: translateX(0);
}

/* Wishlist Button - Added State (Pink with Box Shadow) — also covers product page button */
.btn-success-utsav.wishlist-added {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%) !important;
    color: #ffffff !important;
    border: 2px solid #e91e63 !important;
    cursor: not-allowed !important;
}

.btn-success-utsav.wishlist-added:hover {
    background: linear-gradient(135deg, #c2185b 0%, #ad1457 100%) !important;
    color: #ffffff !important;
    transform: translateY(0) !important;
}

/* Success Animation */
.wishlist-success-animation {
    animation: wishlistSuccess 0.6s ease-out;
}

@keyframes wishlistPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(233, 30, 99, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
    }
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.3);
    }

    50% {
        transform: scale(1.1);
    }

    75% {
        transform: scale(1.2);
    }
}

@keyframes wishlistSuccess {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.1) rotate(5deg);
    }

    60% {
        transform: scale(0.95) rotate(-5deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Wishlist Page - Add to Bag Button */
.wishlist-add-to-bag-btn {
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    border: none;
    border-radius: 8px;
    padding: 0 16px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    font-family: inherit;
    flex: 1;
    max-width: calc(100% - 54px);
    box-shadow: 0 2px 4px rgba(233, 30, 99, 0.2);
}

.wishlist-add-to-bag-btn i {
    font-size: 16px;
    color: #ffffff;
}

.wishlist-add-to-bag-btn span {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.wishlist-add-to-bag-btn:hover {
    background: linear-gradient(135deg, #c2185b 0%, #e91e63 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

/* Wishlist Add to Bag Button - Added State */
.wishlist-add-to-bag-btn[disabled] {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%) !important;
    cursor: default !important;
    opacity: 0.9;
}

.wishlist-add-to-bag-btn[disabled]:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%) !important;
    transform: none;
}



/* Product Hover Action Container — now just a transparent anchor for the FABs */
.product-hover-action {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
}

/* Let clicks pass through to card image EXCEPT on buttons themselves */
.product-hover-action .product-action-buttons {
    pointer-events: all;
}

/* Responsive: smaller FABs on mobile */
@media (max-width: 576px) {

    .wishlist-btn-listing,
    .quickview-btn-listing {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .wishlist-btn-listing i,
    .quickview-btn-listing i {
        font-size: 14px;
    }

    .product-action-buttons {
        top: 8px;
        right: 8px;
        gap: 6px;
    }
}

/* @DAM: Auto - Cart page minimal header styling (logo only, like Myntra/Flipkart) */
.cart-page-minimal-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .1);
}

.cart-page-header .mydigitalmart-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-page-header .mydigitalmart-logo img {
    max-height: 40px;
    width: auto;
    height: auto;
}

@media (max-width: 768px) {
    .cart-page-header .mydigitalmart-logo img {
        max-height: 35px;
    }
}

/* ============================================
   MODERN ACCOUNT PAGES STYLES START
   ============================================ */

/* Main Wrapper Class - Prevents CSS Conflicts */
.account-modern-wrapper {
    /* All account page styles scoped within this wrapper */
}

/* Simple Form Section - Matching Login Design */
.account-modern-wrapper .simple-form-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 60vh;
}

/* Use same classes as login form */
.account-modern-wrapper .mdm-form-controls {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

/* Form controls matching login */
.account-modern-wrapper .form-control {
    height: 48px;
    background: #fff;
    color: #000;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.account-modern-wrapper .form-control:focus,
.account-modern-wrapper .form-control:focus-visible {
    border-color: #e67e22 !important;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1) !important;
    outline: none !important;
}

.account-modern-wrapper .form-control::placeholder {
    color: rgba(0, 0, 0, 0.3) !important;
}

.account-modern-wrapper .form-label {
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 8px;
    font-size: 14px;
}

.account-modern-wrapper .form-label .required {
    color: #e74c3c;
}

.account-modern-wrapper .form-group {
    margin-bottom: 24px;
}

.account-modern-wrapper .validation-div {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    min-height: 20px;
}

/* Password Toggle Container - Matching Login */
.account-modern-wrapper .password-toggle-container {
    position: relative;
}

.account-modern-wrapper .password-toggle-container .form-control-password {
    padding-right: 50px;
}

.account-modern-wrapper .password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.account-modern-wrapper .password-toggle-btn[style*="display: inline-flex"],
.account-modern-wrapper .password-toggle-btn.show {
    display: inline-flex !important;
}

.account-modern-wrapper .password-toggle-btn:hover {
    color: #e67e22;
}

.account-modern-wrapper .password-toggle-btn i {
    font-size: 18px;
}

/* Input with Action Button */
.account-modern-wrapper .input-with-action-wrapper {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.account-modern-wrapper .input-wrapper-verified {
    flex: 1;
    position: relative;
}

.account-modern-wrapper .input-wrapper-verified .form-control {
    padding-right: 40px;
}

.account-modern-wrapper .verified-badge {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    font-size: 18px;
    z-index: 1;
}

.account-modern-wrapper .action-btn-change {
    padding: 12px 24px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: #333;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    height: 48px;
    display: flex;
    align-items: center;
}

.account-modern-wrapper .action-btn-change:hover {
    background: #f8f9fa;
    border-color: #e67e22;
    color: #e67e22;
}

/* Gender Buttons */
.account-modern-wrapper .gender-buttons {
    display: flex;
    gap: 12px;
}

.account-modern-wrapper .gender-btn {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: #333;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.account-modern-wrapper .gender-btn:hover {
    border-color: #e67e22;
    background: #fff5f0;
}

.account-modern-wrapper .gender-btn.active {
    border-color: #e67e22;
    background: #fff5f0;
    color: #e67e22;
}

.account-modern-wrapper .gender-btn.active i {
    color: #e67e22;
}

/* Submit Buttons - Matching Login */
.account-modern-wrapper .btn-submit-profile,
.account-modern-wrapper .btn-submit-password {
    width: 100%;
    padding: 14px;
    background: #e67e22;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.account-modern-wrapper .btn-submit-profile:hover:not(:disabled),
.account-modern-wrapper .btn-submit-password:hover:not(:disabled) {
    background: #d35400 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4) !important;
}

.account-modern-wrapper .btn-submit-profile:disabled,
.account-modern-wrapper .btn-submit-password:disabled {
    background: #f4a261 !important;
    /* Light orange/peach */
    cursor: not-allowed !important;
    opacity: 0.7 !important;
}

/* Modern Account Section */
.account-modern-wrapper .modern-account-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.account-modern-wrapper .modern-account-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.account-modern-wrapper .account-card-header {
    padding: 30px;
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: #ffffff;
}

.account-modern-wrapper .account-card-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.account-modern-wrapper .account-card-title i {
    font-size: 28px;
}

.account-modern-wrapper .account-card-subtitle {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.account-modern-wrapper .account-card-body {
    padding: 40px;
}

/* Modern Form Styles */
.account-modern-wrapper .modern-account-form {
    max-width: 100%;
}

.account-modern-wrapper .form-group-modern {
    margin-bottom: 24px;
}

.account-modern-wrapper .form-group-modern label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.account-modern-wrapper .form-group-modern .required {
    color: #e91e63;
}

.account-modern-wrapper .form-control-modern {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.account-modern-wrapper .form-control-modern:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.account-modern-wrapper .form-control-modern:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

.account-modern-wrapper .form-text-muted {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #666;
}

.account-modern-wrapper .validation-error {
    display: block;
    color: #e91e63;
    font-size: 12px;
    margin-top: 4px;
}

/* Password Input Wrapper */
.account-modern-wrapper .password-input-wrapper {
    position: relative;
}

.account-modern-wrapper .password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    font-size: 16px;
}

.account-modern-wrapper .password-toggle:hover {
    color: #e91e63;
}

/* Profile Image Upload */
.account-modern-wrapper .profile-image-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.account-modern-wrapper .profile-image-preview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.account-modern-wrapper .profile-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-modern-wrapper .profile-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: #ffffff;
    font-size: 48px;
}

.account-modern-wrapper .form-control-modern-file {
    display: none;
}

.account-modern-wrapper .upload-btn-modern {
    padding: 10px 20px;
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.account-modern-wrapper .upload-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

/* Form Actions */
.account-modern-wrapper .form-actions-modern {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
}

/* Modern Buttons */
.account-modern-wrapper .btn-modern {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.account-modern-wrapper .btn-modern-primary {
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: #ffffff;
}

.account-modern-wrapper .btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.account-modern-wrapper .btn-modern-secondary {
    background: #f5f5f5;
    color: #333;
}

.account-modern-wrapper .btn-modern-secondary:hover {
    background: #e0e0e0;
}

.account-modern-wrapper .btn-modern-outline {
    background: transparent;
    border: 2px solid #e91e63;
    color: #e91e63;
}

.account-modern-wrapper .btn-modern-outline:hover {
    background: #e91e63;
    color: #ffffff;
}

.account-modern-wrapper .btn-block {
    width: 100%;
    justify-content: center;
}

/* Orders List Modern */
.account-modern-wrapper .orders-list-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.account-modern-wrapper .order-card-modern {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.account-modern-wrapper .order-card-modern:hover {
    border-color: #e91e63;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.1);
}

.account-modern-wrapper .order-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.account-modern-wrapper .order-id {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.account-modern-wrapper .order-date {
    margin: 0;
    color: #666;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.account-modern-wrapper .order-status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.account-modern-wrapper .status-new,
.account-modern-wrapper .status-confirmed {
    background: #e3f2fd;
    color: #1976d2;
}

.account-modern-wrapper .status-delivered,
.account-modern-wrapper .status-completed {
    background: #e8f5e9;
    color: #388e3c;
}

.account-modern-wrapper .status-canceled,
.account-modern-wrapper .status-failed {
    background: #ffebee;
    color: #d32f2f;
}

.account-modern-wrapper .order-body-modern {
    margin-bottom: 20px;
}

.account-modern-wrapper .order-items-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.account-modern-wrapper .order-item-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    flex: 0 0 auto;
}

.account-modern-wrapper .order-item-preview img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.account-modern-wrapper .item-details {
    display: flex;
    flex-direction: column;
}

.account-modern-wrapper .item-name {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.account-modern-wrapper .item-qty {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.account-modern-wrapper .more-items {
    margin: 0;
    padding: 12px;
    color: #666;
    font-size: 13px;
    font-weight: 600;
}

.account-modern-wrapper .order-total-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.account-modern-wrapper .total-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.account-modern-wrapper .total-amount {
    font-size: 20px;
    font-weight: 700;
    color: #e91e63;
}

.account-modern-wrapper .order-footer-modern {
    display: flex;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

/* Empty State */
.account-modern-wrapper .empty-state-modern {
    text-align: center;
    padding: 60px 20px;
}

.account-modern-wrapper .empty-state-modern i {
    font-size: 64px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.account-modern-wrapper .empty-state-modern h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
}

.account-modern-wrapper .empty-state-modern p {
    color: #666;
    margin: 0 0 24px 0;
    font-size: 14px;
}

/* Payment Methods */
.account-modern-wrapper .payment-method-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.account-modern-wrapper .payment-tab-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #e0e0e0;
    background: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.account-modern-wrapper .payment-tab-btn.active {
    border-color: #e91e63;
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: #ffffff;
}

.account-modern-wrapper .payment-method-form {
    margin-top: 20px;
}

/* Header Dropdown Icons */
.mydigitalmart-account-dropdown ul li a i {
    width: 20px;
    margin-right: 8px;
    color: #212121;
    transition: color 0.2s ease;
}

.mydigitalmart-account-dropdown a.active i {
    color: #e67e22;
}

/* Responsive */
@media (max-width: 768px) {
    .account-modern-wrapper .account-card-body {
        padding: 24px;
    }

    .account-modern-wrapper .form-actions-modern {
        flex-direction: column;
    }

    .account-modern-wrapper .btn-modern {
        width: 100%;
        justify-content: center;
    }

    .account-modern-wrapper .order-header-modern {
        flex-direction: column;
        gap: 12px;
    }

    .account-modern-wrapper .order-footer-modern {
        flex-direction: column;
    }
}

/* ============================================
   MODERN ACCOUNT PAGES STYLES END
   ============================================ */

/* ============================================
   FOOTER DESIGN STYLES START
   ============================================ */

/* Footer About Text */
.footer-about-text {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Footer Social Text */
.footer-social-text {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Footer Social Links */
.footer-social-link {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social-link li {
    margin: 0;
}

.footer-social-link li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    color: #495057;
    font-size: 20px;
    transition: color 0.3s ease, background 0.3s ease;
    text-decoration: none;
    border: none;
}

.footer-social-link li a:hover {
    background: #ff497c;
    color: #ffffff;
    border: none;
}

/* Footer Widget Title Styling */
.axil-footer-widget .widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #292930;
    position: relative;
    padding-bottom: 12px;
}

.axil-footer-widget .widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #ff497c;
}

/* Footer Links Styling */
.axil-footer-widget .inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.axil-footer-widget .inner ul li {
    margin-bottom: 12px;
    margin-top: 0px;
}

.axil-footer-widget .inner ul li a {
    color: #6c757d;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    border: none;
}

.axil-footer-widget .inner .footer-social-link li a {
    color: #6c757d;
    font-size: 21px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    border: none;
    text-align: center;
    padding: 7px;
}

.axil-footer-widget .inner ul li a:hover {
    color: #ff497c;
    border: none;
    text-decoration: none;
}

.axil-footer-widget .inner .footer-social-link li a:hover i {
    color: #fff !important;

}

.axil-footer-widget .inner ul li a:after {
    display: none;
}

/* Support List Item */
.support-list-item {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-list-item li {
    margin-bottom: 12px;
}

.support-list-item li a {
    color: #6c757d;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-list-item li a:hover {
    color: #ff497c;
}

.support-list-item li a i {
    margin-right: 8px;
    color: #ff497c;
}

/* Footer Top Padding */
.footer-top {
    padding: 60px 0 40px;
}

/* Responsive Design */
@media (max-width: 767px) {
    .axil-footer-widget {
        margin-bottom: 40px;
    }

    .footer-social-link {
        justify-content: flex-start;
    }

    .footer-top {
        padding: 40px 0 20px;
    }
}

@media (max-width: 575px) {
    .footer-social-link li a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* ============================================
   FOOTER DESIGN STYLES END
   ============================================ */

/* ============================================
   ORDER CARDS MYNTRA-STYLE DESIGN START
   ============================================ */

/* Order Cards Container */
.orders-list-modern {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Individual Order Card */
.order-card-modern {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.order-card-modern:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    border-color: #e67e22;
}

/* Order Header Section */
.order-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 15px;
}

.order-meta-modern h3 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.order-meta-modern p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Order Items Preview */
.order-items-preview {
    margin-bottom: 20px;
}

.order-items-preview>div {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background 0.3s ease;
}

.order-items-preview>div:hover {
    background: #f0f1f3;
}

/* Order Footer Section */
.order-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 15px;
}

.order-footer-modern h4 {
    font-size: 22px;
    font-weight: 700;
    color: #e67e22;
    margin: 0;
}

/* Order Action Buttons */
.order-footer-modern button {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.order-footer-modern button:first-child {
    border: 2px solid #e67e22;
    background: #ffffff;
    color: #e67e22;
}

.order-footer-modern button:first-child:hover {
    background: #fff8f5;
    border-color: #d35400;
    color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
}

.order-footer-modern button:last-child {
    border: none;
    background: #e67e22;
    color: #ffffff;
}

.order-footer-modern button:last-child:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

/* Responsive Design for Order Cards */
@media (max-width: 768px) {
    .order-card-modern {
        padding: 20px;
    }

    .order-header-modern {
        flex-direction: column;
    }

    .order-footer-modern {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-footer-modern>div:last-child {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .order-footer-modern button {
        width: 100%;
        justify-content: center;
    }

    .order-items-preview>div {
        flex-direction: column;
        text-align: center;
    }

    .order-items-preview>div>div:first-child {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 575px) {
    .order-meta-modern h3 {
        font-size: 16px;
    }

    .order-footer-modern h4 {
        font-size: 20px;
    }
}

/* ============================================
   ORDER CARDS MYNTRA-STYLE DESIGN END
   ============================================ */

.axil-footer-widget ul li a.active {
    color: #f19100;
    font-weight: 700;
}

/* ========================================================================
   MYNTRA-STYLE MEGA MENU
   ======================================================================== */
.mydigitalmart-category-nav .mainmenu-nav .mainmenu {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.mydigitalmart-category-nav .mainmenu-nav .mainmenu>li>a {
    text-transform: uppercase !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    color: #282c3f !important;
    padding: 20px 0 !important;
    position: relative;
    letter-spacing: 0.3px;
    border-bottom: 4px solid transparent;
}

/* Active State for Main Menu */
.mydigitalmart-category-nav .mainmenu-nav .mainmenu>li.current-menu-item>a,
.mydigitalmart-category-nav .mainmenu-nav .mainmenu>li:hover>a {
    color: #f19100 !important;
    border-bottom: 4px solid #f19100 !important;
}

/* Remove pseudo-elements that cause the default black underline */
.mydigitalmart-category-nav .mainmenu-nav .mainmenu>li>a::before,
.mydigitalmart-category-nav .mainmenu-nav .mainmenu>li>a::after {
    display: none !important;
}

/* Remove default arrows for a cleaner look */
.mydigitalmart-category-nav .mainmenu-nav .mainmenu>li>a i.fa-chevron-down {
    display: none !important;
}

/* Mega Menu Dropdown Container */
.mydigitalmart-category-nav .mainmenu-nav .mainmenu>li .mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 1px solid #eaeaea;
    padding: 30px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mydigitalmart-category-nav .mainmenu-nav .mainmenu>li:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
}

/* Constrain content width inside full-width dropdown */
.mydigitalmart-category-nav .mainmenu-nav .mainmenu>li .mega-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Multi-column masonry layout */
.mydigitalmart-category-nav .mainmenu-nav .mainmenu>li .mega-menu-content {
    column-count: 5;
    column-gap: 30px;
}

/* Group container (Subcategory) */
.mydigitalmart-category-nav .mainmenu-nav .mainmenu>li .mega-menu-column {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 25px;
    display: inline-block;
    width: 100%;
}

/* Subcategory Title (Pink headers in Myntra) */
.mydigitalmart-category-nav .mainmenu-nav .mainmenu>li .mega-menu-group-title {
    font-weight: 700 !important;
    color: #f19100 !important;
    font-size: 18px !important;
    text-transform: capitalize !important;
    margin-bottom: 20px !important;
    display: block;
    text-decoration: none !important;
    letter-spacing: 0.2px;
}

.mydigitalmart-category-nav .mainmenu-nav .mainmenu>li .mega-menu-group-title:hover,
.mydigitalmart-category-nav .mainmenu-nav .mainmenu>li .mega-menu-group-title.active-category-link {
    text-decoration: underline !important;
    color: #f19100 !important;
}

/* Advanced Categories List */
.mydigitalmart-category-nav .mainmenu-nav .mainmenu>li .mega-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mydigitalmart-category-nav .mainmenu-nav .mainmenu>li .mega-menu-items li {
    margin-bottom: 10px;
}

.mydigitalmart-category-nav .mainmenu-nav .mainmenu>li .mega-menu-items li a {
    color: #282c3f !important;
    font-size: 16px !important;
    text-decoration: none !important;
    display: inline-block;
    transition: font-weight 0.2s ease;
    font-weight: 400 !important;
}

.mydigitalmart-category-nav .mainmenu-nav .mainmenu>li .mega-menu-items li a:hover,
.mydigitalmart-category-nav .mainmenu-nav .mainmenu>li .mega-menu-items li a.active-category-link {
    font-weight: 700 !important;
    color: #282c3f !important;
}

/* Ensure mobile menu doesn't break with these styles */
@media (max-width: 1199px) {
    .mydigitalmart-category-nav .mainmenu-nav .mainmenu {
        flex-direction: column;
        gap: 0;
    }

    .mydigitalmart-category-nav .mainmenu-nav .mainmenu>li>a {
        border-bottom: none !important;
    }

    .mydigitalmart-category-nav .mainmenu-nav .mainmenu>li.current-menu-item>a,
    .mydigitalmart-category-nav .mainmenu-nav .mainmenu>li:hover>a {
        border-bottom: none !important;
    }

    .mydigitalmart-category-nav .mainmenu-nav .mainmenu>li .mega-menu-dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        padding: 15px 0;
        transform: none;
    }

    .mydigitalmart-category-nav .mainmenu-nav .mainmenu>li:hover .mega-menu-dropdown,
    .mydigitalmart-category-nav .mainmenu-nav .mainmenu>li.active .mega-menu-dropdown {
        display: block;
    }

    .mydigitalmart-category-nav .mainmenu-nav .mainmenu>li .mega-menu-content {
        column-count: 1;
        /* Stack vertically on mobile */
    }
}

/* ========================================================================
   PREVENT DOUBLE SUBMIT — in-button loading state
   Applied via lockButton()/unlockButton() in custom.js. Keeps loading
   feedback scoped to the button itself (no page-wide overlay), matching
   the storefront's brand orange.
   ======================================================================== */

.btn-loading {
    position: relative;
    pointer-events: none !important;
    opacity: 0.85 !important;
    cursor: not-allowed !important;
}

.btn-loading-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 8px;
    vertical-align: -2px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #f19100;
    border-radius: 50%;
    animation: btn-loading-spin 0.65s linear infinite;
}

@keyframes btn-loading-spin {
    to {
        transform: rotate(360deg);
    }
}
}