
    :root {
      --primary-color: #4E0E34;
      --secondary-color: #D92D94;
      --accent-color: #F6E4B1;
      --light-bg: #F9F5F7;
      --dark-text: #0D0D0D;
      --light-text: #FFFFFF;
      --gray-text: #525252;
      --border-color: #D3D3D3;
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Cairo', sans-serif;
    }
    
    body {
      background-color: #fff;
      color: var(--dark-text);
      overflow-x: hidden;
    }
    
    /* Header Styles */
    .top-bar {
      background-color: var(--dark-text);
      color: var(--light-text);
      height: 56px;
      font-size: 14px;
      font-weight: 500;
    }
    
    .promo-text {
      margin: 0 auto;
      padding: 0 15px;
      border-radius: 20px;
      font-weight: 700;
    }
    @media screen and (max-width: 768px) {
      .promo-text {
        font-size: 9px;
        padding: 0 10px;
      }
      
    }
    
    .language-selector {
      position: relative;
      cursor: pointer;
    }
    
    .language-menu {
      display: none;
      position: absolute;
      top: 100%;
      right: 0;
      background: white;
      border-radius: 4px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      z-index: 100;
      min-width: 120px;
    }
    
    .language-menu.show {
      display: block;
    }
    
    .language-option {
      padding: 12px 16px;
      cursor: pointer;
      transition: background-color 0.2s;
      color: var(--dark-text);
    }
    
    .language-option:hover {
      background-color: rgba(0, 0, 0, 0.05);
    }
    
    .main-header {
      background: white;
      
      height: 128px;
    }
    @media (max-width: 768px) {
    .currency-dropdown .dropdown-menu {
        top: 40px !important;
        left: -38px !important;
     }
    .logo {
        width:180px !important;
        height: 50px!important;
    }
      .main-header {
        height: 110px;
        box-shadow: none;
      }
    }
    
   
    
    .nav-icons {
      font-size: 24px;
      color: var(--dark-text);
    }
    
    .nav-icons .badge {
      font-size: 10px;
      top: -5px;
      right: -5px;
    }
    
    /* Hero Slider */
    .hero-slider {
      display: flex;
      justify-content: center;
      /*margin-top: 50px;*/
      height: 500px;
      position: relative;
      overflow: hidden;
    }
    .slider-container {
     position: relative;
     width: 100%;
    
    
     background: linear-gradient(90deg, rgba(217, 45, 148, 1) 50.97%, rgba(78, 14, 52, 1) 100%);
   }
    
    @media (max-width: 768px) {
      .hero-slider {
        height: 350px;
        margin-top: -14px;
        height: auto;
      }
      .slider-container{
        background: none;
      }
    }
    
    .slider-wrapper {
      display: flex;
      transition: transform 0.5s ease;
      height: 100%;
    }
    @media (max-width: 768px) {
      .slider-wrapper {
        height: auto;
        
      }
      
    }
    
    .slider-slide {
      min-width: 100%;
      position: relative;
      height: 100%;
    }
    /* Responsive adjustments */
@media (max-width: 768px) {
  .slider-slide {
    flex-direction: column; /* Stack image and content vertically on small screens */
  }
  .col-6.p-0 {
    width: 100% !important; /* Full width for each part on mobile */
  }
  .slider-content {
    display: none;
    font-size: 18px; /* Smaller text on mobile */
    padding: 20px;
  }
  .brand-slider-container{
    margin: 0;
  }
}
    
    .slider-img {
      
      height: 100%;
      object-fit: cover;
    }
    @media (max-width: 768px) {
      .slider-img {
        object-fit: contain;
        margin: 20px auto;
        width: 100%;
        height: auto;
      }
    }
    
    .slider-content {
  font-family: "Cairo-SemiBold", sans-serif;
  font-size: 40px;
  color: white;
  font-weight: 600;
  width: 100%;
  max-width: 700px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
    
    @media (max-width: 768px) {
      .slider-content {
        font-size: 24px;
        right: -30%;
      }
    }
    
    .slider-nav {
      position: absolute;
      bottom: 20px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 10px;
      z-index: 10;
    }
    
    .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .slider-dot.active {
      background: rgba(255, 255, 255, 0.8);
    }
    
    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background: rgba(0, 0, 0, 0.3);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      cursor: pointer;
      z-index: 10;
      transition: all 0.3s ease;
    }
    
    .slider-btn:hover {
      background: rgba(0, 0, 0, 0.6);
    }
    
    .slider-btn-prev {
      left: 20px;
    }
    
    .slider-btn-next {
      right: 20px;
    }
    
    /* Brand Slider */
    .brand-slider-container {
      position: relative;
      width: 100%;
      height: 120px;
      overflow: hidden;
      background: white;
      margin: 30px 0;
    }
    
    .brand-slider-wrapper {
      display: flex;
      height: 100%;
      align-items: center;
      animation: brandScroll 30s linear infinite;
    }
    
    @keyframes brandScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }
    
    .brand-slide {
      min-width: 200px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .brand-img {
      max-width: 150px;
      max-height: 80px;
      object-fit: contain;
      filter: grayscale(100%);
      transition: filter 0.3s;
    }
    
    .brand-img:hover {
      filter: grayscale(0);
    }
    
    /* Section Headers */
    .section-header {
      position: relative;
      text-align: center;
      margin: 20px auto;
      text-wrap: nowrap;
      padding-bottom: 10px;
    }
    
    .section-header h2 {
      font-size: 32px;
      font-weight: 600;
      color: var(--primary-color);
      position: relative;
      display: inline-block;
    }
    
    .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 6px;
      background: var(--accent-color);
      border-radius: 3px;
    }
    
    /* Category Slider */
    .category-slider-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      margin-bottom: 40px;
    }
    
    .category-slider-wrapper {
      display: flex;
      transition: transform 0.5s ease;
      padding: 10px 0;
    }
    
    .category-slide {
      min-width: 33.333%;
      padding: 0 15px;
      cursor: pointer;
      color: #000;
    }
    
    @media (max-width: 992px) {
      .category-slide {
        min-width: 50%;
      }
    }
    
    @media (max-width: 576px) {
      .category-slide {
        min-width: 100%;
      }
    }
    
    .category-card {
      height: 400px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
      position: relative;
    }
    
    .category-card:hover {
      transform: translateY(-10px);
    }
    
    .category-img {
      width: 100%;
      height: 330px;
      object-fit: cover;
    }
    
    .category-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.9);
      padding: 15px;
      text-align: center;
      font-size: 24px;
      font-weight: 600;
    }
    
    .category-slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      cursor: pointer;
      z-index: 10;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
    }
    
    .category-slider-btn:hover {
      background: white;
    }
    
    .category-slider-btn-prev {
      left: 10px;
    }
    
    .category-slider-btn-next {
      right: 10px;
    }
    
    /* Promo Banners */
    .promo-banner {
      width: 600px;
      border-radius: 20px;
      overflow: hidden;
      height: 308px;
      position: relative;
      margin-bottom: 40px;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
    }
    @media (max-width: 768px) {
      .promo-banner {
        width: 356px;
        height: 201px;
        
      }
    }
    
    .promo-content {
      max-width: 100%;
      padding: 10px;
      color: var(--dark-text);
      font-size: 28px;
      line-height: 1.4;
      position: relative;
      left: 35%;
      z-index: 2;
    }
    @media screen and (max-width: 768px) {
      .promo-content {
        right: 0;
        text-wrap: nowrap;
        font-size: 16px;
      }
      
    }
    
    .promo-content .highlight {
     
      font-weight: 700;
    }
    
    .promo-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
     
      z-index: 1;
    }
    
    /* Products */
    .product-grid {
      margin-bottom: 50px;
    }
    
    .product-card {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
      margin-bottom: 30px;
      background: white;
    }
    
    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .product-badge {
      position: absolute;
      /*top: 15px;*/
      /*left: 0;*/
      padding: 5px 15px;
      border-radius: 0 20px 20px 0;
      color: white;
      font-weight: 500;
      z-index: 2;
    }
    
    .discount-badge {
      background: #44B135;
    }
    
    .outofstock-badge {
      background: #E54747;
    }
    
    .product-img {
      width: 100%;
      height: 296px;
      object-fit: cover;
    }
    @media (max-width: 768px){
       .product-img{
        height: 174px;
       }
    }
    
    .product-info {
      text-align: center;
      padding: 20px;
    }
    
    .product-name {
       /*text-wrap: nowrap;*/
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--dark-text);
    }
    
    .product-price {
       text-wrap: nowrap;
      font-size: 18px;
      font-weight: 600;
      color: var(--primary-color);
    }
    
    .original-price {
      text-wrap: nowrap;
      font-size: 14px;
      color: var(--gray-text);
      text-decoration: line-through;
      margin-left: 10px;
    }
    @media screen and (max-width: 768px) {
      .original-price{
        font-size: 10px;
      }
    }
    
    .product-actions {
      position: absolute;
      top: 15px;
      right: 15px;
      display: flex;
      gap: 10px;
      z-index: 2;
    }
    
    .action-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
     
      transition: all 0.3s;
    }
    
    .action-btn:hover {
      
      color: white;
    }
    
    /* Footer */
    footer {
    
      padding: 1rem 0 1.5rem;
      border-top: 1px solid rgba(82, 81, 81, 0.53);
      color: var(--dark-text);
    }
    
    .footer-logo {
     max-width: 200px;
     margin-bottom: 2rem;

    }
       .footer-welcome {
            color: var(--main-txt);
            font-size: 14px;
            line-height: 1.6;
            
            
        }
    
    .footer-about {
      font-size: 14px;
      line-height: 1.6;
      
    }
    
    .footer-title {
       font-weight: 700;
            font-size: 16px;
            
            color: var(--main-txt);
    }
    
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .footer-links li {
    margin-bottom: 0.5rem;
    }
    
    .footer-links a {
        color: var(--main-txt);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
    }
    
    .footer-links a:hover {
      color: var(--secondary-color);
    }
            .subscribe-container {
           width:220px;
            border-radius: 8px;
           
        }
 .subscribe-title {
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 1rem;
            color: var(--main-txt);
        }
    
    .subscribe-form {
      display: flex;
      margin-bottom: 1.5rem;
    }
    .email-input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid var(--line-color);
            border-right: none;
            border-radius: 5px 0 0 5px;
            font-size: 14px;
        }
        
        .submit-btn {
            background: var(--dark-text);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .submit-btn:hover {
            background: #333;
        }
    .subscribe-form input {
      color:#333;
      flex: 1;
      padding: 10px 15px;
      border: 1px solid var(--border-color);
      border-radius: 5px 0 0 5px;
      outline: none;
    }
    
    .subscribe-form button {
        left:0px;
      background: var(--dark-text);
      color: white;
      border: none;
      padding: 0 20px;
      border-radius: 0 5px 5px 0;
      cursor: pointer;
      transition: background 0.3s;
    }
    
    .subscribe-form button:hover {
      background: var(--secondary-color);
    }
    
    .social-icons {
      display: flex;
      gap: 1.2rem;
            /*margin-bottom: 2rem;*/
    }
    
    .social-icon {
      width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f5f5f5;
            color: var(--main-color);
            transition: all 0.3s ease;
    }
    
    .social-icon:hover {
     background: var(--main-color);
            color: white;
            transform: translateY(-3px);
    }
    
    .copyright {
       display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            color: #000;
            font-size: 14px;
            margin-top: 2rem;
    }
     /* Mobile specific styles */
        .mobile-footer .footer-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 10px 0;
            border-bottom: 1px solid var(--line-color);
        }
        
        .mobile-footer .footer-links {
            display: none;
            padding: 10px 0;
        }
        
        .mobile-footer .footer-links.show {
            display: block;
        }
        
        .mobile-footer .social-icons {
            justify-content: start;
            /*margin-top: 1.5rem;*/
        }
        
        @media (min-width: 992px) {
            .mobile-footer {
                display: none;
            }
            
            .desktop-footer {
                display: block;
            }
        }
        
        @media (max-width: 991.98px) {
            .desktop-footer {
                display: none;
            }
            
            .mobile-footer {
                display: block;
            }
            
            .footer-logo {
                margin: 0 auto 1.5rem;
            }
            
            .footer-welcome {
                text-align: center;
                margin: 0 auto 2rem;
            }
        }
    
    /* Mobile Menu */
    .mobile-menu-btn {
     
      background: none;
      border: none;
      font-size: 24px;
      color: var(--dark-text);
    }
    
    @media (max-width: 992px) {
      .mobile-menu-btn {
        display: block;
      }
      
      .main-nav {
        display: none;
      }
      
      .nav-icons span {
        display: none;
      }
    }
    
    /* Side Menu */
    .side-menu {
      position: fixed;
      top: 0;
      right: -400px;
      width: 320px;
      height: 100vh;
      background: white;
      box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
      z-index: 1050;
      transition: right 0.3s ease;
      padding: 20px;
      overflow-y: auto;
    }
    
    .side-menu.active {
      right: 0;
    }
    
    .side-menu-close {
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 24px;
      background: none;
      border: none;
      color: var(--dark-text);
    }
    
    .side-menu-logo {
      text-align: center;
      /*margin: 30px 0;*/
    }
    
    .side-menu-logo img {
      max-width: 200px;
    }
    
    .side-menu-divider {
      height: 1px;
      background: var(--border-color);
      margin: 20px 0;
    }
    
    .side-menu-items {
      padding: 0;
    }
    
    .side-menu-item {
      padding: 15px 0;
      
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }
    
    .side-menu-item:last-child {
      border-bottom: none;
    }
    
    .overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1040;
    }
    
    .overlay.active {
      display: block;
    }
    
    /* Utility Classes */
    .btn-see-all {
      display: inline-block;
      color: var(--dark-text);
      font-weight: 700;
      text-decoration: none;
      padding-bottom: 2px;
      border-bottom: 2px solid var(--dark-text);
      transition: all 0.3s;
    }
    
    .btn-see-all:hover {
      color: var(--secondary-color);
      border-bottom-color: var(--secondary-color);
    }
    @media screen and (max-width: 768px) {
         .subscribe-container {
           width:350px!important;
             
         }
        .mobile-footer .social-icons {
            justify-content: center!important;
        }
      .offer-select-btn-mobile{
        margin: 0 85%;
    text-wrap: nowrap;
    }
    }
    @media screen and (max-width: 768px) {
     .product-badge{
      font-size: 12px;
      
      }
    }
    .frame-372 {
   background: #ffffff;
   left: 80%;
  border-radius: 7px;
  padding: 0px 6px 0px 6px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  
  position: relative;
  top:10px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
 
}
@media screen and (max-width: 768px) {
  .frame-372 {
    left: -34%;
  }
  
}
.emojione-v-1-flag-for-oman {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.vector {
  width: 68.75%;
  height: 23.44%;
  position: absolute;
  right: 0%;
  left: 31.25%;
  bottom: 15.62%;
  top: 60.94%;
  overflow: visible;
}
.vector2 {
  width: 68.75%;
  height: 25%;
  position: absolute;
  right: 0%;
  left: 31.25%;
  bottom: 59.38%;
  top: 15.62%;
  overflow: visible;
}
.vector3 {
  width: 100%;
  height: 68.75%;
  position: absolute;
  right: 0%;
  left: 0%;
  bottom: 15.62%;
  top: 15.62%;
  overflow: visible;
}
.group2 {
  width: 19.46%;
  height: 19.48%;
  position: absolute;
  right: 73.44%;
  left: 7.1%;
  bottom: 62.25%;
  top: 18.27%;
  overflow: visible;
}
.title {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.omr {
  color: var(--main-txt, #101010);
  text-align: right;
  font-family: var(--title-medium-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--title-medium-font-size, 18px);
  font-weight: var(--title-medium-font-weight, 500);
  position: relative;
  cursor: pointer;
}
.icon-outline-arrow-ios-left4 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}

 /* Add these new styles for the currency dropdown */
    .currency-dropdown .dropdown-menu {
      top: 38px;
      left: 90px;
      min-width: 200px;
      border-radius: 7px;
      box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
      border: none;
      padding: 0.5rem 0;
    }
    
    .currency-dropdown .dropdown-item {
      padding: 0.75rem 1.5rem;
      font-size: 15px;
      display: flex;
      align-items: center;
    }
    
    .currency-dropdown .dropdown-item:hover {
      background-color: #f8f9fa;
    }
    
    .currency-flag {
      width: 24px;
      height: 24px;
      margin-right: 10px;
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }
    
    .cart-container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 20px;
    }
    
    .cart-header {
      text-align: center;
      margin-bottom: 30px;
    }
    
    .cart-header h1 {
      font-size: 36px;
      color: var(--primary-color);
      font-weight: 700;
      position: relative;
      display: inline-block;
      margin-bottom: 20px;
    }
    
    .cart-header h1::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 6px;
      background: var(--accent-color);
      border-radius: 3px;
    }
    
    .cart-row {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }
    
    .cart-items {
      flex: 1;
      min-width: 300px;
    }
    
    .cart-summary {
      flex: 0 0 350px;
      background: var(--light-bg);
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .cart-item {
      display: flex;
      margin-bottom: 25px;
      padding-bottom: 25px;
      border-bottom: 1px solid var(--border-color);
    }
    
    .cart-item-image {
      width: 120px;
      height: 120px;
      border-radius: 10px;
      overflow: hidden;
      margin-right: 20px;
    }
    
    .cart-item-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .cart-item-details {
      flex: 1;
    }
    
    .cart-item-name {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 5px;
    }
    
    .cart-item-price {
      font-size: 18px;
      font-weight: 600;
      color: var(--primary-color);
      margin-bottom: 15px;
    }
    
    .quantity-controls {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }
    
    .quantity-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: white;
      border: 1px solid var(--border-color);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    
    .quantity-input {
      width: 50px;
      text-align: center;
      margin: 0 10px;
      border: 1px solid var(--border-color);
      border-radius: 5px;
      padding: 5px;
    }
    
    .remove-item {
      color: #dc3545;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 14px;
    }
    
    .cart-summary-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 20px;
      color: var(--primary-color);
      text-align: center;
    }
    
    .summary-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
      padding-bottom: 15px;
      border-bottom: 1px dashed var(--border-color);
    }
    
    .summary-total {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary-color);
      margin: 20px 0;
    }
    
    .btn-checkout {
      background: var(--primary-color);
      color: white;
      border: none;
      border-radius: 30px;
      padding: 12px 30px;
      font-size: 18px;
      font-weight: 600;
      width: 100%;
      margin: 20px 0;
      transition: all 0.3s;
    }
    
    .btn-checkout:hover {
      background: var(--secondary-color);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .btn-continue {
      background: white;
      color: var(--primary-color);
      border: 2px solid var(--primary-color);
      border-radius: 30px;
      padding: 10px 20px;
      font-size: 16px;
      font-weight: 600;
      width: 100%;
      transition: all 0.3s;
    }
    
    .btn-continue:hover {
      background: var(--primary-color);
      color: white;
    }
    
    .gifts-section {
      background: white;
      border-radius: 15px;
      padding: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin-top: 30px;
    }
    
    .gifts-title {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 15px;
      color: var(--primary-color);
    }
    
    .gifts-list {
      list-style: none;
      padding: 0;
    }
    
    .gifts-list li {
      padding: 8px 0;
      border-bottom: 1px solid var(--light-bg);
    }
    
    .gifts-list li:last-child {
      border-bottom: none;
    }
    
    .promo-banner2 {
      background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
      border-radius: 15px;
      padding: 25px;
      color: white;
      margin-top: 30px;
      text-align: center;
    }
    
  
    
    @media (max-width: 768px) {
      .cart-summary {
        flex: 0 0 100%;
      }
      
      .cart-item {
        flex-direction: column;
      }
      
      .cart-item-image {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 15px;
      }
      
    }
    /* Cart Icon Styles */
.cart-icon-container {
  position: relative;
  cursor: pointer;
}

.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  padding: 4px 8px;
  font-size: 12px;
}

/* Modal Styles */
.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.modal-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}

.modal-content {
  background: white;
  max-width: 500px;
  width: 100%;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.modal-content h3 {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.cart-items {
  max-height: 400px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.cart-item-image {
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin-right: 15px;
}

.cart-item-details {
  flex: 1;
  margin-right: 15px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  background: #f0f0f0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 5px;
}

.remove-item {
  color: #d92d94;
  font-size: 18px;
  cursor: pointer;
}

.total-section {
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.action-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.continue-shopping {
  background: white;
  border: 1px solid #ddd;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s;
}

.continue-shopping:hover {
  background: #f0f0f0;
}

.checkout {
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s;
}

.checkout:hover {
  background: var(--secondary-color);
}
/* Responsive Adjustments */
@media (max-width: 768px) {


  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item-image {
    width: 100%;
    height: 150px;
    margin-bottom: 15px;
  }

  .cart-item-details {
    width: 100%;
  }

  .quantity-controls {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .btn-checkout,
  .btn-continue {
    width: 100%;
    margin: 10px 0;
    font-size: 16px;
    padding: 12px;
  }
}

@media (max-width: 576px) {
  .cart-item-image {
    height: 120px;
  }

  .cart-item-name {
    font-size: 16px;
  }

  .cart-item-price {
    font-size: 16px;
  }

  .quantity-input {
    font-size: 14px;
  }

  .remove-item {
    font-size: 12px;
  }
}


 /* Search Styles */
    .search-container {
      display: flex;
      align-items: center;
      position: relative;
      margin-top: 2%;
      transition: all 0.3s ease;
    }
    
    .search-input {
      width: 0;
      opacity: 0;
      padding: 8px 15px;
      border: 1px solid var(--border-color);
      border-radius: 30px;
      outline: none;
      transition: all 0.3s ease;
    }
    
    .search-input.active {
      width: 250px;
      opacity: 1;
      padding: 8px 15px;
    }
    
    .search-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
    }
    
    .search-results {
      position: absolute;
      top: 84%;
        right: -60px;
      width: 100%;
      max-width: 400px;
      background: white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      z-index: 1000;
      display: none;
      max-height: 400px;
      overflow-y: auto;
    }
    
    .search-results.active {
      display: block;
    }
    
    .search-item {
      padding: 10px 15px;
      border-bottom: 1px solid var(--border-color);
      display: flex;
      align-items: center;
      cursor: pointer;
      transition: background-color 0.2s;
    }
    
    .search-item:hover {
      background-color: var(--light-bg);
    }
    
    .search-item-image {
      width: 50px;
      height: 50px;
      border-radius: 5px;
      margin-right: 10px;
      object-fit: cover;
    }
    
    .search-item-info {
      flex: 1;
    }
    
    .search-item-name {
      font-weight: 600;
      margin-bottom: 3px;
    }
    
    .search-item-price {
      color: var(--primary-color);
      font-weight: 600;
    }
    
    .no-results {
      padding: 15px;
      text-align: center;
      color: var(--gray-text);
    }
    
    /* Mobile Search Overlay */
    .search-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.8);
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
    }
    
    .search-overlay.active {
      display: flex;
    }
    
    .mobile-search-container {
      width: 90%;
      max-width: 600px;
      background: white;
      border-radius: 15px;
      padding: 20px;
    }
    
    .mobile-search-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }
    
    .mobile-search-input {
      flex: 1;
      padding: 12px 15px;
      border: 1px solid var(--border-color);
      border-radius: 30px;
      outline: none;
      font-size: 16px;
      
    }
    
    .close-mobile-search {
      background: none;
      border: none;
      font-size: 24px;
      margin-left: 10px;
      cursor: pointer;
      color: var(--dark-text);
    }
    
    .mobile-search-results {
      max-height: 60vh;
      overflow-y: auto;
      background-color: #fff;
          z-index: 1000;
        position: relative;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .search-input.active {
        width: 180px;
      }
    }
    
    @media (max-width: 768px) {
      .search-input.active {
        display: none;
      }
      
      .search-results {
        display: none !important;
      }
      
      .mobile-search-container {
        margin-top: 100px;
      }
    }
    .nav-icon-img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .nav-icon-img {
    width: 23px;
    height: 23px;
  }
  
}
.nav-icon-label {
  font-size: 15px;
  color: #000;
  margin-top: 2px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.nav-icon-item {
  min-width: 48px;
}
@media screen and (max-width: 768px) {
  .nav-icon-item {
    min-width: 30px;
  }
  
}

.cart-modal .cart-card {
  background: #fff;
  border-radius: 16px;
  max-width: 370px;
  margin: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 24px 20px 20px 20px;
  position: fixed;
  left: 20%;
  top: 100px;
  transform: translateX(-50%);
  z-index: 1050;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .cart-modal .cart-card {
    left: 50%;
    width: 90%;
    max-width: none;
    transform: translateX(-50%);
    top: 60px;
  }
}

.cart-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}

.cart-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cart-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-infos {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cart-name {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 3px;
}

.cart-price {
  color: #888;
  font-size: 14px;
  font-weight: 400;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f5f5f5;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 14px;
}

.qty-btn {
  background: none;
  border: none;
  font-size: 16px;
  color: #222;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-weight: 600;
}

.qty-value {
  min-width: 18px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.cart-delete {
  background: none;
  border: none;
  margin-left: 6px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.cart-delete img {
  width: 22px;
  height: 22px;
}

.cart-total-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  margin: 18px 0 12px 0;
}

.cart-total-label {
  font-weight: 500;
  margin-right: 6px;
}

.cart-total-value {
  font-weight: 700;
}

.cart-actions {
  display: flex;
  width: 100%;
  gap: 10px;
}

.cart-action-btn {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 8px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cart-action-btn.checkout {
  background: #111;
  color: #fff;
  border: none;
}

.cart-action-icon {
  width: 18px;
  height: 18px;
}
@media (max-width: 768px) {
  .promo-text-content{
    font-size: 14px;
    text-wrap: nowrap;
  
}
#selected-language {
    font-size: 10px;
    
}
.icon-fill-search{
  width: 15px;
  height: 15px;
  
}
.search-container {
  margin-top: 0;
}
}
.mobile-search-input {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  max-width: 150px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .mobile-search-input {
    font-size: 13px;
    padding: 4px 8px;
  }
  /* Category Section */
.section-header {
  position: relative;
  text-align: center;
}

.section-header .underline {
  width: 80px;
  height: 3px;
  background-color: #FFD700; /* Gold accent color */
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.category-slider-container {
  max-height: 300px; /* Adjust as needed */
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  
}

.category-card {
  height: 280px;
  width: 200px; /* Fixed width for mobile */
  
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-decoration: none;
  color: #000;
}

.category-card:hover,
.category-card:focus {
  transform: translateY(-4px);
}

.category-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
}

.category-label {
  font-weight: 500;
  position: relative;
}

.category-label::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #FFD700;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-label::after,
.category-card:focus .category-label::after {
  opacity: 1;
}
}

    
 








*{
  box-sizing: border-box;
}


/* OUD MUSCAT Side Menu Styles */
.side-menu {
   position: fixed;
   top: 0;
   right: -400px; /* Changed from left: -300px to right: -300px */
   width: 400px;
   height: 100vh; /* This already makes it full screen height */
   background-color: white;
   box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1); /* Changed shadow direction */
   z-index: 1001;
   transition: right 0.3s ease; /* Changed from left to right transition */
   font-family: "Cairo", sans-serif;
}

.side-menu.active {
   right: 0; /* Changed from left: 0 to right: 0 */
}
.overlay {
  z-index: 1000; /* Below side menu but above slider */
}
.side-menu-close {
   position: absolute;
   top: 20px;
   left: 20px; /* Changed from right: 20px to left: 20px */
   font-size: 24px;
   color: #ff0000;
   cursor: pointer;
}

.side-menu-logo {
   text-align: center;
   /*margin: 30px 0;*/
}

.side-menu-logo h1 {
   font-size: 24px;
   font-weight: bold;
   margin-bottom: 5px;
   text-transform: uppercase;
}

.side-menu-logo h2 {
   font-size: 18px;
   font-weight: normal;
}

.side-menu-divider {
   height: 1px;
   background-color: #e0e0e0;
   margin: 15px 0;
   margin-top: 70px;
}

.side-menu-items {
   padding: 0;
}

.side-menu-item {
   padding: 15px 20px;
   display: flex;
   justify-content:end;
   align-items: center;
   cursor: pointer;
   border-bottom: 1px solid #f5f5f5;
}

.side-menu-item:hover {
   background-color: #f9f9f9;
}

.side-menu-item span:first-child {
   font-size: 20px;
   color: #333;
}

.side-menu-item span:last-child {
   font-size: 20px;
   color: #333;
}
.main-page2 {
  background: #ffffff;
  align-self: stretch;
  flex-shrink: 0;
  height: 3948px;
  position: relative;
  overflow: hidden;
}
.header {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
 
  translate: -50%;
 
}
.frame-309 {
  background: #0d0d0d;
  flex-shrink: 0;
  width: 100%;
  height: 56px;
  position: relative;
  
}
.ads {
  display: flex;
  flex-direction: row;
   gap: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
}
.icon-outline-arrow-ios-left {
  flex-shrink: 0;
   width: 1.5rem;
  height: 1.5rem;
  position: relative;
  overflow: visible;
}
.ads-txt {
  display: flex;
  flex-direction: row;
   gap: 0.5rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.icon-outline-arrow-left {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}
.shop-now-discounts-up-to-50-on-all-perfumes {
  color: #ffffff;
  text-align: left;
  font-family: "Cairo-Bold", sans-serif;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
.icon-outline-arrow-ios-left2 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}
.language {
  display: flex;
  flex-direction: row;
  gap: 2px;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 1290px;
  top: 11px;
}
.txt {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.english {
  color: #000;
  text-align: left;
  font-family: "Cairo-Medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.icon-outline-arrow-ios-left3 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}
.frame-314 {
  background: #ffffff;
  flex-shrink: 0;
 
  height: 80px;
  position: relative;
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.choose {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 80px;
  top: 12px;
}
.cart {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.solar-cart-linear {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.group {
  width: 75.19%;
  height: 75%;
  position: absolute;
  right: 12.41%;
  left: 12.41%;
  bottom: 12.5%;
  top: 12.5%;
  overflow: visible;
}
.cart2 {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: "Cairo-Medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.fav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.heart {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}
.favorite {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: "Cairo-Medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.account {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 46px;
  position: relative;
}
.user {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}
.account2 {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: "Cairo-Medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.language2 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 46px;
  position: relative;
}
.icon-fill-search {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}
.search {
  color: var(--main-txt, #101010);
  text-align: center;
  font-family: "Cairo-Medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.logo {
    width: 230px;
    height: 61px;
    position: absolute;
    left: 62%;
    translate: -50% 23%;
    /*top: 2.5%;*/
    overflow: hidden;
}
.llogo-removebg-preview-1 {
  width: 254.54px;
  height: 248px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  object-fit: cover;
  aspect-ratio: 254.54/248;
}
.llogo-removebg-preview-13 {
   width: 254.54px;
  height: 248px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
 
  object-fit: cover;
  aspect-ratio: 254.54/248;
}
.txt2 {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 1238px;
  top: 13px;
}
.txt3 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.txt4 {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.all-products {
  color: #101010;
  text-align: center;
  font-family: "Cairo-Medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.txt5 {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
._120-products {
  color: var(--second-txt, #525252);
  text-align: right;
  font-family: "Cairo-Medium", sans-serif;
  font-size: 12px;
  font-weight: 500;
  position: relative;
}
.language3 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.icon-outline-menu {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}
.frame-368 {
  margin-top: 3px;
  flex-shrink: 0;
  width: 1440px;
  height: 60px;
  position: relative;
  overflow: hidden;
}
.frame-373 {
  display: flex;
  flex-direction: row;
  gap: 223px;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 80px;
  top: 13px;
}
.frame-372 {
  background: #ffffff;
  border-radius: 7px;
  padding: 0px 6px 0px 6px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
}
.emojione-v-1-flag-for-oman {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.vector {
  width: 68.75%;
  height: 23.44%;
  position: absolute;
  right: 0%;
  left: 31.25%;
  bottom: 15.62%;
  top: 60.94%;
  overflow: visible;
}
.vector2 {
  width: 68.75%;
  height: 25%;
  position: absolute;
  right: 0%;
  left: 31.25%;
  bottom: 59.38%;
  top: 15.62%;
  overflow: visible;
}
.vector3 {
  width: 100%;
  height: 68.75%;
  position: absolute;
  right: 0%;
  left: 0%;
  bottom: 15.62%;
  top: 15.62%;
  overflow: visible;
}
.group2 {
  width: 19.46%;
  height: 19.48%;
  position: absolute;
  right: 73.44%;
  left: 7.1%;
  bottom: 62.25%;
  top: 18.27%;
  overflow: visible;
}
.title {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.omr {
  color: var(--main-txt, #101010);
  text-align: right;
  font-family: var(--title-medium-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--title-medium-font-size, 18px);
  font-weight: var(--title-medium-font-weight, 500);
  position: relative;
}
.icon-outline-arrow-ios-left4 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}
.frame-369 {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.men {
  color: var(--main-txt, #101010);
  text-align: right;
  font-family: var(--title-medium-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--title-medium-font-size, 18px);
  font-weight: var(--title-medium-font-weight, 500);
  position: relative;
}
.icon-outline-arrow-ios-left5 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}
.women {
  color: var(--main-txt, #101010);
  text-align: right;
  font-family: var(--title-medium-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--title-medium-font-size, 18px);
  font-weight: var(--title-medium-font-weight, 500);
  position: relative;
}
.icon-outline-arrow-ios-left6 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}
.gifts {
  color: var(--main-txt, #101010);
  text-align: right;
  font-family: var(--title-medium-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--title-medium-font-size, 18px);
  font-weight: var(--title-medium-font-weight, 500);
  position: relative;
}
.icon-outline-arrow-ios-left7 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}
.nish-perfumes {
  color: var(--main-txt, #101010);
  text-align: right;
  font-family: var(--title-medium-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--title-medium-font-size, 18px);
  font-weight: var(--title-medium-font-weight, 500);
  position: relative;
}
.offers-and-discounts {
  color: var(--main-txt, #101010);
  text-align: right;
  font-family: var(--title-medium-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--title-medium-font-size, 18px);
  font-weight: var(--title-medium-font-weight, 500);
  position: relative;
}
.frame-383 {
  display: flex;
  flex-direction: column;
  gap: 120px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  position: absolute;
  left: 0px;
  top: 204px;
}
.image {
  background: linear-gradient(
    90deg,
    rgba(217, 45, 148, 1) 50.97222328186035%,
    rgba(78, 14, 52, 1) 100%
  );
  align-self: stretch;
  flex-shrink: 0;
  height: 428px;
  position: relative;
  overflow: hidden;
}
.up-to-50-off-on-our-exclusive-perfume-collection {
  color: #ffffff;
  text-align: center;
  font-family: "Cairo-SemiBold", sans-serif;
  font-size: 40px;
  font-weight: 600;
  position: absolute;
  left: 774px;
  top: 50%;
  translate: 0 -50%;
  width: 586px;
}
.frame-371 {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 50%;
  translate: -50%;
  top: 388px;
}
.ellipse-3 {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
}
.ellipse-4 {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
}
.ellipse-2 {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
}
.ellipse-1 {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
}
.brand {
  flex-shrink: 0;
  width: 1200px;
  height: 80px;
  position: relative;
  overflow: hidden;
}
.brands {
  display: flex;
  flex-direction: row;
  gap: 76px;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: calc(50% - 664px);
  top: 50%;
  translate: 0 -50%;
}
.brand2 {
  flex-shrink: 0;
  width: 150px;
  height: 80px;
  position: relative;
  overflow: hidden;
  object-fit: cover;
}
.sec-1 {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 1200px;
  position: relative;
}
.group-1 {
  flex-shrink: 0;
  width: 122.2px;
  height: 60px;
 
}
.frame-374 {
  background: var(--shadow, #f6e4b1);
  border-radius: 20px;
  width: 122px;
  height: 8px;
  text-align: center;
  
 
  overflow: hidden;
}
.category {
  color: #000000;
  text-align: right;
  font-family: var(--title-section-font-family, "Cairo-SemiBold", sans-serif);
  font-size: var(--title-section-font-size, 32px);
  font-weight: var(--title-section-font-weight, 600);
 
  
}
.category2 {
  align-self: stretch;
  flex-shrink: 0;
  height: 408px;
  position: relative;
  overflow: hidden;
}
.categories {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: -198px;
  top: 50%;
  translate: 0 -50%;
}
.card {
  border-radius: 20px;
  border-style: solid;
  border-color: var(--line, #d3d3d3);
  border-width: 1px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 384px;
  position: relative;
}
.image2 {
  border-radius: 10px 10px 0px 0px;
  align-self: stretch;
  flex-shrink: 0;
  height: 332px;
  position: relative;
  overflow: hidden;
  object-fit: cover;
}
.frame-375 {
  background: #ffffff;
  border-radius: 0px 0px 10px 10px;
  border-style: solid;
  border-color: var(--line, #d3d3d3);
  border-width: 1px;
  align-self: stretch;
  flex-shrink: 0;
  height: 76px;
  position: relative;
  overflow: hidden;
}
.women2 {
  color: var(--main-txt, #101010);
  text-align: center;
  font-family: var(--title-section-font-family, "Cairo-SemiBold", sans-serif);
  font-size: var(--title-section-font-size, 32px);
  font-weight: var(--title-section-font-weight, 600);
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
}
.card2 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 384px;
  position: relative;
}
.men2 {
  color: var(--main-txt, #101010);
  text-align: center;
  font-family: var(--title-section-font-family, "Cairo-SemiBold", sans-serif);
  font-size: var(--title-section-font-size, 32px);
  font-weight: var(--title-section-font-weight, 600);
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
}
.diffusers {
  color: var(--main-txt, #101010);
  text-align: center;
  font-family: var(--title-section-font-family, "Cairo-SemiBold", sans-serif);
  font-size: var(--title-section-font-size, 32px);
  font-weight: var(--title-section-font-weight, 600);
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
}
.frame-379 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 384px;
  position: relative;
}
.sprays {
  color: var(--main-txt, #101010);
  text-align: center;
  font-family: var(--title-section-font-family, "Cairo-SemiBold", sans-serif);
  font-size: var(--title-section-font-size, 32px);
  font-weight: var(--title-section-font-weight, 600);
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
}
.banner {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.image3 {
  background: linear-gradient(
    180deg,
    rgba(193, 193, 193, 1) 0%,
    rgba(187, 187, 185, 1) 87.01298832893372%
  );
  border-radius: 20px;
  flex-shrink: 0;
  width: 600px;
  height: 308px;
  position: relative;
  overflow: hidden;
}
.up-to-50-off-on-top-brands-free-delivery-for-2-days-only {
  color: #000000;
  text-align: center;
  font-family: "-", sans-serif;
  font-size: 32px;
  font-weight: 400;
  position: absolute;
  left: 191px;
  top: 50%;
  translate: 0 -50%;
  width: 395px;
}
.up-to-50-off-on-top-brands-free-delivery-for-2-days-only-span {
  font-family: "Cairo-Medium", sans-serif;
  font-weight: 500;
}
.up-to-50-off-on-top-brands-free-delivery-for-2-days-only-span2 {
  font-family: "Cairo-Bold", sans-serif;
  font-weight: 700;
}
.image4 {
  background: linear-gradient(
    180deg,
    rgba(205, 186, 161, 1) 0%,
    rgba(207, 188, 164, 1) 16.883116960525513%,
    rgba(231, 214, 196, 1) 87.01298832893372%
  );
  border-radius: 20px;
  flex-shrink: 0;
  width: 600px;
  height: 308px;
  position: relative;
  overflow: hidden;
}
.free-delivery-for-2-days-only-don-t-miss-out {
  color: #000000;
  text-align: center;
  font-family: "-", sans-serif;
  font-size: 32px;
  font-weight: 400;
  position: absolute;
  left: 266px;
  top: 50%;
  translate: 0 -50%;
  width: 321px;
}
.free-delivery-for-2-days-only-don-t-miss-out-span {
  font-family: "Cairo-Bold", sans-serif;
  font-weight: 700;
}
.free-delivery-for-2-days-only-don-t-miss-out-span2 {
  font-family: "Cairo-Medium", sans-serif;
  font-weight: 500;
}
.best-seller {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 1200px;
  position: relative;
}
.group-2 {
  flex-shrink: 0;
 
  height: 60px;
  
}
.frame-3742 {
  background: var(--shadow, #f6e4b1);
  border-radius: 20px;
  width: 146px;
  height: 8px;
  
  overflow: hidden;
}
.best-seller2 {
  color: #000000;
  text-align: center;
  font-family: var(--title-section-font-family, "Cairo-SemiBold", sans-serif);
  font-size: var(--title-section-font-size, 32px);
  font-weight: var(--title-section-font-weight, 600);

}
.all {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.group-4 {
  flex-shrink: 0;
  width: 56px;
  height: 34px;
  position: static;
}
.see-all {
  color: var(--main-txt, #101010);
  text-align: center;
  font-family: "Cairo-Bold", sans-serif;
   border-bottom: 1px solid var(--main-txt, #101010);
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  right:-7%;
  top: 0px;
  
}
.line-3 {
  margin-top: -1px;
  border-style: solid;
  border-color: var(--main-txt, #101010);
  border-width: 1px 0 0 0;
  width: 56px;
  height: 0px;
  position: absolute;
  left: calc(50% - -544px);
  top: 28px;
}
.cards {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.out-of-stock {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 282px;
  position: relative;
}
.image5 {
  border-radius: 10px 10px 0px 0px;
  align-self: stretch;
  flex-shrink: 0;
  height: 296px;
  position: relative;
  overflow: hidden;
}
.frame-380 {
  background: #ffffff;
  border-radius: 7px;
  border-style: solid;
  border-color: var(--line, #d3d3d3);
  border-width: 0.5px;
  width: 32px;
  height: 32px;
  position: absolute;
  left: 16px;
  top: 248px;
  overflow: hidden;
}
.tdesign-cart-add {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
  aspect-ratio: 1;
}
.frame-381 {
  background: #ffffff;
  border-radius: 7px;
  border-style: solid;
  border-color: var(--line, #d3d3d3);
  border-width: 0.5px;
  width: 32px;
  height: 32px;
  position: absolute;
  left: 234px;
  top: 16px;
  overflow: hidden;
}
.heart2 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
}
.frame-377 {
  background: #ffffff;
  border-radius: 0px 0px 10px 10px;
  border-style: solid;
  border-color: var(--line, #d3d3d3);
  border-width: 1px;
  align-self: stretch;
  flex-shrink: 0;
  height: 91px;
  position: relative;
  overflow: hidden;
}
.price {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: flex-start;
  
  position: absolute;
  left: 61px;
  top: 8px;
}
.name-of-perfume {
  color: var(--main-txt, #101010);
  text-align: center;
  font-family: var(--subheader-medium-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--subheader-medium-font-size, 22px);
  font-weight: var(--subheader-medium-font-weight, 500);
  position: relative;
  align-self: stretch;
}
._50-00-omr {
  color: var(--second-txt, #525252);
  text-align: center;
  font-family: "Cairo-SemiBold", sans-serif;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  align-self: stretch;
}
.discount {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 282px;
  position: relative;
}
.tdesign-cart-add2 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
  aspect-ratio: 1;
}
.heart3 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
}
.frame-382 {
  background: #44b135;
  border-radius: 0px 30px 30px 0px;
  width: 108px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 24px;
  overflow: hidden;
}
._50-discount {
  color: #ffffff;
  text-align: right;
  font-family: var(--title-medium-font-family, "Cairo-Medium", sans-serif);
  font-size: 17px;
  text-wrap: nowrap;
  font-weight: var(--title-medium-font-weight, 500);
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
}
.frame-376 {
  background: #ffffff;
  border-radius: 0px 0px 10px 10px;
  border-style: solid;
  border-color: var(--line, #d3d3d3);
  border-width: 1px;
  align-self: stretch;
  flex-shrink: 0;
  height: 91px;
  position: relative;
  overflow: hidden;
}
.group-3 {
  position: absolute;
  inset: 0;
}
._100-00-omr {
  color: #919191;
  text-align: center;
  font-family: "Cairo-SemiBold", sans-serif;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  left: 189px;
  top: 65px;
}
.line-2 {
  margin-top: -1px;
  border-style: solid;
  border-color: #919191;
  border-width: 1px 0 0 0;
  width: 59px;
  height: 0px;
  position: absolute;
  left: 192px;
  top: 80px;
}
.tdesign-cart-add3 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
  aspect-ratio: 1;
}
.heart4 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
}
.tdesign-cart-add4 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
  aspect-ratio: 1;
}
.heart5 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
}
.frame-3822 {
  background: var(--red, #e54747);
  border-radius: 0px 30px 30px 0px;
  width: 108px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 24px;
  overflow: hidden;
}
.out-of-stock2 {
  text-wrap: nowrap;
  color: #ffffff;
  text-align: right;
  font-family: var(--title-medium-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--title-medium-font-size, 18px);
  font-weight: var(--title-medium-font-weight, 500);
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
}
.group-22 {
  flex-shrink: 0;
  width: 160px;
  height: 60px;
  position: static;
}
.frame-3743 {
  background: var(--shadow, #f6e4b1);
  border-radius: 20px;
  width: 159px;
  height: 8px;
  position: absolute;
  left: 521px;
  top: 44px;
  overflow: hidden;
}
.new-arrival {
  color: #000000;
  text-align: right;
  font-family: var(--title-section-font-family, "Cairo-SemiBold", sans-serif);
  font-size: var(--title-section-font-size, 32px);
  font-weight: var(--title-section-font-weight, 600);
  position: absolute;
  left: calc(50% - 80px);
  top: 0px;
}
.tdesign-cart-add5 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
  aspect-ratio: 1;
}
.heart6 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
}
.tdesign-cart-add6 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
  aspect-ratio: 1;
}
.heart7 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
}
.tdesign-cart-add7 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
  aspect-ratio: 1;
}
.heart8 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
}
.tdesign-cart-add8 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
  aspect-ratio: 1;
}
.heart9 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
}
.group-23 {
  flex-shrink: 0;
  width: 286.5px;
  height: 60px;
  position: static;
}
.frame-3744 {
  background: var(--shadow, #f6e4b1);
  border-radius: 20px;
  width: 286px;
  height: 8px;
  position: absolute;
  left: 457.25px;
  top: 44px;
  overflow: hidden;
}
.offers-and-discounts2 {
  color: #000000;
  text-align: right;
  font-family: var(--title-section-font-family, "Cairo-SemiBold", sans-serif);
  font-size: var(--title-section-font-size, 32px);
  font-weight: var(--title-section-font-weight, 600);
  position: absolute;
  left: 50%;
  translate: -50%;
  top: 0px;
}
.tdesign-cart-add9 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
  aspect-ratio: 1;
}
.heart10 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
}
.tdesign-cart-add10 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
  aspect-ratio: 1;
}
.heart11 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
}
.tdesign-cart-add11 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
  aspect-ratio: 1;
}
.heart12 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
}
.tdesign-cart-add12 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
  aspect-ratio: 1;
}
.heart13 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: visible;
}
.line-1 {
  margin-top: -1px;
  border-style: solid;
  border-color: rgba(82, 81, 81, 0.53);
  border-width: 1px 0 0 0;
  width: 1440px;
  height: 0px;
  position: absolute;
  left: 50%;
  translate: -50%;
  top: 3945px;
  transform-origin: 0 0;
  transform: rotate(0deg) scale(1, 1);
}
.footer {
  background: #ffffff;
  align-self: stretch;
  flex-shrink: 0;
  /*height: 325px;*/
  position: relative;
  overflow: hidden;
}
.frame-6 {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  left: 122px;
  top: 48px;
}
.frame-4 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.logo2 {
  flex-shrink: 0;
  width: 204px;
  height: 73px;
  position: relative;
  overflow: hidden;
}
.llogo-removebg-preview-12 {
  width: 221px;
  height: 215px;
  position: absolute;
  left: calc(50% - 147px);
  top: 50%;
  translate: 0 -50%;
  object-fit: cover;
  aspect-ratio: 221/215;
}
.welcome-to-oud-muscat-perfumes-where-tradition-meets-elegance-discover-a-curated-selection-of-luxurious-oriental-and-international-fragrances-crafted-to-captivate-your-senses-and-elevate-your-presence {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: "Baloo2-Regular", sans-serif;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  width: 223px;
}
.frame-62 {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  left: 1126px;
  top: 139px;
}
.facebook {
  border-radius: 50px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}
.twitter {
  border-radius: 6px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}
.instagram {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}
.group3 {
  width: 99.94%;
  height: 100%;
  position: absolute;
  right: 0%;
  left: 0.06%;
  bottom: 0%;
  top: 0%;
  overflow: visible;
}
.vector4 {
  width: 99.94%;
  height: 100%;
  position: absolute;
  right: 0.06%;
  left: 0%;
  bottom: 0%;
  top: 0%;
  overflow: visible;
}
.linkedin {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}
.rectangle-12 {
  background: #0a66c2;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0%;
  left: 0%;
  bottom: 0%;
  top: 0%;
}
.linked-in-logo {
  width: 58.33%;
  height: 58.33%;
  position: absolute;
  right: 20.83%;
  left: 20.83%;
  bottom: 20.83%;
  top: 20.83%;
  overflow: visible;
}
.line-12 {
  margin-top: 10px;
  margin-bottom: 10px;
  border-style: solid;
  border-color: rgba(82, 81, 81, 0.53);
  border-width: 1px 0 0 0;
  width: 85%;
  height: 0px;
  position: absolute;
  left: 121.99px;
  top: 278.5px;
  transform-origin: 0 0;
  transform: rotate(0deg) scale(1, 1);
}
.frame-7 {
  display: flex;
  flex-direction: row;
  gap: 3px;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 627px;
  top: 290px;
}
.copyright {
  flex-shrink: 0;
  /*width: 11px;*/
  /*height: 11px;*/
  position: relative;
  overflow: visible;
}
._2023-estrella-inc-all-rights-reserved {
  color: #000000;
  text-align: left;
  font-family: "Baloo2-Medium", sans-serif;
  font-size: 11px;
  font-weight: 500;
  position: relative;
}
.frame-12 {
  display: flex;
  flex-direction: row;
  gap: 61px;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  left: 440px;
  top: 54px;
}
.frame-8 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.categories2 {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: "Cairo-Bold", sans-serif;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}
.women3 {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: var(--body-meduim-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--body-meduim-font-size, 16px);
  font-weight: var(--body-meduim-font-weight, 500);
  position: relative;
}
.men3 {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: var(--body-meduim-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--body-meduim-font-size, 16px);
  font-weight: var(--body-meduim-font-weight, 500);
  position: relative;
}
.new {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: var(--body-meduim-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--body-meduim-font-size, 16px);
  font-weight: var(--body-meduim-font-weight, 500);
  position: relative;
}
.best-seller3 {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: var(--body-meduim-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--body-meduim-font-size, 16px);
  font-weight: var(--body-meduim-font-weight, 500);
  position: relative;
}
.frame-9 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.shopping {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: "Cairo-Bold", sans-serif;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}
.payments {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: var(--body-meduim-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--body-meduim-font-size, 16px);
  font-weight: var(--body-meduim-font-weight, 500);
  position: relative;
}
.delivery-options {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: var(--body-meduim-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--body-meduim-font-size, 16px);
  font-weight: var(--body-meduim-font-weight, 500);
  position: relative;
}
.buyer-protection {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: var(--body-meduim-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--body-meduim-font-size, 16px);
  font-weight: var(--body-meduim-font-weight, 500);
  position: relative;
}
.frame-11 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.customer-care {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: "Cairo-Bold", sans-serif;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}
.help-center {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: var(--body-meduim-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--body-meduim-font-size, 16px);
  font-weight: var(--body-meduim-font-weight, 500);
  position: relative;
}
.terms-conditions {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: var(--body-meduim-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--body-meduim-font-size, 16px);
  font-weight: var(--body-meduim-font-weight, 500);
  position: relative;
}
.privacy-policy {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: var(--body-meduim-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--body-meduim-font-size, 16px);
  font-weight: var(--body-meduim-font-weight, 500);
  position: relative;
}
.returns-refund {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: var(--body-meduim-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--body-meduim-font-size, 16px);
  font-weight: var(--body-meduim-font-weight, 500);
  position: relative;
}
.survey-feedback {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: var(--body-meduim-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--body-meduim-font-size, 16px);
  font-weight: var(--body-meduim-font-weight, 500);
  position: relative;
}
.frame-10 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.pages {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: "Cairo-Bold", sans-serif;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}
.about-us {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: var(--body-meduim-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--body-meduim-font-size, 16px);
  font-weight: var(--body-meduim-font-weight, 500);
  position: relative;
}
.shop {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: var(--body-meduim-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--body-meduim-font-size, 16px);
  font-weight: var(--body-meduim-font-weight, 500);
  position: relative;
}
.contact-us {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: var(--body-meduim-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--body-meduim-font-size, 16px);
  font-weight: var(--body-meduim-font-weight, 500);
  position: relative;
}
.services-blog {
  color: var(--main-txt, #101010);
  text-align: left;
  font-family: var(--body-meduim-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--body-meduim-font-size, 16px);
  font-weight: var(--body-meduim-font-weight, 500);
  position: relative;
}
.frame-19 {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  left: 1126px;
  top: 54px;
}
.subscribe-now {
  color: #000000;
  text-align: left;
  font-family: "Cairo-Bold", sans-serif;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
.frame-17 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.group-32 {
  flex-shrink: 0;
  width: 192px;
  height: 32px;
  position: static;
}
.rectangle-13 {
  background: #8d8d8d;
  border-radius: 5px 0px 0px 5px;
  width: 147px;
  height: 32px;
  position: absolute;
  left: 0px;
  top: 0px;
}
.rectangle-14 {
  background: var(--main-color, #0d0d0d);
  border-radius: 0px 5px 5px 0px;
  width: 52px;
  height: 32px;
  position: absolute;
  left: 140px;
  top: 0px;
}
.frame-18 {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  position: absolute;
  left: 17px;
  top: 50%;
  translate: 0 -50%;
  width: 160px;
}

.email-input {
  color: #ffffff;
  background: transparent;
  font-family: var(--sub-body-meduim-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--sub-body-meduim-font-size, 12px);
  font-weight: var(--sub-body-meduim-font-weight, 500);
  padding: 4px 8px;
  width: 90px;
  border: none;
  outline: none;
}

.email-input::placeholder {
  color: #ffffff;
  opacity: 0.8;
}

.submit-btn:hover {
  opacity: 0.8;
}

/* Remove the old styles */
.your-email,
.submit {
  display: none;
}
.submit-btn {
  color: #ffffff;
  font-family: "Cairo-Medium", sans-serif;
  font-size: 12px;
  line-height: 140%;
  font-weight: 500;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s ease;
  position: relative;
  left: 11%;
 }
 .i-phone-13-mini-1 {
  background: #ffffff;
  align-self: stretch;
  flex-shrink: 0;
  height: 206.625rem;
  position: relative;
  overflow: hidden;
}
 /*
.your-email {
  color: #ffffff;
  text-align: left;
  font-family: var(--sub-body-meduim-font-family, "Cairo-Medium", sans-serif);
  font-size: var(--sub-body-meduim-font-size, 12px);
  font-weight: var(--sub-body-meduim-font-weight, 500);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.submit {
  color: #ffffff;
  text-align: left;
  font-family: "Cairo-Medium", sans-serif;
  font-size: 12px;
  line-height: 140%;
  font-weight: 500;
  position: relative;
} */


a
{
    text-decoration:none;
    color:#333;
}