  
        :root {
            --primary-color: #e63946;
            --secondary-color: firebrick;
            --light-color: #f1faee;
            --dark-color: #1d3557;
            --accent-color: #457b9d;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
            background-color: #f8f9fa;
        }
        
        .navbar {
            /* background-color: var(--dark-color); */
            background-color: #d02b3a;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .nav-link{color:white;}
        
        .navbar-brand {
            font-weight: bold;
            color: var(--light-color) !important;
        }
        
        
        
        .search-form {
            position: relative;
        }
        
        .search-form .form-control {
            border-radius: 20px;
            padding-left: 40px;
            background-color: rgba(255, 255, 255, 0.9);
            border: none;
        }
        .noborderradius{
            border-bottom-left-radius: 0px !important;
            border-bottom-right-radius: 0px !important;
        }
        .search-icon {
            position: absolute;
            left: 15px;
            top: 10px;
            color: var(--accent-color);
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://aceiraq.com/bh/assets/frontimages/p2/885.png') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 100px 0;
            margin-bottom: 2rem;
        }
        
        .hero-heading {
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-subheading {
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            border-radius: 10px;
            padding: 8px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #d02b3a;
            border-color: #d02b3a;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 2rem;
            font-weight: bold;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .card-img-top {
            height: 200px;
            object-fit: cover;

        }
        .card-image {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            max-width: 98%;
            max-height: 98%;
        }
        .card-title {
            font-weight: bold;
            color: var(--dark-color);
        }
        
        .price {
            font-weight: bold;
            color: var(--primary-color);
            font-size: 1.25rem;
        }
        .old-price{
            text-decoration: line-through;
            color: #6c757d;
            font-size: 0.9rem;
        }
        .sale-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--primary-color);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-weight: bold;
            z-index:9;
        }
        
        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 50px 0 20px;
        }
        
        .footer-title {
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--light-color);
        }
        
        .footer-links a {
            display: block;
            color: var(--light-color);
            margin-bottom: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: var(--accent-color);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: scale(1.1);
        }
        
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Category Pills */
        .category-pills {
            display: flex;
            overflow-x: auto;
            padding: 10px 0;
            margin-bottom: 20px;
            scrollbar-width: none;
        }
        
        .category-pills::-webkit-scrollbar {
            display: none;
        }
        
        .category-pill {
            flex: 0 0 auto;
            padding: 8px 20px;
            margin-right: 10px;
            background-color: white;
            border-radius: 20px;
            color: var(--dark-color);
            font-weight: 600;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        
        .category-pill.active {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .category-pill:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .card-text{height:48px; overflow:hidden}
        .owl-carousel .owl-item img{width:initial;}
        .cats-img{
            position: absolute;
            left: 50%;
            bottom: 0%;
            transform: translateX(-50%);
            max-width: 85%;
            max-height: 85%;
            z-index: 9;
        }
        .cats-master{
            height:300px;position:relative;overflow: hidden;
        }
        .cats-img-master{
            position: absolute;width: 130%;height: 250px;background: #c6e6f9;border-radius:50%;bottom: -31%;left:50%;transform:translateX(-50%)
        }
       
        .cats-img-master{
            height: 150px;
        }
        .cats-img{
            max-height: 70%;
        }
        
        .custom-alert {
            position: fixed;
            bottom: -100px; /* Start hidden */
            left: 50%;
            transform: translateX(-50%);
            width:100%;
            padding: 15px 20px;
            background-color: #4CAF50;
            color: white;
            font-size: 16px;
            border-radius: 12px 12px 0 0; /* Rounded top corners */
            box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.2);
            text-align: center;
            z-index: 9999;
            align-items: center;
            justify-content: space-between;
            opacity: 0;
            transition: bottom 0.5s ease, opacity 0.5s ease;
        }

        /* Close Button */
        .custom-alert .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
        }
        #search-history{
            display: none;
            position: absolute;
            top: 105%;
            left: 0;
            width: 100%;
            border: 1px solid #ddd;
            z-index: 10;
            background: #faeaec;
            border-top: none;
            border-radius:20px;
        }
        #search-history-mb{
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            border: 1px solid #ddd;
            z-index: 10;
            background:white;
            border-radius: 20px;
            padding-bottom:15px;
        }
.lg-search{
    width:500px !important;
}
.alert-box {
            position: fixed;
            bottom: -100%;
            left: 0;
            width: 100%;
            background-color: #37b2a0;
            color: #fff;
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            transition: bottom 0.5s ease-in-out;
            z-index: 1000;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }
    
        .alert-box.show {
            bottom: 0;
        }
    
        .alert-content {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
    
        .close-btn {
            position: absolute;
            top: -10px;
            right: 10px;
            font-size: 30px;
            cursor: pointer;
            color: black;
            z-index: 999;
        }
    
        .close-btn:hover {
            color: #ff4444;
        }


        .alert-box {
            position: fixed;
            bottom: -100%;
            left: 0;
            width: 100%;
            background-color: #37b2a0;
            color: black;
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            transition: bottom 0.5s ease-in-out;
            z-index: 1000;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
            background: white;
            box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
            color: black;
        }
    
        .alert-box.show {
            bottom: 0;
        }
    
        .alert-content {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
    
        .close-btn {
            position: absolute;
            top: -10px;
            right: 10px;
            font-size: 30px;
            cursor: pointer;
            color: black;
            z-index:999;
        }
    
        .close-btn:hover {
            color: #ff4444;
        }

        

@media only screen and (max-width: 600px) {
    .cats-master{
    height:200px;
}
}











.wrapper{display:flex;justify-content:center;align-items:center;}.checkmark__circle{stroke-dasharray: 166;stroke-dashoffset: 166;stroke-width: 2;stroke-miterlimit: 10;stroke: #7ac142;fill: none;animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.checkmark{width: 56px;height: 56px;border-radius: 50%;display: block;stroke-width: 2;stroke: #fff;stroke-miterlimit: 10;margin: 10% auto;box-shadow: inset 0px 0px 0px #7ac142;animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both}.checkmark__check{transform-origin: 50% 50%;stroke-dasharray: 48;stroke-dashoffset: 48;animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards}@keyframes stroke{100%{stroke-dashoffset: 0}}@keyframes scale{0%, 100%{transform: none}50%{transform: scale3d(1.1, 1.1, 1)}}@keyframes fill{100%{box-shadow: inset 0px 0px 0px 30px #7ac142}}


.loader {
    width: 40px;
    aspect-ratio: 1;
    --c: linear-gradient(#000 0 0);
    --r1: radial-gradient(farthest-side at bottom,#000 93%,#0000);
    --r2: radial-gradient(farthest-side at top   ,#000 93%,#0000);
    background: 
      var(--c) ,var(--r1),var(--r2),
      var(--c) ,var(--r1),var(--r2),
      var(--c) ,var(--r1),var(--r2);
    background-repeat: no-repeat;
    animation: l2 1s infinite alternate;
  }
  @keyframes l2 {
    0%,25% {
      background-size: 8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px;
      background-position: 0 50%,0 calc(50% - 2px),0 calc(50% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);
   }
   50% {
      background-size: 8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px;
      background-position: 0 50%,0 calc(0% - 2px),0 calc(100% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);
   }
   75% {
      background-size: 8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px;
      background-position: 0 50%,0 calc(0% - 2px),0 calc(100% + 2px),50% 50%,50% calc(0% - 2px),50% calc(100% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);
   }
   95%,100% {
      background-size: 8px 100%,8px 4px, 8px 4px,8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px;
      background-position: 0 50%,0 calc(0% - 2px),0 calc(100% + 2px),50% 50%,50% calc(0% - 2px),50% calc(100% + 2px),100% 50%,100% calc(0% - 2px),100% calc(100% + 2px);
   }
  }

  .href-link, .href-link:active, .href-link:visited{
    color:black !important;text-decoration:none !important;
}
  .qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background: #fff;
  }
  
  .qty-control button {
    border: none;
    background: #f8f9fa;
    padding: 6px 12px;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.2s;
  }
  
  .qty-control button:hover {
    background: #e2e6ea;
  }
  
  .qty-control input {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
    background: transparent;
    font-weight: 500;
  }

  .xmark {
    width: 80px;
    height: 80px;
    stroke: #e74c3c; /* red for error */
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: draw-x 0.5s ease-out forwards;
  }
  
  @keyframes draw-x {
    from {
      stroke-dasharray: 100;
      stroke-dashoffset: 100;
    }
    to {
      stroke-dasharray: 100;
      stroke-dashoffset: 0;
    }
  }
  .text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
} 
#currencyDropdown{
    border:none !important;
    background-color: transparent !important;
    color: white !important;
}
#currencyDropdown:hover{
    background-color: transparent !important;
}
@media (min-width: 768px) {
    .mcurselect {
      display: none !important;
    }
  }
  
  @media (max-width: 767.98px) {
    #curChange {
      display: none !important;
    }
  }
  