
.msm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.msm-modal.msm-active {
    visibility: visible;
    opacity: 1;
}

.msm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.msm-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 0 0 20px 20px;
    padding: 15px 20px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 100vh;
    overflow-y: auto;
}

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

/* Search Header */
.msm-header {
    margin-bottom: 15px;
}

.msm-search-container {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 28px;
    padding: 8px 15px;
    background: #f9f9f9;
    transition: all 0.3s;
}

.msm-search-container:focus-within {
    border-color: var(--theme-color);
    background: white;
    box-shadow: 0 0 0 2px rgba(var(--theme-color-rgb), 0.1);
}

.msm-back-button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
    padding: 5px;
    display: flex;
    align-items: center;
}

.msm-search-input {
    flex: 1;
    border: none;
    padding: 8px 0;
    outline: none;
    font-size: 16px;
    background: transparent;
}

.msm-search-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #666;
    font-size: 20px;
}

/* Search Suggestions */
.msm-suggestions {
    margin-top: 20px;
    padding: 0 10px;
}

.msm-suggestion-title {
    color: #666;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.msm-suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.msm-tag {
    background: #f5f5f5;
    color: #333;
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.msm-tag:hover {
    background: var(--theme-color);
    color: white;
}

/* Search Results */
.msm-typed-search-box {
    margin-top: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 16px;
    max-height: 60vh;
    overflow-y: auto;
}

/* Loading State */
.msm-search-preloader {
    text-align: center;
    padding: 30px 0;
}

.msm-loader-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.msm-loader {
    border: 3px solid rgba(var(--theme-color-rgb), 0.1);
    border-radius: 50%;
    border-top: 3px solid var(--theme-color);
    width: 40px;
    height: 40px;
    animation: msm-spin 1s linear infinite;
}

@keyframes msm-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.msm-search-preloader p {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}

/* No Results State */
.msm-nothing-found {
    text-align: center;
    padding: 30px 20px;
}

.msm-nothing-found i {
    font-size: 40px;
    color: #ddd;
    margin-bottom: 15px;
}

.msm-nothing-found h4 {
    color: #333;
    font-size: 18px;
    margin-bottom: 8px;
}

.msm-nothing-found p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.msm-try-again {
    background: var(--theme-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.msm-try-again:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Search Results Items */
#msm-search-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.msm-search-result-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.2s;
}

.msm-search-result-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.msm-search-result-item a {
    display: flex;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.msm-search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 15px;
}

.msm-search-result-info {
    flex: 1;
}

.msm-search-result-item .msm-title {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Utility Class */
.msm-d-none {
    display: none !important;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .msm-content {
        max-width: 600px;
        margin: 20px auto 0;
        left: 50%;
        transform: translate(-50%, -100%);
        border-radius: 0 0 20px 20px;
    }

    .msm-modal.msm-active .msm-content {
        transform: translate(-50%, 0);
    }

    #msm-search-content {
        grid-template-columns: repeat(2, 1fr);
    }
}


    /* Loading Animation */
    .lds-ellipsis,
    .lds-ellipsis div {
      box-sizing: border-box;
    }
    .lds-ellipsis {
      display: inline-block;
      position: relative;
      width: 80px;
      height: 80px;
    }
    .lds-ellipsis div {
      position: absolute;
      top: 33.33333px;
      width: 13.33333px;
      height: 13.33333px;
      border-radius: 50%;
      background: currentColor;
      animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }
    .lds-ellipsis div:nth-child(1) {
      left: 8px;
      animation: lds-ellipsis1 0.6s infinite;
    }
    .lds-ellipsis div:nth-child(2) {
      left: 8px;
      animation: lds-ellipsis2 0.6s infinite;
    }
    .lds-ellipsis div:nth-child(3) {
      left: 32px;
      animation: lds-ellipsis2 0.6s infinite;
    }
    .lds-ellipsis div:nth-child(4) {
      left: 56px;
      animation: lds-ellipsis3 0.6s infinite;
    }
    @keyframes lds-ellipsis1 {
      0% {
        transform: scale(0);
      }
      100% {
        transform: scale(1);
      }
    }
    @keyframes lds-ellipsis3 {
      0% {
        transform: scale(1);
      }
      100% {
        transform: scale(0);
      }
    }
    @keyframes lds-ellipsis2 {
      0% {
        transform: translate(0, 0);
      }
      100% {
        transform: translate(24px, 0);
      }
    }

    /* Search Suggestions Styling */
    .search-suggestions {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        border: 1px solid rgba(0,0,0,0.1);
    }

    .search-btn-theme {
        background-color: var(--theme-color);
        color: white;
    }

    .search-btn-theme:hover {
        background-color: var(--theme-color-dark);
    }

    .suggestion-header {
        padding: 12px 16px;
        font-weight: 500;
        color: #555;
        border-bottom: 1px solid #f0f0f0;
    }

    .suggestion-items {
        padding: 8px 0;
    }

    .search-suggestion-item {
        display: flex;
        align-items: center;
        padding: 10px 16px;
        text-decoration: none;
        color: #333;
        transition: all 0.2s;
        gap: 12px;
    }

    .search-suggestion-item:hover, 
    .search-suggestion-item.highlighted {
        background: rgba(var(--theme-color-rgb), 0.05);
    }

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

    .product-name {
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.95rem;
    }

    .product-price {
        color: var(--theme-color);
        font-weight: 600;
        margin-left: auto;
        padding-left: 10px;
    }

    .suggestion-footer {
        padding: 12px 16px;
        border-top: 1px solid #f0f0f0;
    }

    .search-all-link {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--theme-color);
        text-decoration: none;
        font-weight: 500;
    }

    .search-all-link:hover {
        color: var(--theme-color-dark);
    }

    .no-results {
        padding: 20px;
        text-align: center;
    }

    .no-results i {
        width: 24px;
        height: 24px;
        margin-bottom: 10px;
    }

    .no-results h4 {
        margin-bottom: 5px;
        color: #333;
    }

    .no-results p {
        color: #666;
        margin-bottom: 15px;
    }

    .btn-theme {
        background-color: var(--theme-color);
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 4px;
        cursor: pointer;
    }

    .btn-theme:hover {
        background-color: var(--theme-color-dark);
    }

    .search-preloader {
        padding: 15px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .search-preloader p {
        margin-top: 10px;
        color: #666;
    }

     .toggle-password {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #94a3b8;
        font-size: 18px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .toggle-password:hover {
        color: #4f46e5;
    }

    .password_eye{
        left:340px !important;
         color: var(--theme-color);
    }

    .input-wrapper input {
        width: 100%;
        padding: 14px 48px 14px 48px; /* Adjusted padding */
        /* ... rest of your existing input styles ... */
    }

    .error-message {
        color: #dc3545;
        font-size: 0.875rem;
        margin-top: 0.25rem;
        display: none;
    }

    .input-wrapper {
        position: relative;
    }

    .input-wrapper i {
        position: absolute;
        /*left: 10px;*/
        top: 50%;
        transform: translateY(-50%);
        color: #94a3b8;
        font-size: 18px;
    }

    .input-wrapper input {
        padding-left: 35px;
    }
    .modal-footer .signup-link {
        color: var(--theme-color);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.2s;
        margin-left: 4px;
    }

    .modal-footer .signup-link:hover {
        color: var(--theme-color);
        text-decoration: underline;
        opacity: 0.9;
    }
/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Container */
.login-modal {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 440px;
    max-width: 95%;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.modal-overlay.active .login-modal {
    transform: scale(1) translateY(0);
}

/* Header Section */
.modal-header {
    padding: 32px 32px 24px;
    text-align: center;
    position: relative;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.logo {
    width: 60px;
    height: 60px;
    background: var(--theme-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2), 0 2px 4px -1px rgba(79, 70, 229, 0.1);
    animation: float 4s ease-in-out infinite;
}

.logo i {
    color: white;
    font-size: 28px;
}

.modal-header h2 {
    font-weight: 600;
    margin: 0;
    color: #1e293b;
    font-size: 24px;
    text-align: center;
    width: 100%;
}

/* Body Section */
.modal-body {
    padding: 0 32px 24px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #1e293b;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
}

/*.input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 18px;
}*/

.form-group input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    background-color: rgba(241, 245, 249, 0.4);
}

.form-group input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    background-color: white;
}

/* Footer Section */
.modal-footer {
    padding: 15px 20px 20px;
    text-align: center;
    font-size: 15px;
    color: #64748b;
    border-top: 1px solid #e2e8f0;
}

.modal-footer a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    margin-left: 4px;
}

.modal-footer a:hover {
    text-decoration: underline;
}

/* Additional Elements */
.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-right: 8px;
    accent-color: #4f46e5;
}

.forgot-password a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-password a:hover {
    color: #4f46e5;
}

.login-btn {
    width: 100%;
    padding: 16px;
    background: var(--theme-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2), 0 2px 4px -1px rgba(79, 70, 229, 0.1);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.2), 0 4px 6px -2px rgba(79, 70, 229, 0.1);
}

.divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #64748b;
    font-size: 14px;
}

.divider::before, .divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e2e8f0;
    margin: 0 10px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.social-btn i {
    font-size: 20px;
    color: #1e293b;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: var(--theme-color);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.close-btn:hover {
    background: rgba(226, 232, 240, 0.8);
    color: #1e293b;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}


    .footer_ribbon_btn {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 20px 8px 25px;
        font-weight: 600;
        font-size: 14px;
        color: #fff;
        background: rgb(11, 175, 154);
        border-radius: 30px;
        text-decoration: none;
        overflow: hidden;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(11, 175, 154, 0.3);
    }
    
    .footer_ribbon_btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(11, 175, 154, 0.4);
        background: rgba(11, 175, 154, 0.9);
    }
    
    .footer_ribbon_btn:active {
        transform: translateY(0);
    }
    
    .btn-icon {
        margin-left: 8px;
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    
    .footer_ribbon_btn:hover .btn-icon {
        transform: translateX(3px);
    }
    
    .teal-glow {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255, 255, 255, 0.4), 
            transparent);
        transform: skewX(-25deg);
        animation: teal-glow-animation 3s ease-in-out infinite;
    }
    
    @keyframes teal-glow-animation {
        0% {
            left: -100%;
            opacity: 0.6;
        }
        50% {
            opacity: 1;
        }
        100% {
            left: 100%;
            opacity: 0.6;
        }
    }
    
    .teal-glow-btn {
        animation: pulse-teal-glow 2.5s infinite;
    }
    
    @keyframes pulse-teal-glow {
        0% {
            box-shadow: 0 0 10px rgba(11, 175, 154, 0.4);
        }
        50% {
            box-shadow: 0 0 20px rgba(11, 175, 154, 0.7);
        }
        100% {
            box-shadow: 0 0 10px rgba(11, 175, 154, 0.4);
        }
    }
    
    /* Responsive styles */
    @media (max-width: 1199.98px) {
        .footer_ribbon_btn {
            padding: 7px 18px 7px 22px;
            font-size: 13px;
        }
    }
    
    @media (max-width: 991.98px) {
        .footer_ribbon_btn {
            padding: 6px 16px 6px 20px;
            font-size: 12px;
        }
        .btn-icon {
            font-size: 11px;
        }
    }
    
    @media (max-width: 767.98px) {
        .footer_ribbon_btn {
            width: 100%;
            justify-content: space-between;
            padding: 8px 20px;
        }
        .footer_span_text {
            display: block;
            margin-bottom: 5px;
        }
    }
    
    @media (max-width: 575.98px) {
        .footer_ribbon_btn {
            padding: 7px 15px;
            font-size: 11px;
        }
    }

/*small-popup*/

  .small-popup {
    position: fixed;
    bottom: 20px;
    left: 15px;
    width: 280px;
    height: 350px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 10000;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  }

  .small-popup.show {
    transform: scale(1);
    opacity: 1;
    animation: bounce-animation 1.5s infinite ease-in-out;
  }

  .small-popup.hide {
    transform: scale(0);
    opacity: 0;
  }

  .popup-image {
    width: 280px;
    height: 350px;
    display: block;
    border-radius: 10px;
  }

  .close-btn {
    z-index: 50;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    background-color: white;
    border: none;
    border-radius: 50%;
    color: black;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .close-btn:hover {
    background-color: var(--theme-color);
    color: white;
    transform: scale(1.1);
  }

  .coupon-container {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 0 15px;
    z-index: 50;
  }

  .coupon-input {
    width: 60%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px 0 0 20px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    background-color: white;
    color: #333;
  }

  .copy-coupon-btn {
    padding: 8px 15px;
    background-color: var(--theme-color);
    color: white;
    border: none;
    border-radius: 0 20px 20px 0;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
  }

  .copy-coupon-btn:hover {
    background-color: #0056b3;
  }

  @media (max-width: 768px) {
    .small-popup {
      width: 225px;
      bottom: 70px;
      height: 300px;
    }

    .popup-image {
      width: 225px;
      height: 300px;
    }
  }

  @media (max-width: 576px) {
    .small-popup {
      width: 225px;
      height: 300px;
    }

    .popup-image {
      width: 225px;
      height: 300px;
    }
    
    .coupon-input {
      font-size: 12px;
      padding: 6px 10px;
    }
    
    .copy-coupon-btn {
      font-size: 12px;
      padding: 6px 10px;
    }
  }

  @media (max-width: 400px) {
    .small-popup {
      width: 150px;
      height: 225px;
    }

    .popup-image {
      width: 150px;
      height: 225px;
    }
    
    .coupon-container {
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }
    
    .coupon-input {
      width: 80%;
      border-radius: 20px;
    }
    
    .copy-coupon-btn {
      width: 80%;
      border-radius: 20px;
      justify-content: center;
    }
  }

      /* Terms & Conditions Styling */
    .terms-conditions {
        margin: 2rem 0 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid #f0f0f0;
    }
    
    .terms-checkbox {
        padding-left: 2rem;
        position: relative;
    }
    
    .terms-checkbox .form-check-input {
        width: 1.25rem;
        height: 1.25rem;
        margin-left: -2rem;
        margin-top: 0.15rem;
        border: 2px solid #6c757d;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .terms-checkbox .form-check-input:checked {
        background-color: #0baf9a;
        border-color: #0baf9a;
    }
    
    .terms-checkbox .form-check-label {
        font-size: 0.95rem;
        color: #495057;
        cursor: pointer;
        line-height: 1.5;
    }
    
    .terms-checkbox a {
        color: #0baf9a;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    
    .terms-checkbox a:hover {
        color: #088f7d;
        text-decoration: underline;
    }

    /* Action Buttons Styling */
    .action-buttons {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }
    
    .return-btn {
        background: #ffffff;
        color: #6c757d;
        border: 1px solid #dee2e6;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .return-btn:hover {
        background: #f8f9fa;
        border-color: #ced4da;
        color: #495057;
    }
    
    .return-btn i {
        font-size: 1rem;
    }
    
    .complete-order-btn {
        background: #0baf9a;
        color: white;
        border: none;
        padding: 0.75rem 2rem;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
        flex-grow: 1;
        text-align: center;
        max-width: 200px;
    }
    
    .complete-order-btn:hover {
        background: #088f7d;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(11, 175, 154, 0.2);
    }
    
    .complete-order-btn:active {
        transform: translateY(0);
    }
    
    @media (max-width: 576px) {
        .action-buttons {
            flex-direction: row;
        }
        
        .complete-order-btn {
            max-width: 100%;
            order: -1;
            margin-bottom: 1rem;
        }
    }

        /* Cart dropdown container */
    .cart-dropdown {
        position: relative;
    }

    .cart-dropdown-menu {
        width: 320px;
        padding: 15px;
        right: 0;
        left: auto;
    }

    /* Cart items wrapper with smart scrolling */
    .cart-items-wrapper {
        max-height: calc(100vh - 250px);
        overflow: auto;
        scrollbar-width: thin;
        scrollbar-color: #ccc #f5f5f5;
    }

    /* Custom scrollbar for better browser compatibility */
    .cart-items-wrapper::-webkit-scrollbar {
        width: 4px;
    }

    .cart-items-wrapper::-webkit-scrollbar-track {
        background: #f5f5f5;
    }

    .cart-items-wrapper::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 4px;
    }

    /* Cart item styling */
    .cart-item {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .cart-item:last-child {
        border-bottom: none;
    }

    .drop-cart {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .drop-image {
        flex: 0 0 60px;
    }

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

    .drop-contain {
        flex: 1;
        position: relative;
    }

    .product-title {
        font-size: 14px;
        margin-bottom: 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 180px;
    }

    .product-meta {
        font-size: 13px;
        color: #666;
    }

    .close-button {
        position: absolute;
        top: 0;
        right: 0;
        background: none;
        border: none;
        color: #999;
        cursor: pointer;
    }

    /* Cart summary */
    .cart-summary {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }

    .price-box {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    /* Empty cart state */
    .empty-cart {
        text-align: center;
        padding: 20px 0;
    }

    .empty-cart i {
        margin-bottom: 10px;
    }

    .empty-cart h4 {
        font-size: 16px;
        color: #666;
    }

    /* Button group styling */
    .button-group {
        display: flex;
        gap: 10px;
    }

    .cart-button {
        flex: 1;
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 4px;
        text-align: center;
    }

    /* Responsive adjustments */
    @media (max-width: 767px) {
        .cart-dropdown-menu {
            width: 280px;
        }

        .cart-items-wrapper {
            max-height: calc(100vh - 200px);
        }
    }


    header .navbar.navbar-expand-xl .navbar-nav .no-arrow::before {
      content: none !important;
    }



    @media screen and (min-width:1200px){
        .less_mar_left{
            margin-left:15px !important;
        }
    }


    .fastkart_new_slider_container {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 100%;
        cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>👆</text></svg>"), auto;
    }

    .fastkart_new_slider_slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out, transform 1s ease-in-out;
        transform: scale(0.95);
    }

    .fastkart_new_slider_slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .fastkart_new_slider_slide.active {
        opacity: 1;
        transform: scale(1);
        
    }

    .fastkart_new_slider_autoplay {
        animation: none; /* Override previous animation */
    }

    .fastkart_new_slider_hover_cursor:hover {
        cursor: grab;
    }

    .fastkart_new_slider_hover_cursor:active {
        cursor: grabbing;
    }

    .home-detail {
        
        pointer-events: none;
    }

    .home-detail * {
        pointer-events: auto;
    }

    @media (hover: none) {
        .fastkart_new_slider_hover_cursor {
            cursor: pointer;
        }
    }

     
    @media (max-width: 767px) {   
        .fastkart_new_slider_container {
            min-height: 225px; 
        }
        
        .fastkart_new_slider_slide img {
            min-height: 300px;
            object-fit: cover;
        }
    }



    .tc_apply-text {
      position: absolute;
      bottom: 10px;
      right: 12px;
      font-size: 12px;
      color: #000;
      z-index: 10;
    }

    .tc_apply-text a {
      text-decoration: none;
      color: #000;
      font-weight: 500;
    }


    .address_nowrap {
        text-wrap: nowrap;
    }

    .rotating-circle {
    animation: rounded 15s linear infinite;
}

.circle-box-res {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: calc(30px + 7 * (100vw - 320px) / 1600);
    border-radius: 5px;
}

.circle-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-text {
    position: absolute;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-shadow:
        0 0 3px rgba(255, 255, 255, 0.6),
        0 0 6px rgba(255, 215, 0, 0.4),
        0 0 12px rgba(255, 215, 0, 0.3),
        0 0 18px rgba(255, 215, 0, 0.2);
}

.off-text {
    font-size: 12px;
    font-weight: 400;
    display: block;
}

@keyframes rounded {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


 
    /* Modal styles */
    #shareModal .modal-content {
        border: none;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        background-color: white;
    }
    
    #shareModal .modal-body {
        padding: 2rem;
        text-align: center;
        position: relative;
    }
    
    #shareModal .modal-close-btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 1.5rem;
        height: 1.5rem;
        background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235a5c69'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
        border: none;
        opacity: 0.5;
        cursor: pointer;
    }
    
    #shareModal .modal-close-btn:hover {
        opacity: 1;
    }
    
    #shareModal .modal-title {
        font-size: 1.25rem;
        font-weight: bold;
        color: #5a5c69;
        margin-bottom: 1.5rem;
    }
    
    /* Social share styles */
    .social-share-container {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .social-share-container a {
        text-decoration: none;
        color: inherit;
    }
    
    .social-icon-wrapper {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        margin: 0 auto;
    }
    
    .share-facebook .social-icon-wrapper {
        background-color: rgba(78, 115, 223, 0.1);
    }
    
    .share-facebook i {
        color: #4e73df;
    }
    
    .share-twitter .social-icon-wrapper {
        background-color: rgba(54, 185, 204, 0.1);
    }
    
    .share-twitter i {
        color: #36b9cc;
    }
    
    .share-whatsapp .social-icon-wrapper {
        background-color: rgba(28, 200, 138, 0.1);
    }
    
    .share-whatsapp i {
        color: #1cc88a;;
    }
    
    .share-linkedin .social-icon-wrapper {
        background-color: rgba(78, 115, 223, 0.1);
    }
    
    .share-linkedin i {
        color: #4e73df;
    }
    
    .social-share-container a:hover .social-icon-wrapper {
        transform: translateY(-3px);
    }
    
    .social-share-container small {
        display: block;
        margin-top: 0.25rem;
        color: #858796;
        font-size: 0.75rem;
    }
    
    /* Link copy section */
    .link-caption {
        color: #858796;
        margin-bottom: 0.5rem;
    }
    
    .link-copy-container {
        display: flex;
        margin-bottom: 0.5rem;
    }
    
    #shareable-link {
        border-radius: 8px 0 0 8px;
        background-color: #f8f9fc;
        border-right: none;
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
.btn-copy {
    border-radius: 0 8px 8px 0;
    background-color: var(--theme-color);
    color: white;
    border: none;
    padding: 0 1rem;
    transition: all 0.2s;
}

.btn-copy:hover {
    background-color: var(--theme-color);
    opacity: 0.9;
}

.btn-copy:active {
    background-color: var(--theme-color);
    opacity: 0.8;
}

/*home slider */


    .home-slider {
        position: relative;
    }
    .slide-item {
        position: relative;
    }
    .home-slider .slick-dots {
        position: absolute;
        bottom: 20px;
        left: 100%;
        transform: translateX(-50%);
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
       
    }
    .home-slider .slick-dots li {
        margin: 0 5px;
    }
    .home-slider .slick-dots li button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #fff;
        border: none;
        opacity: 0.5;

        padding: 0;
    }
    .home-slider .slick-dots li.slick-active button {
        opacity: 1;
        background: var(--theme-color);
    }
    .home-slider .slick-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        /*z-index: 10;*/
        background: rgba(255,255,255,0.5);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 0;
        cursor: pointer;
    }
    .home-slider .slick-prev {
        left: 20px;
    }
    .home-slider .slick-next {
        right: 20px;
    }
    .home-slider .slick-arrow:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 10px;
        height: 10px;
        border-left: 2px solid #333;
        border-bottom: 2px solid #333;
    }
    .home-slider .slick-prev:before {
        transform: translate(-30%, -50%) rotate(45deg);
    }
    .home-slider .slick-next:before {
        transform: translate(-70%, -50%) rotate(-135deg);
    }

     /* Hide mobile slider by default, show on small screens */
.desktop-slider {
    display: block;
}
.mobile-slider {
    display: none;
}

/* Switch at 768px (common tablet breakpoint) */
@media (max-width: 767px) {
    .desktop-slider {
        display: none;
    }
    .mobile-slider {
        display: block;
    }
}
    /* Add these styles for the navigation buttons and dots */
    .fastkart_new_slider_container {
        position: relative;
    }
    
    .slider-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.7);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }
    
    .fastkart_new_slider_container:hover .slider-nav-btn {
        opacity: 1;
        visibility: visible;
    }
    
    .slider-nav-btn:hover {
        background-color: rgba(255, 255, 255, 0.9);
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .slider-nav-btn i {
        font-size: 16px;
        color: #333;
    }
    
    /* Dots styling */
    .slider-dots-container {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 8px;
        /*z-index: 10;*/
    }
    
    .slider-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slider-dot.active {
        background: var(--theme-color);
        transform: scale(1.2);
    }
    
    .slider-dot:hover {
        background-color: rgba(255, 255, 255, 0.8);
    }

    .share-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 15px;
    }
    .share-buttons a {
        flex: 1 0 calc(50% - 10px);
        text-align: center;
    }
    .psys_ptc_button_res{
    align-items: end;
    justify-content: end;
}

.psys_sn_toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 15px 30px 10px 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(15px);
  max-width: 330px;
  font-family: 'Segoe UI', sans-serif;
  transition: all 0.6s ease;
  pointer-events: none;
}

.psys_sn_toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.psys_sn_image {
  width: 50px;
  height: auto;
  border-radius: 6px;
}

.psys_sn_text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}

.psys_sn_text a {
  color: #14b8a6;
  font-weight: 500;
  text-decoration: none;
  margin: 2px 0;
}

.psys_sn_text span {
  color: #888;
  font-size: 12px;
}

.psys_sn_text strong {
  font-size: 12px;
}

.psys_sn_close_btn {
  position: absolute;
  top: 0px;
  right: 0px;
  background: none;
  border: none;
  font-size: 18px;
  color: #777;
  cursor: pointer;
}

.skeleton {
        background-color: #e2e5e7;
        background-image: linear-gradient(
            90deg, 
            rgba(255, 255, 255, 0), 
            rgba(255, 255, 255, 0.5),
            rgba(255, 255, 255, 0)
        );
        background-size: 40px 100%;
        background-repeat: no-repeat;
        background-position: left -40px top 0;
        animation: shine 1s ease infinite;
        border-radius: 4px;
    }
    
    .product-box-4.skeleton-loading {
        pointer-events: none;
    }
    
    .product-image .img-placeholder {
        width: 100%;
        height: 180px;
        display: block;
    }
    
    .label-flex.skeleton {
        height: 30px;
        width: 30px;
        position: absolute;
        right: 10px;
        top: 10px;
        border-radius: 50%;
    }
    
    @keyframes shine {
        to {
            background-position: right -40px top 0;
        }
    }
    
    /* Make sure real content is hidden during loading */
    .skeleton-loading .product-detail .name,
    .skeleton-loading .product-detail .price,
    .skeleton-loading .product-detail .rating {
        color: transparent !important;
        background-color: #e2e5e7;
        position: relative;
        overflow: hidden;
    }
    
    /* Hide real buttons during loading */
    .skeleton-loading .btn-wishlist,
    .skeleton-loading .price-qty button {
        visibility: hidden;
    }
    

    .heart-beat-animation {
        animation: heartBeat 0.8s ease-in-out;
        color: var(--theme-color) !important;
    }

    .btn-wishlist.active i {
        color: var(--theme-color) !important;
    }

    @keyframes heartBeat {
        0%   { transform: scale(1); }
        14%  { transform: scale(1.3); }
        28%  { transform: scale(1); }
        42%  { transform: scale(1.3); }
        70%  { transform: scale(1); }
    }

    

    .psy_mart_head_pad{
        padding:1px 0px !important;
    }
        
    .psy_nav_ani_notification {
      position: relative;
      height: 40px;
      overflow: hidden;
    }

    .psy_nav_ani_notification .psy_nav_ani_wrap {
      position: relative;
      height: 100%;
    }

    .psy_nav_ani_notification .psy_nav_msg1,
    .psy_nav_ani_notification .psy_nav_msg2 {
      position: absolute;
      top: 10px;
      left: 0;
      width: 100%;
      opacity: 0;
      animation-duration: 6s;
      animation-iteration-count: infinite;
      animation-timing-function: ease-in-out;
    }

    .psy_nav_ani_notification .psy_nav_msg1 {
      animation-name: psy_nav_msg1_anim;
    }

    .psy_nav_ani_notification .psy_nav_msg2 {
      animation-name: psy_nav_msg2_anim;
    }

    @keyframes psy_nav_msg1_anim {
      0%   { opacity: 0; transform: translateY(100%); }
      5%   { opacity: 1; transform: translateY(0); }
      45%  { opacity: 1; transform: translateY(0); }
      50%  { opacity: 0; transform: translateY(-20px); }
      100% { opacity: 0; transform: translateY(-20px); }
    }

    @keyframes psy_nav_msg2_anim {
      0%   { opacity: 0; transform: translateY(100%); }
      50%  { opacity: 0; transform: translateY(100%); }
      55%  { opacity: 1; transform: translateY(0); }
      95%  { opacity: 1; transform: translateY(0); }
      100% { opacity: 0; transform: translateY(-20px); }
    }


        /* Custom scrollbar for messages */
    #messages {
        scrollbar-width: thin;
        scrollbar-color: #c1c1c1 #f1f1f1;
    }

    #messages::-webkit-scrollbar {
        width: 6px;
    }

    #messages::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    #messages::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 10px;
    }

    #messages::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

    /* Message input styling */
    .message-form textarea {
        resize: none;
        border-right: 0;
        padding: 12px;
        min-height: 46px;
        max-height: 120px;
        transition: all 0.2s;
    }

    .message-form textarea:focus {
        box-shadow: none;
        border-color: #dee2e6;
    }

    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        #messages {
            max-height: 300px;
        }

        .message-form .btn {
            padding-left: 1rem;
            padding-right: 1rem;
        }
    } 


    .psy_cat_res a::before {
        top: 0 !important;
    }
    .psy_cat_cir_res{
        padding: 10px !important;
    }

    .psy_cat_font_clr{
        color:#0baf9a !important;
    }


    .psy_pr_upper_res{
        text-transform: uppercase !important;
    }

    .psy_banner_padd_res{
        padding-top: 60px;
        padding-bottom: 30px;
    }

   .psy_ps_padd_res {
        padding-bottom: 60px;
    }


    .psy_nav_hover_fix {
      pointer-events: auto;
      transition-delay: 0.15s;
    }

    .onhover-div-login:hover .psy_nav_hover_fix {
      opacity: 1;
      visibility: visible;
    }

    .psy_nav_box_res{
        top:35px !important;
    }

    .psy_form_msg_res{
        padding-top:16px !important;
    }


    @media (max-width: 767px) {
        .psy_footer_res>div {
            width: 100%;
            max-width: 100%;
            flex: 0 0 100%;
        }

        .psy_mbl_res {
            margin-left: 0px !important;
        }

        .psy_con_res {
            margin-bottom: 10px;
        }

    }

    @media (min-width: 768px) and (max-width: 991px) {
        .psy_footer_res>div {
            width: 50%;
            max-width: 50%;
            flex: 0 0 50%;
        }
    }

    @media (min-width: 992px) and (max-width: 1199px) {
        .psy_footer_res>div {
            width: 33.3333%;
            max-width: 33.3333%;
            flex: 0 0 33.3333%;
        }
    }

    @media (min-width: 1200px) {
        .psy_footer_res>div {
            width: 25%;
            max-width: 25%;
            flex: 0 0 25%;
        }
    }

    .psy_mbl_res {
        margin-left: 5px;
    }

    .psy_mail_res {
        margin-left: 5px;
    }


    @media screen and (max-width: 850px) {
        .service-contain,
        .service-contain .service-box::before,
        .user-dashboard-section .dashboard-right-sidebar .dashboard-card .payment-card-detail .edit-card {
            display: none !important;
        }
    }

    @media (min-width: 1550px) { 
        .service-contain .service-box + .service-box::before {
            left: -45px !important;
        }
    }


    .psy_bb_res{
        padding-bottom: 20px !important;
        margin-bottom: 30px;
        border-bottom: 1px dashed #c1c1c1;
    }


    @media screen and (max-width: 1199px) {

        .psy_cg_res {
            padding-top: 0px !important;
        }

        .psy_new_toast_res {
            left: 95px !important;
            animation: blink 1s infinite;
        }

        .psy_so_res {
            padding-top: 0px !important;
        }

        .psy_hot_toast_res {
            left: 75px !important;
        }

        .psy_nav_z-index_res{
            z-index: 1 !important;
        }
    }


    @media screen and (max-width: 767px) {

        .psy_toast_mp_res{
            bottom: 75px;
            left: 10px;
        }
    }


    .psy_ins_login_res {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        text-align: center !important;
    }

    .psy_lock_res {
        margin-left: 15px;
    }

    .psy_env_res {
        margin-left: 15px;
    }

    .psy_oos_res{
        font-size: 14px !important;
        padding: 7px !important;
    }









               



    