/*your custom css goes here*/
.social-float-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}
.social-icon svg{
    width: 30px;
    color: #fff;
}
.social-icon.whatsapp {
    animation: whatsapp-pulse 2s infinite;
}
.social-icon.messenger{
     animation: messenger-pulse 2s infinite;
}
.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.social-icon:hover {
  animation: none;
  transform: scale(1.05);
}

.whatsapp {
  background-color: #25D366;
}

.messenger {
  background-color: #0084FF;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
@keyframes messenger-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 132, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 132, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 132, 255, 0);
  }
}

  .otp_page .otp-input:focus {
      border-color: #122F51 !important;
      box-shadow: 0 0 0 0.1rem rgba(55, 125, 255, 0.25) !important;
      outline: none;
  }

  .otp_page .otp-input::-webkit-outer-spin-button,
  .otp_page .otp-input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
  }

  .otp_page .otp-input[type=number] {
      -moz-appearance: textfield;
  }

/* Cart Drawer Trigger - Sticky */
.cart-drawer-trigger {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999999;
    cursor: pointer;
}

.cart-icon-wrapper {
    z-index: 999;
}
.cart-icon-wrapper i {
    color: white;
    display: block;
    font-size: 28px;
}
/* .la-shopping-bag{
    font-size: 28px;
} */

.cart-badge {
    position: absolute;
    top: -57px;
    right: -5px;
    background: transparent;
    color: white;
    border-radius: 50%;
    width: 108px;
    height: 114px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border-radius: 0;
}

.cart-preview {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: #122F51;
    padding: 10px 20px;
    color: white;
    text-align: center;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    border-radius: 10px 0 0 10px;
    margin-right: -5px;
}

.cart-preview-count {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.cart-preview-text {
    font-size: 12px;
    margin: 5px 0;
}

.cart-preview-price {
    font-size: 16px;
    font-weight: bold;
}

/* Cart Drawer Overlay */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    right: -100%;
    top: 0;
    width: 450px;
    max-width: 90%;
    height: 100vh;
    background: white;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -2px 0 20px rgba(0,0,0,0.1);
}

.cart-drawer.active {
    right: 0;
}

/* Cart Drawer Header */
.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.cart-drawer-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.cart-drawer-close {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    padding: 0;
    line-height: 1;
}

.cart-drawer-close:hover {
    color: #122F51;
}

/* Cart Drawer Body */
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-drawer-body::-webkit-scrollbar {
    width: 6px;
}

.cart-drawer-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.cart-drawer-body::-webkit-scrollbar-thumb {
    background: #122F51;
    border-radius: 3px;
}

/* Cart Item */
.cart-drawer-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    margin-bottom: 15px;
    border: 2px solid #122F51;
    border-radius: 15px;
    position: relative;
    background: white;
    transition: all 0.3s ease;
}

.cart-drawer-item:hover {
    box-shadow: 0 5px 15px rgba(55, 125, 255, 0.2);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #333;
    line-height: 1.4;
}

.cart-item-price {
    font-size: 16px;
    font-weight: bold;
    color: #122F51;
    margin: 0 0 10px 0;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(55, 125, 255, 0.1);
    border-radius: 25px;
    padding: 5px;
    width: fit-content;
}

.qty-btn {
    background: white;
    border: 1px solid #122F51;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #122F51;
}

.qty-btn:hover:not(:disabled) {
    background: #122F51;
    color: white;
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: bold;
    color: #333;
}

.cart-item-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(55, 125, 255, 0.1);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #122F51;
}

.cart-item-remove:hover {
    background: #122F51;
    color: white;
}

/* Empty Cart */
.cart-drawer-empty {
    text-align: center;
    padding: 50px 20px;
    color: #999;
}

.cart-drawer-empty i {
    color: #ddd;
    margin-bottom: 20px;
}

.cart-drawer-empty p {
    font-size: 16px;
}

/* Cart Drawer Footer */
.cart-drawer-footer {
    padding: 20px;
    border-top: 2px solid #f0f0f0;
    background: white;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
}

.cart-total span:first-child {
    color: #666;
}

.cart-total-price {
    font-size: 24px;
    font-weight: bold;
    color: #122F51;
}

.cart-proceed-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #122F51 0%, #2a5fd4 100%);
    color: white;
    text-align: center;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cart-proceed-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(55, 125, 255, 0.4);
    color: white;
}

/* Loading State */
.cart-item-loading {
    pointer-events: none;
    opacity: 0.6;
    position: relative;
}

.cart-item-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #122F51;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Category humberger */
.mobile-menu-btn {
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #333;
    font-size: 24px;
    transition: color 0.3s ease;
    line-height: 1;
}

.mobile-menu-btn:hover {
    color: #122F51;
}

.mobile-menu-btn:focus {
    outline: none;
}

/* Mobile Category Overlay */
.mobile-category-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-category-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Category Drawer */
.mobile-category-drawer {
    position: fixed;
    left: -100%;
    top: 0;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: white;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-category-drawer.active {
    left: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: white;
}

.mobile-menu-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #122F51;
    padding: 0;
    line-height: 1;
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-menu-close:focus {
    outline: none;
}

/* Mobile Menu Body */
.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.mobile-menu-body::-webkit-scrollbar {
    width: 4px;
}

.mobile-menu-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.mobile-menu-body::-webkit-scrollbar-thumb {
    background: #122F51;
    border-radius: 2px;
}

/* Mobile Account Link */
.mobile-account-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
    transition: background 0.3s ease;
}

.mobile-account-link:hover {
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
}

.mobile-account-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #122F51 0%, #d81b60 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    overflow: hidden;
}

.mobile-account-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-account-link span {
    font-size: 18px;
    font-weight: 600;
}

/* Mobile Categories */
.mobile-categories {
    padding: 10px 0;
}

.mobile-category-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    transition: background 0.3s ease;
}

.mobile-category-header:hover {
    background: #f8f9fa;
}

/* Category Main Link - Clickable */
.mobile-category-main {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    text-decoration: none;
    color: #333;
}

.mobile-category-main:hover {
    text-decoration: none;
    color: #122F51;
}

.mobile-cat-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    opacity: 0.7;
}

.mobile-cat-name {
    font-size: 15px;
    font-weight: 500;
}

/* Toggle Button - Only for expand/collapse */
.mobile-category-toggle {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    flex-shrink: 0;
}

.mobile-category-toggle:hover {
    background: #f0f0f0;
}

.mobile-category-toggle:focus {
    outline: none;
}

.mobile-category-toggle.active i::before {
    content: "\f068"; /* minus icon */
}

/* Mobile Subcategory List */
.mobile-subcategory-list {
    background: #f8f9fa;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-subcategory-list.active {
    padding: 10px 0;
}

.mobile-subcategory-loading {
    text-align: center;
    padding: 20px;
    color: #122F51;
    font-size: 24px;
}

/* Subcategory Item with nested structure */
.mobile-subcategory-wrapper {
    border-bottom: 1px solid #e8e8e8;
}

.mobile-subcategory-wrapper:last-child {
    border-bottom: none;
}

.mobile-subcategory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px 12px 45px;
    background: #f8f9fa;
}

.mobile-subcategory-header:hover {
    background: #f0f0f0;
}

.mobile-subcategory-link {
    flex: 1;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.mobile-subcategory-link:hover {
    color: #122F51;
    text-decoration: none;
}

.mobile-subcategory-toggle {
    background: none;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    flex-shrink: 0;
    font-size: 14px;
}

.mobile-subcategory-toggle:hover {
    background: #e0e0e0;
}

.mobile-subcategory-toggle:focus {
    outline: none;
}

.mobile-subcategory-toggle.active i::before {
    content: "\f068"; /* minus icon */
}

/* Third level items */
.mobile-subcat-items {
    background: white;
    display: none;
}

.mobile-subcat-items.active {
    display: block;
}

.mobile-subcat-item {
    padding: 10px 20px 10px 60px;
    display: block;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-subcat-item:hover {
    background: #f8f9fa;
    color: #122F51;
    border-left-color: #122F51;
    text-decoration: none;
}

/* Desktop - Hide mobile menu */
@media (min-width: 992px) {
    .mobile-category-overlay,
    .mobile-category-drawer {
        display: none !important;
    }
}
.top_serach_input {
    max-width:446px;
}
.typed-search-box{
 max-width:446px;
}
.mobile-search-bar {
    background: #fff;
}
.nav_icon{
    position: relative;
}
.nav_count{
    position:absolute;
    top:-5px;
    right: -8px;
}
.nav_icon_title{
    line-height: 1;
}
/* Extra small devices */
@media (max-width: 576px) {
    .mobile-category-drawer {
        width: 100%;
        max-width: 100%;
    }
}

/* Responsive CSS */
  @media (max-width: 991px) {
      .otp_page .col-lg-6:first-child {
          display: none !important;
      }
  }
@media(max-width:768px){
    .social-float-container {
        bottom: 64px;
        gap: 10px;
    }
    .social-icon {
        width: 40px;
        height: 40px;
    }
    .social-icon svg{
        width: 20px;
        color: #fff;
    }
        .cart-drawer {
        width: 100%;
        max-width: 100%;
    }
    
    .cart-icon-wrapper:hover {
        padding-right: 15px;
    }
    
    .cart-preview {
        display: none;
    }
    .product-gallery-thumb .slick-list{
        height: max-content !important
    }
    .product-modal .modal-content .modal-body {
        max-height: 100vh;
    }
    .product-modal hr {
        margin-top: 8px;
        margin-bottom: 8px;
    }
    .popular_item a{
        height: 199px;
    }
    .home-banner-area .aiz-carousel .slick-arrow {
        display: none !important;
    }
    .header_stikcy {
        box-shadow: none !important;
        border-bottom:0 !important;
    }
    .typed-search-box{
       z-index: 9;
    }
    .top_serach_input {
        border-color: #122F51 !important
    }
}

/* Premium product card */
.product-box-premium {
    border-radius: 15px;
    border-color: #edf0f5 !important;
    box-shadow: 0 8px 25px rgba(20, 39, 70, .09);
}

.product-box-premium .product-box-discount {
    top: 12px;
    left: 12px;
    padding: 0 10px;
    border-radius: 999px;
    background: #FFA500;
    color: #000;
    line-height: 28px;
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.35) !important;
}

.product-box-image-wrap {
    padding: 12px 12px 0;
}

.aiz-carousel .slick-arrow,
.aiz-carousel .slick-prev,
.aiz-carousel .slick-next {
    background: #455d7a !important;
    color: #fff !important;
}

.aiz-carousel .slick-arrow:hover,
.aiz-carousel .slick-prev:hover,
.aiz-carousel .slick-next:hover {
    background: #3a4d66 !important;
    color: #fff !important;
    box-shadow: 0 2px 8px 2px rgba(69, 93, 122, 0.35) !important;
}.product-box-image {
    border-radius: 14px;
    background: #f6f8fb;
}

.product-box-premium .product-box-title {
    font-size: 15px;
    color: #122f51;
}

.product-box-premium .product-box-name {
    color: #122f51;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.25s ease-in-out;
}

.product-box-premium .product-box-name:hover {
    color: #ffa500;
}

.product-box-price {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 6px;
    min-height: 25px;
}

.product-box-sale-price {
    font-size: 18px;
}

.product-box-actions {
    gap: 8px;
}

.product-box-action {
    min-height: 40px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all .2s ease;
}

.product-box-action i {
    font-size: 24px;
}

.product-box-add-cart {
    border: 1px solid #d9e0ea;
    color: #fff;
    background: #faa403;
}

.product-box-add-cart:hover {
    border-color: #faa403;
    color: #122f51;
    background: #f4f7fb;
}

.product-box-buy-now {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 5px 12px rgba(255, 107, 0, .22);
}

.product-box-buy-now:hover {
    color: #fff;
    background: var(--primary);
    transform: translateY(-1px);
}

/* Premium product details panel */
.product-detail-premium {
    color: #122f51;
}

.product-detail-premium .product-detail-title {
    margin-bottom: 20px !important;
    color: #122f51;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
}

.product-detail-premium > hr {
    margin: 20px 0;
    border-color: #e8edf3;
}

.product-detail-pricing {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 0 0 20px;
}

.product-detail-pricing .row {
    width: auto;
    margin: 0 !important;
    align-items: center;
}

.product-detail-pricing .product-detail-price-label {
    display: none;
}

.product-detail-pricing .row > .col-md-10,
.product-detail-pricing .row > .col-7 {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.product-detail-regular-price {
    order: 2;
}

.product-detail-sale-price,
.product-detail-single-price {
    order: 1;
}

.product-detail-premium .product-detail-regular-price del {
    color: #9aa4b2;
    font-size: 25px;
    font-weight: 500;
}

.product-detail-premium .product-detail-current-price {
    color: var(--secondary) !important;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.product-detail-save-badge {
    display: inline-block;
    margin-left: 10px;
    padding: 6px 9px;
    border-radius: 6px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    vertical-align: middle;
}

.product-detail-quantity-row {
    align-items: center;
    /* padding: 8px 0; */
}

.product-detail-quantity-label > div {
    color: #122f51;
    font-size: 18px;
    font-weight: 500;
}

.product-detail-premium .product-detail-quantity-control {
    width: 130px;
    min-height: 40px;
    margin-right: 16px !important;
    padding: 4px;
    border: 1px solid #d8dee8;
    border-radius: 999px;
    background: #fafbfc;
    box-shadow: 0 1px 3px rgba(18, 47, 81, 0.06);
}

.product-detail-premium .product-detail-quantity-control .btn {
    width: 30px;
    height: 30px;
    color: var(--primary);
    background: #f0f2f5;
    box-shadow: none;
    transition: background-color .2s ease, color .2s ease, transform .15s ease;
}

.product-detail-premium .product-detail-quantity-control .btn:hover {
    color: #fff;
    background: var(--primary);
    transform: scale(1.05);
}

.product-detail-premium .product-detail-quantity-control .input-number {
    color: var(--primary);
    background: transparent;
    font-size: 14px !important;
    font-weight: 600;
}

.product-detail-premium .aiz-megabox-elem {
    border: 1px solid #d8dee8;
    border-radius: 999px !important;
    background: #fafbfc;
    padding: 6px 14px !important;
    min-height: 34px;
    font-size: 13px;
    font-weight: 500;
    color: #122f51;
    transition: all .2s ease;
}

.product-detail-premium .aiz-megabox > input:checked ~ .aiz-megabox-elem {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 2px 6px rgba(18, 47, 81, 0.18);
}

.product-detail-premium .aiz-megabox-elem#border_radius_50,
.product-detail-premium .aiz-megabox > input:checked ~ .aiz-megabox-elem#border_radius_50 {
    border-radius: 50% !important;
    padding: 4px !important;
    min-height: 0;
    background: transparent;
    border-color: #d8dee8;
}

.product-detail-premium .aiz-megabox > input:checked ~ .aiz-megabox-elem#border_radius_50 {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(18, 47, 81, 0.18);
}

.product-detail-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
    /* margin-top: 22px !important; */
}

.product-detail-premium .product-detail-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    margin: 0;
    border: 1px solid transparent;
    border-radius: 9px;
    box-shadow: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.product-detail-premium .product-detail-action i {
    margin-right: 9px;
    font-size: 24px;
}

.product-detail-premium .product-detail-add-cart {
    color: #fff;
    background: var(--secondary);
    border-color: var(--secondary);
}

.product-detail-premium .product-detail-buy-now,
.product-detail-premium .product-detail-external-link {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.product-detail-premium .product-detail-whatsapp {
    color: #fff;
    background: #25d366;
    border-color: #25d366;
}

.product-detail-premium .product-detail-call {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
}

.product-detail-premium .product-detail-action:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(18, 47, 81, .18);
}

@media (max-width: 575.98px) {

    .product-detail-premium .product-detail-title {
        font-size: 25px;
    }

    .product-detail-premium .product-detail-current-price {
        font-size: 31px;
    }

    .product-detail-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .product-detail-premium .product-detail-action {
        min-width: 0;
        min-height: 44px;
        padding: 8px 5px;
        font-size: 11px;
        line-height: 1.2;
        white-space: nowrap;
    }

    .product-detail-premium .product-detail-action i {
        margin-right: 4px;
        font-size: 18px;
    }

    .product-detail-quantity-row > .col-5,
    .product-detail-quantity-row > .col-7 {
        max-width: none;
    }

    .product-detail-quantity-row {
        flex-wrap: nowrap;
    }

    .product-detail-quantity-row > .col-5 {
        flex: 0 0 auto;
        width: auto;
    }

    .product-detail-quantity-row > .col-7 {
        flex: 1 1 0;
        min-width: 0;
    }

    .product-detail-premium .product-detail-quantity-label > div {
        font-size: 16px !important;
        margin-right: 5px;
    }

    .product-detail-premium .product-quantity {
        flex-wrap: nowrap;
    }

    .product-detail-premium .product-detail-quantity-control {
        width: 118px;
        min-height: 38px;
        margin: 0 8px 0 0 !important;
        padding: 3px;
        flex: 0 0 auto;
    }

    .product-detail-premium .product-detail-quantity-control .btn {
        width: 28px;
        height: 28px;
    }

    .product-detail-premium .avialable-amount {
        font-size: 11px;
        line-height: 1.2;
        white-space: nowrap;
    }
}
