 .sl_img {
     width: 100%;
     height: 24rem;
     object-fit: contain;
     background: #f8f8f8;
 }

 .modal-dialog {
     display: flex !important;
     align-items: center;
     min-height: calc(100% - 3.5rem);
 }

 .modal-backdrop {
     z-index: 99998 !important;
 }

 .modal {
     z-index: 99999 !important;
 }

 .modal-backdrop {
     background-color: rgba(0, 0, 0, 0.3) !important;
 }

 .product-img-container {
     position: relative;
     overflow: hidden;
     width: 100%;
     height: 360px;
 }

 .product-img-container img {
     width: 100%;
     height: 360px;
     object-fit: cover;
     object-position: center 3%;
     transition: transform 0.3s ease-in-out;
 }

 .product-img-container:hover img {
     transform: scale(1.05);
 }

 .hover-info {
     position: absolute;
     bottom: 0;
     width: 100%;
     background: rgba(255, 255, 255, 0.95);
     padding: 12px;
     transform: translateY(100%);
     opacity: 0;
     transition: all 0.3s ease-in-out;
 }

 .product-img-container:hover .hover-info {
     transform: translateY(0%);
     opacity: 1;
 }

 .cart-btn {
     border: none;
     background: linear-gradient(135deg, #000000, #333333);
     color: #fff;
     padding: 6px 10px;
     font-size: 12px;
     font-weight: 500;
     border-radius: 4px;
     letter-spacing: 0.3px;
     cursor: pointer;
     width: 100%;
     text-align: center;
     transition: all 0.3s ease-in-out;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
 }

 .cart-btn:hover {
     background: linear-gradient(135deg, #1a1a1a, #444);
     transform: translateY(-2px);
 }

 .cart-btn i {
     font-size: 9px;
     margin-right: 5px;
 }

 .price-info strong {
     font-size: 13px;
 }

 .price-info del,
 .price-info span {
     font-size: 11px;
 }

 .product-badges {
     position: absolute;
     top: 10px;
     right: 10px;
     display: flex;
     flex-direction: column;
     align-items: flex-end;
     gap: 4px;
     z-index: 2;
 }

 .badge-tag {
     background-color: #e91e63;
     color: #fff;
     font-size: 10px;
     padding: 3px 6px;
     border-radius: 4px;
     text-transform: uppercase;
     font-weight: 600;
     letter-spacing: 0.5px;
 }

 /* Responsive styles */
 @media (max-width: 575.98px) {
     .product-hover-card {
         display: flex;
         flex-direction: column;
         height: 100%;
         background: #fff;
     }

     .product-img-container {
         height: auto !important;
         margin-bottom: 4px;
     }

     .product-img-container img {
         height: 180px !important;
         object-fit: cover;
         width: 100%;
     }

     .hover-info {
         position: static !important;
         transform: none !important;
         opacity: 1 !important;
         visibility: visible !important;
         background: transparent !important;
         padding: 6px 8px !important;
         display: block !important;
     }

     .product-title-mobile h6 {
         font-size: 13px;
         margin: 0;
         line-height: 1.3;
         word-break: break-word;
         padding: 0px !important;
     }

     .size-info {
         font-size: 12px;
         margin-bottom: 4px;
     }

     .cart-btn {
         width: 100%;
         padding: 6px 10px;
         font-size: 12px;
         margin-bottom: 4px;
     }

     .price-info {
         font-size: 13px;
         margin-top: 4px;
     }

     .price-info del,
     .price-info span {
         font-size: 11px;
     }

     .badge-tag {
         font-size: 10px;
         padding: 3px 6px;
     }

     .collections-wrapper .col-sm-6 {
         flex: 0 0 50%;
         max-width: 50%;
     }

     .hvr-shutter-out-horizontal {
         padding: 0px 19px !important;
     }

     ul.content-title li:last-child a {
         font-size: 9px !important;
         float: left !important;
     }

     ul.content-title li h1 {
         float: left !important;
         padding-top: 12px;
     }

     .pl-3,
     .px-3 {
         padding-left: 0rem !important;
     }

     .product-search-form .row {
         flex-direction: column;
         align-items: center;
         gap: 10px;
     }

     .product-search-form input.form-control {
         width: 100%;
         text-align: center;
     }

     .product-search-form button {
         width: 100%;
     }

     .input-group {
         flex-direction: column;
         gap: 10px;
     }

     .input-group .btn {
         width: 100%;
     }

     .collection {
         margin: -14% 0 0 0 !important;
     }
 }

 /* Common styles */
 .product-search-form {
     max-width: 800px;
     margin: 0 auto 30px auto;
     padding: 0 15px;
 }

 .product-search-form input.form-control {
     height: 48px;
     font-size: 16px;
     padding: 10px 20px;
     border-radius: 50px;
     border: 1px solid #ccc;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
 }

 .product-search-form button {
     height: 48px;
     font-size: 15px;
     font-weight: 500;
     padding: 0 24px;
     border-radius: 50px;
     margin-top: 0 !important;
 }

 section#faq-content {
     padding: 18px 0;
 }

 .no-right-radius {
     border-top-right-radius: 0 !important;
     border-bottom-right-radius: 0 !important;
 }

 .no-left-radius {
     border-top-left-radius: 0 !important;
     border-bottom-left-radius: 0 !important;
 }

 .input-group .form-control,
 .input-group .btn {
     height: 48px;
     font-size: 16px;
 }

 .category-search-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     border-bottom: 2px solid #f5f5f5;
     padding: 15px 20px;
     background: white;
     flex-wrap: wrap;
     gap: 15px;
 }

 .categories {
     display: flex;
     gap: 35px;
     font-weight: bold;
     position: relative;
     flex-wrap: wrap;
 }

 .category-item {
     position: relative;
     cursor: pointer;
     padding: 8px 0;
 }

 .child-categories {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     background: white;
     padding: 15px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
     z-index: 999;
     min-width: 200px;
     border-radius: 4px;
 }

 .category-item:hover .child-categories {
     display: block;
 }

 .child-categories a {
     display: block;
     padding: 6px 0;
     color: #333;
     text-decoration: none;
     transition: color 0.2s;
 }

 .child-categories a:hover {
     color: #ff3f6c;
 }

 .input-group .form-control,
 .input-group .btn {
     height: 48px;
     font-size: 16px;
 }

 .category-search-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     border-bottom: 2px solid #f5f5f5;
     padding: 15px 20px;
     background: white;
     flex-wrap: wrap;
     gap: 15px;
 }

 .categories {
     display: flex;
     gap: 35px;
     font-weight: bold;
     position: relative;
     flex-wrap: wrap;
 }

 .category-item {
     position: relative;
     cursor: pointer;
     padding: 8px 0;
 }

 .child-categories {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     background: white;
     padding: 15px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
     z-index: 999;
     min-width: 200px;
     border-radius: 4px;
 }

 .category-item:hover .child-categories {
     display: block;
 }

 .child-categories a {
     display: block;
     padding: 6px 0;
     color: #333;
     text-decoration: none;
     transition: color 0.2s;
 }

 .child-categories a:hover {
     color: #ff3f6c;
 }

 .search-box form {
     display: flex;
     border: 1px solid #ccc;
     border-radius: 25px;
     overflow: hidden;
     width: 250px;
 }

 .search-box input {
     border: none;
     padding: 10px 15px;
     outline: none;
     flex: 1;
 }

 .search-box button {
     background: #333;
     color: white;
     padding: 10px 20px;
     border: none;
     cursor: pointer;
 }

 @media (max-width: 768px) {
     .category-search-container {
         flex-direction: column;
         align-items: stretch;
         padding: 10px;
     }
  .top-left ul.social-icons {
        width:130% !important;
    }
    #flogo{
        padding-top:5px !important;
    }
    .logo{
        padding : 0px !important;
    }
     .categories {
         flex-direction: column;
         gap: 8px;
         width: 100%;
     }

     .category-item {
         width: 100%;
         padding: 12px;
         background: #f9f9f9;
         border: 1px solid #eee;
         border-radius: 6px;
         cursor: pointer;
         touch-action: manipulation;
     }

     .category-item::after {
         content: "▾";
         float: right;
         font-size: 14px;
         transition: transform 0.3s ease;
     }

     .child-categories {
         position: static;
         display: none;
         padding: 8px 12px;
         background: #fff;
         border-left: 3px solid #ff3f6c;
         margin-top: 6px;
     }

     .category-item:hover .child-categories {
         display: none;
     }

     .category-item.active .child-categories {
         display: block;
     }

     .coming-soon-overlay .cs-date {
         font-size: 11px;
         font-weight: 500;
         background-color: white;
         color: black;
         padding: 12px 35px 12px 35px;
     }

     .coming-soon-overlay .cs-top {
         font-size: 12px;
         font-weight: bold;
         letter-spacing: 1px;
         background-color: rgb(231, 83, 83);
         padding: 15px;
     }
 }

 .collection {
     margin: -4% 0 0 0 !important;
 }

 .search-box {
     display: flex;
     align-items: center;
     border: 1px solid #ccc;
     border-radius: 50px;
     overflow: hidden;
 }

 .search-box input {
     flex: 1;
     padding: 10px 15px;
     border: none;
     outline: none;
     font-size: 14px;
 }

 .search-box button {
     border: none;
     background: #333;
     color: #fff;
     padding: 0 15px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .search-box button i {
     font-size: 16px;
 }

 .coming-soon-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
     color: #fff;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     z-index: 10;
     border-radius: 8px;
 }

 .coming-soon-overlay .cs-top {
     font-size: 18px;
     font-weight: bold;
     letter-spacing: 1px;
     background-color: rgb(231, 83, 83);
     padding: 15px;
 }

 .coming-soon-overlay .cs-date {
     font-size: 14px;
     font-weight: 500;
     background-color: white;
     color: black;
     padding: 12px 54px 12px 54px;
 }
