@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   DESIGN TOKENS - MODERN CSS VARIABLES
   ========================================================================== */

:root {
  /* Couleurs principales */
  --color-primary: var(--color-primary);
  --color-primary-hover: var(--color-primary-hover);
  --color-primary-light: #93C5FD;
  --color-secondary: #64748B;
  --color-success: var(--color-success);
  --color-warning: var(--color-warning);
  --color-danger: var(--color-danger);
  --color-info: var(--color-info);
  
  /* Nuances de gris */
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-400: #9CA3AF;
  --color-gray-500: #6B7280;
  --color-gray-600: #4B5563;
  --color-gray-700: #374151;
  --color-gray-800: #1F2937;
  --color-gray-900: #111827;
  
  /* Espacements */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;
  
  /* Ombres */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Typographie */
  --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
}

/*-----------------------------------------------------------------------------------

    Template Name: Furniture - Minimalist eCommerce HTML5 Template
    Description: This is html5 template
    Author: HasTech
    Version: 1.0

-----------------------------------------------------------------------------------

    [Table of contents]

    1. Template default css (assets/css/bundle.css)
    2. Home furniture
    3. Home electronics
    4. Home jewellery
    5. Home fashion
    6. Home toy
    7. Home food & drink
    8. Breadcrumb style
    9. About us
    10. Shop grid view
    11. Shop sidebar
    12. Shop list
    13. breadcrumb style 2
    14. product details
    15. Product details 2
    16. product details 4
    17. Product details 7
    18. Product details 8
    19. Product details 9
    20. Shop filters
    21. Shopping cart
    22. Checkout page
    23. Login page
    24. Blog sidebar
    25. Blog details
    26. Contact page
    27. ScrollUp

-----------------------------------------------------------------------------------*/




/*----------- 2. Home furniture --------*/


/* header area */
.header-area-padding {
  padding: clamp(15px, 3vw, 35px) 0;
}
.header-search-cart {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.header-cart > button {
  color: #4b4a48;
  font-size: clamp(18px, 4vw, 20px);
}
.header-sidebar button {
  font-size: clamp(24px, 5vw, 27px);
  color: #4b4a48;
}
.header-search > button {
  color: var(--black);
  font-size: clamp(20px, 4vw, 22px);
}
.common-style > button {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  line-height: 1;
  padding: 0;
  margin-left: 25px;
  cursor: pointer;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
.common-style > button:hover {
  color: var(--color-primary);
}
.header-cart {
  margin-top: 3px;
}
.header-search {
  margin-top: 3px;
}
/* header cart */
.sidebar-cart {
  background: #ffffff;
  color: #353535;
  height: 100vh;
  position: fixed;
  right: -480px;
  top: 0;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  width: 480px;
  z-index: 9999;
}
.sidebar-cart.inside {
	right: 0;
}
.wrap-sidebar {
  height: 100%;
  margin: 0;
  overflow-y: auto;
  padding: 45px 46px 0;
  width: 100%;
}
.sidebar-cart-all {
  padding-bottom: 39px;
}
.cur-lang-acc-active {
  background: #ffffff;
  color: #353535;
  height: 100vh;
  position: fixed;
  right: -300px;
  top: 0;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  width: 300px;
    z-index: 9999;
}
.cur-lang-acc-active.inside {
  right: 0;
}
.sidebar-cart-icon, .sidebar-nav-icon {
  display: block;
  margin-bottom: 14px;
  overflow: hidden;
}
.sidebar-cart-icon button , .sidebar-nav-icon button {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  color: #4b4b4b;
  float: right;
  font-size: clamp(40px, 8vw, 50px);
  padding: 0;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  cursor: pointer;
}
.sidebar-cart-icon button:hover , .sidebar-search-icon button:hover , .sidebar-search-input form .form-search button:hover , .sidebar-nav-icon button:hover {
  color: var(--color-primary);
}
.cart-content > h3 {
  color: #4b4b4b;
  font-size: clamp(20px, 5vw, 24px);
  font-weight: 600;
}
.cart-content ul li.single-product-cart {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 27px;
}
.cart-content ul li.single-product-cart:last-child {
  margin-bottom: 0px;
}
.cart-title > h3 {
  color: #5d5d5d;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
.cart-title > span {
  color: var(--color-primary);
  font-weight: 600;
}
.cart-title {
  margin: 0px 0 18px 30px;
}
.cart-delete {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 100;
  -webkit-flex-grow: 100;
      -ms-flex-positive: 100;
          flex-grow: 100;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.cart-delete a i {
  color: #4b4b4b;
  font-size: clamp(20px, 5vw, 24px);
  line-height: 1;
}
.cart-delete a i:hover {
  color: var(--color-primary);
}
.cart-content ul {
  margin-top: 47px;
}
.cart-total {
  border-top: 1px solid #e3e3e3;
  margin-top: 29px;
  padding-top: 17px;
  text-align: right;
  width: 100%;
}
.cart-total h4 {
  color: #5d5d5d;
  font-size: clamp(16px, 4vw, 18px);
  font-weight: 600;
}
.cart-total h4 span {
  color: var(--color-primary);
  font-size: clamp(16px, 4vw, 18px);
  font-weight: 600;
}
.cart-checkout-btn > a.no-mrg {
  margin-right: 0px;
}
.cart-checkout-btn {
  margin-top: 13px;
}
.wrapper .body-overlay {
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  cursor: crosshair;
  height: 100%;
  left: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: fixed;
  top: 0;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  visibility: hidden;
  width: 100%;
  z-index: 999;
}
.wrapper.overlay-active .body-overlay {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}
.btn-hover {
  position: relative;
}
.btn-hover:before {
  background: var(--color-primary) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 50% 0;
      -ms-transform-origin: 0 50% 0;
          transform-origin: 0 50% 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  z-index: -1;
}
.btn-hover:hover:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.cart-btn-style {
  background: #e3e3e3 none repeat scroll 0 0;
  color: #5d5d5d;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.8px;
  line-height: 1;
  margin-right: 30px;
  padding: clamp(12px, 2vw, 18px) clamp(24px, 4vw, 48px);
  text-transform: uppercase;
  -webkit-transform: perspective(1px) translateZ(0px);
          transform: perspective(1px) translateZ(0px);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: color;
  transition-property: color;
  vertical-align: middle;
}
.btn-hover:hover {
  color: white;
}





/* search */
.main-search-active {
  background: rgba(0, 0, 0, 0.92) none repeat scroll 0 0;
  color: #353535;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100vh;
  padding: 32px 46px 39px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transform: translateX(110%);
      -ms-transform: translateX(110%);
          transform: translateX(110%);
  -webkit-transition: -webkit-transform 0.5s ease-in-out 0s;
  transition: -webkit-transform 0.5s ease-in-out 0s;
  transition: transform 0.5s ease-in-out 0s;
  transition: transform 0.5s ease-in-out 0s, -webkit-transform 0.5s ease-in-out 0s;
  width: 100%;
  z-index: 9999;
}
.main-search-active.inside {
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
  z-index: 9999;
}
.sidebar-search-input {
  padding: 300px 0 0;
}
.sidebar-search-input form {
  position: relative;
}
.sidebar-search-input form .form-search {
  position: relative;
}
.sidebar-search-input form .form-search input {
  background-color: transparent;
  border-color: #dadada;
  border-style: solid;
  border-width: 0 0 1px;
  color: #fff;
  display: block;
  font-size: clamp(16px, 4vw, 18px);
  height: 62px;
  line-height: 62px;
  padding: 0;
  width: 800px;
}
.sidebar-search-input form .form-search button {
  background-color: transparent;
  border: medium none;
  color: #dadada;
  font-size: clamp(24px, 5vw, 30px);
  padding: 0;
  position: absolute;
  right: 0;
  top: 6px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.sidebar-search-icon {
  display: block;
  float: right;
  overflow: hidden;
  position: absolute;
  right: 375px;
}
.sidebar-search-icon button {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  cursor: pointer;
  font-size: clamp(40px, 8vw, 50px);
  line-height: 1;
  padding: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.sidebar-search-input form .form-search input::-moz-placeholder {
  color: #fff;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.sidebar-search-input form .form-search input::-webkit-placeholder {
  color: #fff;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}




/* cur-lang-acc */
.single-currency-language-account {
  margin-bottom: 23px;
}
.cur-lang-acc-title > h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 13px;
  text-transform: uppercase;
}
.cur-lang-acc-title > h4 span {
  color: var(--color-primary);
}
.cur-lang-acc-dropdown li {
  margin-bottom: 9px;
}
.cur-lang-acc-dropdown li a img {
  margin-right: 5px;
}
.cur-lang-acc-dropdown li:last-child {
  margin-bottom: 0px;
}
.cur-lang-acc-dropdown ul li a {
  text-transform: capitalize;
}

/* furniture menu style */

.clickable-mainmenu-btn {
  left: 0px;
  position: fixed;
  top: 450px;
  z-index: 999;
}
.clickable-mainmenu-btn a {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  color: #4b4a48;
  display: inline-block;
  font-size: clamp(30px, 6vw, 40px);
  line-height: 1;
  padding: 16px 32px;
}
.clickable-mainmenu-btn a:hover {
  color: #fff;
  background-color: var(--color-primary);
}
.clickable-mainmenu {
  background: rgba(0, 0, 0, 0.92) none repeat scroll 0 0;
  color: #353535;
  min-height: 100vh;
  padding: 295px 46px 39px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transform: translateX(110%);
      -ms-transform: translateX(110%);
          transform: translateX(110%);
  -webkit-transition: -webkit-transform 0.5s ease-in-out 0s;
  transition: -webkit-transform 0.5s ease-in-out 0s;
  transition: transform 0.5s ease-in-out 0s;
  transition: transform 0.5s ease-in-out 0s, -webkit-transform 0.5s ease-in-out 0s;
  width: 100%;
  z-index: 9999;
}
.clickable-mainmenu.inside {
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
  z-index: 9999;
}
.slinky-menu.slinky-theme-default {
  display: inline-block;
  width: 290px;
}
.slinky-theme-default {
  background: transparent none repeat scroll 0 0;
}
#menu li a {
  color: #ffffff;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: bold;
  letter-spacing: 1px;
  padding: 0 0 15px;
  text-transform: capitalize;
}
#menu li a:hover {
  color: var(--color-primary);
}
.slinky-theme-default a:hover:not(.back) {
  background: transparent none repeat scroll 0 0;
}
.clickable-mainmenu-icon button {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  cursor: pointer;
  font-size: clamp(40px, 8vw, 50px);
  padding: 0;
  position: absolute;
  right: 375px;
  top: 25px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.clickable-mainmenu-icon button:hover {
  color: var(--color-primary);
}
.slinky-theme-default .back:before {
  padding: 0;
}
/* slider */
.single-slider {
  position: relative;
}

/* Modern Slider Styles */
.slider-modern {
  position: relative;
  height: 70vh;
  min-height: 667px;
  overflow: hidden;
}

.slider-overlay {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(29, 78, 216, 0.9) 100%);
  position: absolute;
  inset: 0;
  z-index: 1;
}

.single-slider-modern {
  position: relative;
  overflow: hidden;
}

.slider-content-modern {
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slider-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out;
}

.slider-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.slider-price-old {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #e2e8f0;
  text-decoration: line-through;
  opacity: 0.8;
}

.slider-price-new {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slider-price-current {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slider-description {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  opacity: 0.9;
  max-width: 90%;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.slider-category .badge {
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white !important;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.slider-cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  border: none;
  color: white;
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s ease-out 0.8s both;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.5);
  border-radius: 12px;
  padding: 1rem 2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.slider-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.slider-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.7);
  background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
}

.slider-cta:hover::before {
  left: 100%;
}

.slider-image-wrapper {
  position: relative;
  display: inline-block;
}

.slider-promo-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(135deg, var(--color-warning), #D97706);
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  z-index: 20;
  animation: pulse 2s infinite;
  border: 3px solid white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-promo-badge:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

.min-vh-70 {
  min-height: 70vh;
}

.z-index-2 {
  z-index: 2;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slider-modern {
    height: 60vh;
    min-height: 400px;
  }
  
  .slider-image-wrapper img {
    max-height: 250px !important;
  }
  
  .slider-promo-badge {
    width: 50px;
    height: 50px;
    font-size: 1rem;
    top: -10px;
    right: -10px;
  }
}

@media (max-width: 576px) {
  .slider-modern {
    height: 50vh;
    min-height: 350px;
  }
  
  .slider-overlay {
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-600) 100%);
    opacity: 0.92;
  }
}

.slider-content-style-1 > h3 {
  color: var(--black);
  font-family: pacifico;
  font-size: clamp(1.5rem, 4vw, 2rem);
}
.slider-content-style-1 > h3 span {
  color: var(--color-primary);
}
.slider-content-style-1 h2 {
  color: var(--black);
  font-size: clamp(2rem, 6vw, 3.375rem);
  font-weight: bold;
  letter-spacing: 2.5px;
  margin: 6px 0 19px;
}
.slider-content-style-1 p {
  color: var(--black);
  letter-spacing: 0.5px;
  width: 47%;
}
.slider-btn-style {
  border: 2px solid var(--black);
  color: var(--black);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-top: 19px;
  padding: clamp(15px, 3vw, 23px) clamp(25px, 5vw, 49px);
  text-transform: uppercase;
  -webkit-transform: perspective(1px) translateZ(0px);
          transform: perspective(1px) translateZ(0px);
}
.slider-btn-style:hover {
  border: 2px solid var(--color-primary);
}
.slider-text-right {
  text-align: right;
}
.slider-content-style-1.slider-text-right p {
  float: right;
  text-align: right;
  width: 41%;
}
.slide-right-pera {
  display: block;
  overflow: hidden;
}
/* Default Slider Animations */
.owl-item .slider-content * {
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-item.active .slider-content * {
}
.owl-item.active .slider-animated-1 h3 {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.owl-item.active .slider-animated-1 h2 {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.owl-item.active .slider-animated-1 p {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.owl-item.active .slider-animated-1 a {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
  -webkit-animation-name: bounceInLeft;
  animation-name: fadeInLeft;
}

/* animation 2 */
.owl-item.active .slider-animated-2 h3 {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.owl-item.active .slider-animated-2 h2 {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.owl-item.active .slider-animated-2 p {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.owl-item.active .slider-animated-2 a {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* banner */
.single-banner > img {
  width: 100%;
}
.single-banner a img {
  width: 100%;
}
.single-banner {
  position: relative;
}
.banner-content-position1 {
  left: 0;
  padding: 30px 34px;
  position: absolute;
  text-align: center;
  top: 0;
}
.banner-content > h3 {
  color: var(--black);
  font-size: clamp(18px, 4vw, 24px);
  font-weight: bold;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.banner-content > h3 span , .banner-content > p span {
  color: var(--color-primary);
}
.banner-content > p {
  color: var(--black);
  margin: 0;
}
.banner-content-position2 {
  padding: clamp(30px, 5vw, 78px) clamp(30px, 5vw, 75px) clamp(20px, 4vw, 50px);
  position: absolute;
  right: 0;
  top: 0;
}
.banner-content-position2 > span {
  color: var(--black);
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 2px;
}

.banner-content.banner-content-position2 > h3 {
  position: relative;
  padding-bottom: 18px;
}
.banner-content.banner-content-position2 > h3:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  background-color: #a8a5a5;
  bottom: 0;
  left: 0;
}
.banner-content-position3 {
  bottom: 0;
  left: 0;
  padding: 30px 34px 27px;
  position: absolute;
  text-align: center;
}
/* section title */

.section-title > h2 {
  color: #3e3e3e;
  font-size: clamp(24px, 5vw, 30px);
  font-weight: bold;
  margin-bottom: 10px;
}
.section-title p {
  color: #3e3e3e;
  font-size: 14px;
  margin: 0;
}
/* single product */
.product-img img {
  width: 100%;
}
.single-product , .product-img {
  position: relative;
}
.product-img > span {
  /* background-color: #626262; */
  color: #fff;
  display: inline-block;
  font-weight: bold;
  bottom: 10px;
  letter-spacing: 1px;
  line-height: 1;
  padding: 4px 11px 5px;
  position: absolute;
  text-transform: uppercase;
  right: 10px;
}

.product-action {
  display: inline-block;
  left: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.product-action > a {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: #474747;
  display: inline-block;
  font-size: clamp(22px, 5vw, 27px);
  height: 45px;
  margin: 0 3px;
  text-align: center;
  width: 45px;
}
.product-action > a:hover {
  color: #fff;
  background-color: var(--color-primary);
}

.product-action > a i {
  font-size: clamp(22px, 5vw, 27px);
  line-height: 45px;
}

.product-title-price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-title > h4 {
  color: #5d5d5d;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.product-title > h4 a {
  color: #5d5d5d;
}
.product-title > h4 a:hover , .product-categori > a:hover {
  color: var(--color-primary);
}
.product-price > span {
  color: var(--color-primary);
  font-weight: 600;
}
.product-content {
  line-height: 1;
  padding-top: 17px;
}

.product-cart-categori {
  overflow: hidden;
  padding-bottom: 5px;
  position: relative;
}
.product-cart > span {
  color: #474747;
  display: inline-block;
  line-height: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  text-transform: capitalize;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.product-categori {
  left: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  top: 0;
  -webkit-transform: translateY(15px);
      -ms-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.product-categori > a {
  color: #474747;
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
}
.product-categori > a i {
  color: #4b4a48;
  font-size: 16px;
  margin-right: 4px;
}
.single-product:hover .product-cart > span {
  -webkit-transform: translateY(-15px);
      -ms-transform: translateY(-15px);
          transform: translateY(-15px);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.single-product:hover .product-categori {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.single-product:hover .product-action {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.product-action > a.animate-left {
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.product-action > a.animate-right {
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.single-product:hover .product-action > a.animate-left {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}
.single-product:hover .product-action > a.animate-right {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}
.product-slider-active {
  width: 100%;
}
.product-slider-active div[class^="col-"] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}
.product-tab-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-tab-list a {
  line-height: 1;
  margin: 0 18px;
}
.product-tab-list a h4 {
  color: #454545;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}
.product-tab-list a.active h4 {
  color: var(--color-primary);
}
.product-menu-mrg {
  padding-top: 3px;
}
.tab-content.jump > .tab-pane {
  display: block;
  height: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  overflow: hidden;
}

.tab-content.jump > .tab-pane.active {
  display: block;
  height: auto;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  overflow: visible;
}
/* limited-content */
.shop-limited-content {
  position: relative;
  z-index: 9;
}
.shop-limited-content > h2 {
  color: #f4f4f4;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: clamp(36px, 6vw, 50px);
  margin-bottom: 9px;
}
.limited-btn {
  background-color: #f4f4f4;
  color: #353535;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-top: 19px;
  padding: clamp(12px, 2vw, 17px) clamp(20px, 4vw, 41px);
  text-transform: uppercase;
  -webkit-transform: perspective(1px) translateZ(0px);
          transform: perspective(1px) translateZ(0px);
}

/* blog area */

.blog-img {
  margin-bottom: 25px;
}
.blog-img img {
  width: 100%;
}
.blog-info > h3 {
  color: #262626;
  font-size: clamp(20px, 4vw, 24px);
}
.blog-meta {
  margin: 10px 0 10px;
}
.blog-meta ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.blog-meta ul li {
  color: #858585;
  font-size: 13px;
  position: relative;
}
.blog-meta ul li a {
  color: #858585;
}

.blog-meta ul li a:hover {
  color: var(--color-primary);
}

.blog-meta ul li + li {
  margin-left: 10px;
  padding-left: 13px;
}
.blog-meta ul li + li:before {
  background: #c2c2c2 none repeat scroll 0 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3px;
}
.blog-info > p {
  color: #333;
  font-size: 14px;
  line-height: 30px;
  margin: 0;
}

/* footer area */

.footer-widget-l-content > h4 {
  color: #585858;
  font-size: 15px;
  letter-spacing: 0.05px;
  margin-bottom: 17px;
}
.footer-widget-l-content > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.footer-widget-l-content > ul li {
  margin-right: 15px;
}
.footer-widget-l-content a {
  border: 1px solid #3f3f3f;
  border-radius: 50px;
  color: #585858;
  display: inline-block;
  height: 30px;
  text-align: center;
  width: 30px;
}
.footer-widget-l-content a:hover {
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: #f5f5f5;
}
.footer-widget-l-content a i {
  line-height: 29px;
}
.footer-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer-nav ul li {
  margin: 0 19px;
}
.footer-nav ul li a {
  color: #474747;
  font-weight: 600;
  text-transform: uppercase;
}
.footer-nav ul li a:hover {
  color: var(--color-primary);
}
.footer-widget-m-content > p {
  color: #585858;
  margin: 0;
}
.footer-logo {
  margin-bottom: 25px;
}
.footer-nav {
  margin-bottom: 13px;
  padding-bottom: 15px;
  position: relative;
}
.footer-nav:before {
  background: #6d6d6d none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 160px;
}
.footer-widget-r-content li span {
  font-weight: 600;
  text-transform: uppercase;
}
.footer-widget-r-content li {
  color: #585858;
  margin-bottom: 8px;
}
.footer-widget-r-content li:last-child {
  margin-bottom: 0px;
}
.footer-widget-l-content {
  margin-top: 30px;
}
.footer-widget-r-content {
  margin-top: 25px;
}

/* modal style */

.modal-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: clamp(20px, 4vw, 50px);
}
.modal-dialog {
  margin: 150px auto;
  min-width: auto;
  width: 95%;
  max-width: 878px;
}
.qwick-view-left {
  min-width: 320px;
}
.quick-view-tab-content .tab-pane > img {
  width: 100%;
}
.quick-view-list {
  margin-top: 10px;
}
.quick-view-list a {
  margin-right: 10px;
}
.quick-view-list a:last-child {
  margin-right: 0px;
}
.qwick-view-left {
  margin-right: 30px;
}
.modal-content {
  border-radius: 0rem;
}
.qwick-view-content > h3 {
  color: #707070;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.price span {
  color: #707070;
  font-size: 15px;
  font-weight: 600;
}
.price span.new {
  color: var(--color-primary);
  margin-right: 12px;
}
.price span.old {
  color: #707070;
  text-decoration: line-through;
}
.quick-view-rating i {
  color: var(--black);
  font-size: 18px;
  margin-right: 5px;
}
.quick-view-rating i.red-star {
  color: var(--color-primary);
}
.rating-number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 30px;
}
.quick-view-number > span {
  color: #808080;
  display: block;
  font-size: 14px;
  margin: 3px 0 0 10px;
}
.qwick-view-content > p {
  color: #545454;
  margin-bottom: 25px;
}

.select-option-part label {
  color: #707070;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}

.select-option-part {
  margin-bottom: 35px;
}

.select-option-part select {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-expand: none;
  border: 1px solid #dcdcdc;
  box-shadow: none;
  color: #828282;
  font-size: 14px;
  height: 43px;
  padding-left: 20px;
  position: relative;
  width: 100%;
  background: rgba(0, 0, 0, 0) url("../img/icon-img/1.png") no-repeat scroll right 20px center;
}
select::-ms-expand {
    display: none;
}

.qtybutton {
  color: #727272;
  cursor: pointer;
  float: left;
  font-size: 16px;
  font-weight: 600;
  height: 20px;
  line-height: 20px;
  position: relative;
  text-align: center;
  width: 20px;
}
input.cart-plus-minus-box {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  float: left;
  font-size: 16px;
  height: 25px;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 25px;
}
.cart-plus-minus *::-moz-selection {
  background: transparent none repeat scroll 0 0;
  color: #333;
  text-shadow: none;
}
.cart-plus-minus {
  border: 1px solid #dcdcdc;
  overflow: hidden;
  padding: 10px 0 10px 5px;
  width: 80px;
}
.quickview-plus-minus {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 5px;
}
.quickview-btn-cart > a {
  background-color: var(--color-primary);
    color: #fff;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.08px;
    line-height: 1;
    padding: 10px 16px;
    position: relative;
    text-transform: uppercase;
    z-index: 5;
}
.quickview-btn-wishlist > a {
  border: 1px solid #dcdcdc;
  color: #727272;
  display: inline-block;
  font-size: clamp(18px, 4vw, 22px);
  padding: 7px 18px 6px;
  z-index: 9;
}
.quickview-btn-wishlist > a:hover {
  border: 1px solid transparent;
}
.quickview-btn-cart {
  margin: 0 30px;
}
.qtybutton.inc {
  margin-top: 2px;
}
.price {
  margin: 9px 0 8px;
}
#exampleModal .close {
  color: #fff;
  float: right;
  font-size: clamp(40px, 8vw, 50px);
  font-weight: 700;
  line-height: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  position: absolute;
  right: 370px;
  text-shadow: 0 1px 0 #fff;
  top: 32px;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  cursor: pointer;
}
#exampleModal .close:hover {
  color: var(--color-primary);
}
.modal-backdrop.show {
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}
.modal-content .close:hover {
  color: var(--color-primary);
}

/*------- 3. Home electronics ------*/

.header-area-2 .logo {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.header-search-cart {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
              -ms-grid-row-align: center;
          align-items: center;
  height: 100%;
  gap: 10px;
}
.menu-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
/* main-menu hm-2*/
.main-menu ul li {
  margin: 0 19px;
  position: relative;
  display: inline-block;
}
.main-menu ul li a {
  color: #474747;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 101px;
}
.main-menu.sidebar-main-menu ul li a {
  text-transform: capitalize;
}
.main-menu nav > ul > li:hover > a {
  color: var(--color-primary);
}
.main-menu nav > ul > li > ul {
  background: #fff none repeat scroll 0 0;
  border-top: 1px solid #dcdcdc;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
  display: block;
  left: -23px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  padding: 30px 20px 34px;
  position: absolute;
  text-align: left;
  top: 120%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 250px;
  z-index: 999;
}
.main-menu nav > ul > li:hover > ul {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  top: 100%;
  visibility: visible;
}
.main-menu nav > ul > li > ul > li {
  display: block;
  margin: 0 0 13px;
  padding: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
}
.main-menu nav > ul > li > ul > li:last-child {
  margin: 0 0 0px;
}
.main-menu nav > ul > li > ul > li > a {
  color: #333;
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: inherit;
  padding: 0;
  text-transform: capitalize;
}
.main-menu nav > ul > li > ul > li > a:hover {
  color: var(--color-primary);
}
.main-menu nav > ul > li > ul.dropdown > li:hover {
  padding-left: 20px;
}
.main-menu nav > ul > li > ul.dropdown > li:before , .main-menu nav > ul > li > .mega-dropdown > ul > li:before {
  background: var(--color-primary) none repeat scroll 0 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: 10px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  width: 0px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.main-menu nav > ul > li > ul.dropdown > li:hover:before , .main-menu nav > ul > li > .mega-dropdown > ul > li:hover:before {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  width: 10px;
}
/* mega menu hm-2 */
.main-menu nav > ul > li > .mega-dropdown {
  background: #fff none repeat scroll 0 0;
  border-top: 1px solid #dcdcdc;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
  display: block;
  left: -268px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  padding: 14px 20px 0px 32px;
  position: absolute;
  text-align: left;
  top: 120%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 690px;
  z-index: 999;
}
.main-menu nav > ul > li > .mega-dropdown > ul {
  display: block;
  float: left;
}
.main-menu nav > ul > li > .mega-dropdown > ul.single-mega-width {
  margin-top: 20px;
  width: 30%;
}
.main-menu nav > ul > li > .mega-dropdown > ul.single-mega-width2 {
  display: block;
  float: left;
  padding-right: 8px;
  width: 40%;
  margin-top: 18px;
}
.main-menu nav > ul > li > .mega-dropdown ul {
  display: block;
}
.main-menu nav > ul > li:hover > .mega-dropdown {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  top: 100%;
  visibility: visible;
}
.main-menu nav > ul > li > .mega-dropdown > ul > li {
  display: block;
  margin: 0 0 10px;
  padding: 0;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.main-menu nav > ul > li > .mega-dropdown > ul > li:last-child {
  margin: 0 0 0px;
}
.main-menu nav > ul > li > .mega-dropdown > ul > li.menu-title {
  color: #4e4e4e;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: bold;
  margin-bottom: 17px;
  text-transform: uppercase;
}
.main-menu nav > ul > li > .mega-dropdown > ul > li.menu-pading-none:before {
  content: inherit;
}

/* ==========================================================================
   RECHERCHE INTÉGRÉE DANS LE MENU
   ========================================================================== */

.main-menu-with-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  width: 100%;
}

.integrated-search-container {
  flex-shrink: 0;
  margin-left: var(--space-lg);
}

.search-form-integrated {
  position: relative;
  margin: 0;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--color-gray-50);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-full);
  padding: var(--space-xs) var(--space-sm);
  transition: all 0.3s ease;
  min-width: 280px;
}

.search-input-wrapper:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
  background: var(--color-gray-100);
}

.search-input-integrated {
  border: none !important;
  background: transparent !important;
  padding: var(--space-xs) var(--space-md) !important;
  height: 36px !important;
  font-size: 14px !important;
  color: var(--color-gray-800) !important;
  flex: 1;
  margin: 0 !important;
  box-shadow: none !important;
}

.search-input-integrated:focus {
  outline: none;
  box-shadow: none !important;
}

.search-input-integrated::placeholder {
  color: var(--color-gray-500);
  font-weight: 400;
}

.search-submit-btn {
  background: var(--color-primary) !important;
  border: none;
  border-radius: var(--radius-full);
  color: white !important;
  padding: var(--space-xs) var(--space-sm);
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 !important;
  flex-shrink: 0;
}

.search-submit-btn:hover {
  background: var(--color-primary-hover) !important;
  transform: scale(1.05);
}

.search-submit-btn:active {
  transform: scale(0.95);
}

/* Styles responsives pour la recherche intégrée */
@media (max-width: 1199px) {
  .main-menu-with-search {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .integrated-search-container {
    margin-left: 0;
    width: 100%;
  }
  
  .search-input-wrapper {
    min-width: auto;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .main-menu-with-search {
    flex-direction: row;
  }
  
  .integrated-search-container {
    display: none;
  }
}

/* Animation pour le focus */
@keyframes searchPulse {
  0% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(5, 150, 105, 0); }
  100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

.search-input-wrapper:focus-within {
  animation: searchPulse 2s infinite;
}
.main-menu nav > ul > li > .mega-dropdown > ul > li.menu-pading-none:hover {
  padding-left: inherit;
}
.main-menu.sidebar-main-menu nav > ul > li > .mega-dropdown > ul > li.menu-pading-none:hover {
  padding-left: 0;
}
.main-menu nav > ul > li > .mega-dropdown > ul > li:hover {
  padding-left: 20px;
}
.main-menu nav > ul > li > .mega-dropdown > ul > li > a {
  color: #333;
  display: block;
  font-size: clamp(14px, 1.5vw, 15px);
  font-weight: 400;
  line-height: inherit;
  padding: 0;
  text-transform: capitalize;
}
.main-menu nav > ul > li > .mega-dropdown > ul > li > a:hover {
  color: var(--color-primary);
}
.mega-item-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.main-menu nav > ul > li > .mega-dropdown > ul > li.menu-mrg-nn {
  margin: 0 0 0px;
}
.mobile-menu .mean-nav ul.menu-overflow {
  height: 220px;
  margin-top: 10px;
  overflow-y: auto;
}

/* intelligent-header */

.headroom {
    will-change: transform;
    -webkit-transition: -webkit-transform 200ms linear;
    transition: -webkit-transform 200ms linear;
    transition: transform 200ms linear;
    transition: transform 200ms linear, -webkit-transform 200ms linear;
}
.headroom--pinned {
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
}
.headroom--unpinned {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
}
.intelligent-header {
    background-color: #fff;
    left: 0;
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 999999;
}
.intelligent-header-pd {
    padding: 0 155px;
}
.intelligent-header {
  margin: 0;
}

.intelligent-header.headroom--pinned {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.intelligent-header.headroom--not-top {
  box-shadow: 0 1px 3px rgba(50, 50, 50, 0.4);
}
/* Header space removed - margin added directly to header */




/* slider home-2 */


.slider-position-images {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  right: 162px;
  top: 50%;
  -webkit-transform: translateX(40%) translateY(-50%);
      -ms-transform: translateX(40%) translateY(-50%);
          transform: translateX(40%) translateY(-50%);
  -webkit-transition: all 1s ease-in-out 2s;
  transition: all 1s ease-in-out 2s;
  width: 693px;
}
.slider-active .owl-item.active .slider-position-images {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transform: translateX(0%) translateY(-50%);
      -ms-transform: translateX(0%) translateY(-50%);
          transform: translateX(0%) translateY(-50%);
}
.slider-content-style-2 h2 {
  color: var(--black);
  font-size: clamp(24px, 4vw, 36px);
  line-height: 48px;
}
.slider-content-style-2 a , .slider-content-style-3 a , .slider-content-style-6 a {
  border-bottom: 1px solid var(--color-primary);
  color: var(--color-primary);
  display: inline-block;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  margin-top: 16px;
  padding-bottom: 5px;
  text-transform: capitalize;
}
.slider-content-style-2 a:hover {
  color: var(--black);
}

/* home-2 banner */


.single-banner-2 > img {
  width: 100%;
}
.single-banner-2 {
  position: relative;
}
.banner-content-2 {
  padding: 20px 55px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.banner-content-2 > span {
  color: #939292;
  font-size: clamp(14px, 1.5vw, 16px);
}
.banner-content-2 > h4 {
  color: #2d2d2d;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
  margin: 3px 0 21px;
}
.banner-content-2 > a {
  position: relative;
  color: var(--color-primary);
  display: inline-block;
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 16px);
}
.banner-content-2 > a:before {
  background: var(--color-primary) none repeat scroll 0 0;
  bottom: -5px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  width: 0;
}
.banner-content-2 > a:hover:before {
  background: #e51515 none repeat scroll 0 0;
  width: 100%;
}

/* testimonials hm-2 */

.single-testimonial > p {
  color: #ffffff;
  font-weight: 600;
  line-height: 30px;
  margin: 21px auto 30px;
  width: 66%;
}

.single-testimonial > h4 {
  color: #f7f6f6;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.single-testimonial > span {
  color: #f7f6f6;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.owl-carousel .owl-item .single-testimonial img {
  display: block;
  margin: 0 auto;
  width: auto;
}

/* brand logo hm-2*/

.brand-logo-active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.single-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.single-logo > img {
  width: auto;
}

.brand-logo-active.owl-carousel .owl-item img {
  width: auto;
}
.scroll-top {
  color: #636363;
  display: inline-block;
  font-weight: 600;
}
.scroll-top:hover {
  color: var(--color-primary);
}
.scroll-top > span {
  display: block;
}
.scroll-top > span i {
  display: inline-block;
  font-size: 18px;
}

/*----------- 4. Home jewellery ----------*/

/* header srerch jewellery */
.menu-search-cart {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.menu-search-cart .header-search-cart {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
              -ms-grid-row-align: center;
          align-items: center;
  height: 100%;
  margin-top: 36px;
}
.menu-search-cart .header-cart {
  margin-top: 0;
}
.menu-search-cart .main-menu {
  margin-right: 17px;
}

/* slider jewellery */

.slider-content-style-3 h3 {
  color: #373737;
  font-family: pacifico;
  font-size: clamp(20px, 4vw, 24px);
  letter-spacing: 1px;
}
.slider-content-style-3 h2 {
  color: #2e2e2e;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: 2px;
  margin: 25px 0 9px;
}

/* banner jewellery */

.single-banner-3 {
  position: relative;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  overflow: hidden;
}
.single-banner-3 a img {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
.single-banner-3:hover a img {
  -webkit-transform: scale(1.3) rotate(-10deg);
      -ms-transform: scale(1.3) rotate(-10deg);
          transform: scale(1.3) rotate(-10deg);
}
.single-banner-3 img {
  width: 100%;
}
.banner-content3-position1 {
  left: 0;
  padding: 47px 60px;
  position: absolute;
  top: 0;
}
.common-banner-style-3 > h2 {
  color: #585858;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  line-height: 50px;
  margin: 0;
}
.common-banner-style-3 > h2 span {
  color: var(--color-primary);
}
.banner-content3-position3 {
  padding: 47px 60px;
  position: absolute;
  right: 0;
  top: 0;
}

/* footer map */

.footer-map {
  position: relative;
}
.footer-map-icon {
  position: absolute;
  top: 50%;
}
.footer-map-icon {
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer-title {
  color: #454545;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-widget-about > p {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  color: #262626;
}
.footer-widget-about {
  padding-right: 70px;
}
.footer-social li {
  display: inline-block;
  margin: 0 15px;
}
.footer-social li a {
  color: #585858;
  font-size: 18px;
}
.footer-paymethod li {
  display: inline-block;
  margin: 0 6px;
}
.footer-paymethod {
  margin: 25px 0 15px;
}
.footer-map > img {
  width: 100%;
}

/*------- 5. Home fashion --------*/

/* banner fashion */
.single-banner4 img {
  width: 100%;
}
.single-banner4 {
  position: relative;
}
.banner-content-4 {
  padding: 20px 62px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.banner-content-4 > h3 {
  color: #656565;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: bold;
  line-height: 36px;
  margin-bottom: 17px;
}
.banner-content-4 > a {
  color: #787777;
  font-weight: 600;
}
.banner-content-4 > a:hover {
  color: var(--color-primary);
}
.new-collection-slider div[class^="col-"] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

/* coundown fashion */

.coundown-auto > h2 {
  font-size: clamp(24px, 4vw, 36px);
  color: #3f3f3f;
  font-weight: bold;
}
.coundown-auto > p {
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 26px;
  margin: 16px 0 21px;
}
.timer span {
  color: #ffffff;
  display: inline-block;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: bold;
  line-height: 56px;
  margin-left: 0px;
  text-align: center;
}
.timer span p {
  color: #000;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 600;
}
/*  */
.timer {
    margin-bottom: 20px;
    font-family: sans-serif;
    color: #fff;
    display: inline-block;
    font-weight: 100;
    text-align: center;
    font-size: clamp(20px, 3vw, 30px);
}
.timer div {
  padding: 5px;
  border-radius: 3px;
  background: #28a745;
  display: inline-block;
  font-family: Oswald;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  width: 80px;
  margin-right: 5px;
  margin-left: 5px;
}
.timer .smalltext {
  color: #ffffff;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 500;
  display: block;
  padding: 0;
  width: auto;
}
.timer #time-up {
  margin: 8px 0 0;
  text-align: left;
  font-size: 14px;
  font-style: normal;
  color: var(--black);
  font-weight: 500;
  letter-spacing: 1px;
}
/*  */
.coundown-auto > a {
  color: #535353;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 1px solid #535353;
  padding-bottom: 5px;
}
.coundown-auto > a:hover {
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}
.timer {
  margin-bottom: 24px;
}

/* shop-services hm-fashion */

.single-shop-services {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.single-shop-content h5 {
  color: #4f4e4e;
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: bold;
  margin-bottom: 4px;
}
.single-shop-content > p {
  color: #4f4e4e;
  font-weight: 600;
  margin: 0;
}
.single-shop-content {
  margin-left: 20px;
  margin-top: 4px;
}
.single-shop-services-all {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}


/*-------- 6. Home toy --------*/

/* sidebar-style home-toy */
.sidebar-style {
  background: #f9f9f9 none repeat scroll 0 0;
  height: 100%;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 445px;
  z-index: 7;
}
.sidebar-logo {
  padding-left: 148px;
}
.sidebar-wrapper {
  margin-left: 445px;
}
.sidebar-main-menu.main-menu ul li {
  display: block;
  margin: 0;
  padding: 0 0 20px;
}
.sidebar-main-menu.main-menu nav > ul > li > ul , .sidebar-main-menu.main-menu nav > ul > li > .mega-dropdown {
  left: 110%;
  top: 0;
}
.sidebar-main-menu.main-menu nav > ul > li:hover > ul , .sidebar-main-menu.main-menu nav > ul > li:hover > .mega-dropdown {
  left: 100%;
  top: 0;
}
.sidebar-main-menu.main-menu ul {
  padding-left: 148px;
}
.sidebar-main-menu.main-menu ul li a {
  display: block;
  line-height: 1;
  color: #353535;
  font-size: 18px;
  letter-spacing: 1px;
}
.sidebar-main-menu.main-menu ul li ul {
  padding: 14px 20px 15px;
}
.sidebar-cart-contact {
  padding-top: 52px;
  text-align: center;
}
.sidebar-cart-contact .header-search-cart {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sidebar-contact > p {
  color: #727272;
  font-size: 15px;
  font-weight: bold;
  margin: 6px 0 0;
}
.sidebar-style-all {
  padding-top: 80px;
}
.sidebar-main-menu.main-menu {
  padding-top: 57px;
}
.sidebar-main-menu.main-menu ul li:last-child {
  padding: 0 0 0px;
}
.sidebar-main-menu.main-menu nav > ul > li > ul > li {
  margin: 0 0 10px;
  padding: 0;
}
.sidebar-main-menu.main-menu nav > ul > li > ul > li > a {
  font-size: 14px;
  line-height: inherit;
  padding: 0;
}

.sidebar-main-menu.main-menu ul li .mega-dropdown {
  padding: 14px 0 15px;
}
.sidebar-main-menu.main-menu ul li a span {
  float: right;
  font-size: 13px;
  margin-top: 3px;
  padding-right: 147px;
}

/* sidebar-wrapper hm-toy */

.toys-header {
  display: none;
  padding: 0px 15px;
}
.section-title-2 p {
  margin: 0 auto;
  width: 53%;
}
.single-content-left {
  padding-left: 100px;
}
.single-slider-hmtoy {
  height: 100vh;
}
.slider-content-style-toy h2 {
  color: #353535;
  font-family: 'Fredoka One', cursive;
  font-size: clamp(40px, 8vw, 72px);
}
.slider-content-style-toy h3 {
  color: #353535;
  font-size: clamp(18px, 4vw, 20px);
  font-family: 'Fredoka One', cursive;
  margin: 15px 0 27px;
}
.slider-btn-toy {
  background-color: #333;
  border-radius: 50px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 17px 38px 19px;
  position: relative;
  text-transform: uppercase;
}

.slider-btn-toy:after {
  border: 1px dashed #fff;
  border-radius: 50px;
  bottom: 4px;
  content: "";
  left: 6px;
  position: absolute;
  right: 6px;
  top: 4px;
}
.btn-hover.slider-btn-toy:before {
  border-radius: 50px;
}
.toy-banner-shop {
  margin-top: 4px;
  padding: 100px 100px 0;
}
.banner-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.single-banner5 > img {
  width: 100%;
}
.single-banner5 {
  position: relative;
}
.banner-content-5 {
  left: 0;
  padding: 30px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.banner-content-5 > h3 {
  color: #494949;
  font-family: "Fredoka One",cursive;
  font-size: 24px;
  margin: 0;
}
.banner-content-5 > h4 {
  color: #494949;
  font-size: 16px;
  font-weight: 600;
  margin: 5px 0 16px;
}
.banner-content-5 > a {
  border: 1px dashed #494949;
  border-radius: 50px;
  color: #494949;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
  padding: 8px 16px;
  text-transform: uppercase;
}
.banner-content-5 > a:hover {
  border: 1px dashed var(--color-primary);
  color: var(--color-primary);
}
.single-banner5.toy-mrg {
  margin: 0 20px;
}
.load-more.text-center > a i {
  color: #4f4f4f;
  font-size: 16px;
  margin-right: 6px;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
.load-more-style {
  border: 1px solid #4f4f4f;
  color: #505050;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
  padding: 15px 37px;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
.load-more-style.btn-hover {
  z-index: 5;
}
.load-more-style.btn-hover:hover {
  color: white;
  border: 1px solid var(--color-primary);
}
.load-more.text-center > a.load-more-style:hover i {
  color: #fff;
}
.toy-product .row {
  margin-left: -10px;
  margin-right: -10px;
}
.toy-product .row div[class^="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}
.load-more {
  margin-top: 11px;
}
.footer-plr {
  padding: 0 100px;
}

/*------ 7. Home food & drink -------*/

/* home food slider */
.slider-content-style-6 h2 {
  color: #434242;
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin: 0;
}
.slider-content-style-6 h3 {
  color: #434242;
  font-family: "Playfair Display",serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  margin: 17px 0 4px;
}
/* home-food banner */
.single-banner6 a img {
  width: 100%;
}
.banner-content-6 > h3 {
  color: #ffffff;
  font-family: "Pacifico",cursive;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 400;
  line-height: 1;
  margin: 0;
}
.single-banner6 {
  position: relative;
}
.banner-content-6 {
  background-color: rgba(238, 51, 51, 0.75);
  margin-right: 30px;
  padding: 54px 20px 52px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.banner-content-6 > h2 {
  color: #ffffff;
  font-family: "Pacifico",cursive;
  font-size: clamp(28px, 5vw, 48px);
  margin: 1px 0 18px;
}


/* home-food product */

.single-product-food {
  position: relative;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.product-food-img > span {
  background-color: #626262;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  right: 20px;
  letter-spacing: 1px;
  line-height: 1;
  padding: 4px 11px 5px;
  position: absolute;
  text-transform: uppercase;
  top: 20px;
}

.food-title > h4 {
  color: #5d5d5d;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 7px;
}
.food-title > span {
  color: var(--color-primary);
  font-weight: 600;
}
.food-action > a {
  color: #474747;
  line-height: 1;
  padding: 0 18px;
  position: relative;
}
.food-action > a:hover {
  color: var(--color-primary);
}
.food-action > a.action-eye {
  font-size: 27px;
  top: 3px;
}
.food-action > a.action-same {
  font-size: 19px;
}
.food-action {
  border: 1px solid #ccc;
  border-radius: 20px;
  display: inline-block;
  margin-top: 24px;
  padding: 3px 6px 7px;
}
.food-title-action {
  bottom: 40px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
}
.food-style .owl-stage , .food-new-collections .owl-stage {
  padding-bottom: 10px;
  padding-top: 10px;
}

.food-action > a:before {
  background: #cccccc none repeat scroll 0 0;
  content: "";
  height: 21px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
}
.food-action > a:last-child:before {
  content: none;
}
.food-menu {
  border-bottom: 1px solid #dadada;
}
.product-tab-list.food-menu a {
  border-bottom: 3px solid transparent;
  padding-bottom: 9px;
}
.product-tab-list.food-menu a.active , .product-tab-list.food-menu a:hover {
  border-bottom: 3px solid var(--color-primary);
}

.product-tab-list.food-menu a h4 {
  color: var(--black);
  font-family: playfair display;
  font-size: 18px;
  font-weight: bold;
  text-transform: capitalize;
}
.product-tab-list.food-menu a {
  margin: 0 25px;
}
.single-product-food:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
/* home-food product */
.food-long-banner-img {
  position: relative;
}
.food-long-banner-img > img {
  width: 100%;
}
/* home-food footer */
.food-foter {
  padding: 0 155px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.food-footer-title {
  color: #313131;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 9px;
}
.food-single-about > p {
  color: #414141;
  line-height: 27px;
  margin: 0;
}
.food-single-about > span {
  color: #575757;
  display: block;
  font-weight: 600;
  margin: 12px 0 5px;
}
.food-single-about > a {
  color: #575757;
  font-weight: 600;
}
.food-single-about > a:hover , .footer-social li a:hover {
  color: var(--color-primary);
}
.food-single-newsletter > p {
  color: #414141;
  margin: 0 0 16px;
}
/* home-food footer-subscribe */
.subscribe-form form {
  position: relative;
}
.subscribe-form form input {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #a3a3a3;
  color: #919191;
  height: 43px;
  padding-left: 20px;
}
.subscribe-form form input::-moz-placeholder {
  color: #919191;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.subscribe-form form input::-webkit-placeholder {
  color: #919191;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.mc-form .mc-news {
  left: -5000px;
  position: absolute;
}
.mc-form .clear {
  background: rgba(0, 0, 0, 0) url("../img/icon-img/8.png") no-repeat scroll right 0 center;
  bottom: 0;
  display: inline-block;
  position: absolute;
  right: 20px;
}
.subscribe-form .clear input {
  border: medium none;
  padding: 0;
  text-indent: -99999px;
  width: 37px;
}
.mc-form .clear:before {
  background: #a3a3a3 none repeat scroll 0 0;
  content: "";
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
}
.food-single-social {
  padding-top: 8px;
}
.food-single-newsletter {
  margin-top: 12px;
}

/*------- 8. Breadcrumb style -------------*/
.shop-listview-sidebar {
  padding: 0 145px;
}
.breadcrumb-content h2 {
  color: #585858;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: bold;
  margin-bottom: 16px;
  text-transform: capitalize;
}
.breadcrumb-content li {
  color: #585858;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
}
.breadcrumb-content li a {
  color: #7c7c7c;
  position: relative;
  padding-right: 18px;
}
.breadcrumb-content li a:hover {
  color: var(--color-primary);
}
.breadcrumb-content li a:after {
  background-color: #7c7c7c;
  content: "";
  font-size: clamp(7px, 1vw, 8px);
  height: 1px;
  position: absolute;
  right: 0;
  top: 10px;
  -webkit-transform: rotate(-63deg);
      -ms-transform: rotate(-63deg);
          transform: rotate(-63deg);
  width: 13px;
}

/*---------- 9. About us ----------*/

.about-story-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-left: 35px;
}
.story-title {
  color: #585858;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: bold;
  margin-bottom: 25px;
}
.story-subtitle {
  color: #8f8f8f;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 28px;
  margin-bottom: 27px;
}
.story-paragraph {
  color: #8f8f8f;
  margin-bottom: 24px;
}
.story-paragraph:last-child {
  margin-bottom: 0px;
}
.about-story-img > img {
  width: 100%;
}
.about-story-img2 {
  margin-left: 23px;
}
.about-story {
  padding-right: 28px;
}
.section-title-others > h2 {
  color: #585858;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: bold;
  margin-bottom: 12px;
}
.section-title-others > p {
  color: #8f8f8f;
  letter-spacing: 0.6px;
  margin: 0 auto;
  width: 50%;
}
.about-single-service > h3 {
  color: #454343;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 16px 0;
  text-transform: uppercase;
}
.about-single-service > p {
  color: #8f8f8f;
}
.video-banner {
  position: relative;
}
.video-banner > img {
  width: 100%;
}
.video-popup {
  background-color: rgba(255, 255, 255, 0.7);
  color: #353030;
  display: inline-block;
  font-size: clamp(40px, 8vw, 68px);
  height: 70px;
  left: 0;
  line-height: 69px;
  margin: 0 auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 115px;
}
.mfp-bg {
  z-index: 9999999;
}
.mfp-wrap {
  z-index: 99999999;
}




/*------------- 10. Shop grid view ----------*/

.shop-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.shop-found-selector {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.shop-filter-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: -3px;
}
.shop-found > p {
  color: #6c6c6c;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.shop-found > p span {
  color: #ff4136;
}
.shop-selector label {
  color: #6c6c6c;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}
.shop-selector select {
  -moz-appearance: none;
  background: rgba(0, 0, 0, 0) url("../img/icon-img/12.png") no-repeat scroll right 0 center;
  border: medium none;
  box-shadow: none;
  color: #090909;
  font-size: 18px;
  height: inherit;
  line-height: 1;
  padding-left: 0;
  width: 113px;
  -webkit-appearance: none;
  -ms-appearance: none;
}
.shop-selector {
  margin-left: 63px;
  margin-top: -3px;
}
.shop-tab a {
  color: #6c6c6c;
  font-size: clamp(24px, 4vw, 31px);
  line-height: 1;
  margin-left: 30px;
}
.shop-tab a.active , .shop-tab a:hover {
  color: #ff4136;
}
.shop-tab a:first-child {
  margin-left: 0px;
}
.shop-filter > a {
  color: #6c6c6c;
  font-size: 18px;
  font-weight: 600;
}
.shop-filter > a:hover {
  color: var(--color-primary);
}
.shop-filter {
  margin-right: 78px;
}
.shop-filter i {
  margin-left: 11px;
}
.shop-product-content .load-more-style {
  border: 1px solid #c5c5c5;
  color: #737373;
}
.shop-page-wrapper {
  padding: 100px 145px 40px;
}
.shop-page-wrapper.padding-filter , .shop-page-wrapper.shop-wrapper-pd {
  padding: 100px 145px 60px;
}

.shop-page-wrapper .container {
  position: relative;
}
.shop-page-wrapper .container-fluid {
  padding-left: 12.5px;
  padding-right: 12.5px;
  position: relative;
}
.row.custom-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -12.5px;
  margin-right: -12.5px;
}
.custom-col-style {
  padding-left: 12.5px;
  padding-right: 12.5px;
}
.custom-col-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 20%;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}
.custom-col-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.333%;
      -ms-flex: 0 0 33.333%;
          flex: 0 0 33.333%;
  max-width: 33.333%;
}
.custom-col-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

/*----------- 11. Shop sidebar ----------*/

.shop-sidebar {
  float: left;
  width: 20%;
  padding-right: 50px;
}
.shop-product-wrapper {
  width: 80%;
  float: left;
  padding-left: 50px;
}
.shop-page-wrapper {
  overflow: hidden;
}
.sidebar-title {
  color: #6c6c6c;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}
.sidebar-search form {
  position: relative;
}
.sidebar-search form input {
  background: #f1f1f1 none repeat scroll 0 0;
  border: medium none;
  box-shadow: none;
  color: #8e8d8d;
  font-size: 13px;
  padding-left: 15px;
  padding-right: 55px;
}
.sidebar-search form input::-moz-placeholder {
  color: #8e8d8d;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.sidebar-search form input::-webkit-placeholder {
  color: #8e8d8d;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.sidebar-search form > button {
  background-color: #dedede;
  border: medium none;
  color: #ff4136;
  cursor: pointer;
  font-size: clamp(20px, 4vw, 24px);
  height: 45px;
  line-height: 45px;
  padding: 0 16px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.sidebar-search form > button:hover {
  background-color: #ff4136;
  color: #fff;
}
.price_filter .ui-slider.ui-slider-horizontal.ui-widget.ui-widget-content.ui-corner-all {
  background: #ebebeb none repeat scroll 0 0;
  border: medium none;
  border-radius: 5px;
  color: #222222;
  height: 3px;
  margin-bottom: 21px;
  margin-left: auto;
}
.price_filter .ui-slider-range {
  background: #b7b7b7 none repeat scroll 0 0;
  border-radius: 0;
  height: 100%;
  top: 0;
}
.price_filter .ui-slider-handle.ui-state-default.ui-corner-all {
  background: #b7b7b7 none repeat scroll 0 0;
  border: medium none;
  border-radius: 0%;
  height: 15px;
  width: 4px;
}
.ui-slider-horizontal .ui-slider-handle {
  margin-left: 0;
  top: -6px;
}
.price_slider_amount {
  display: block;
  overflow: hidden;
}
.label-input {
  display: inline-block;
  float: left;
}
.label-input label {
  color: #575757;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  text-transform: capitalize;
}
.label-input input {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  box-shadow: none;
  color: #575757;
  font-size: 14px;
  font-weight: 600;
  height: inherit;
  padding-left: 5px;
  width: 99px;
}
.price_slider_amount > button {
  background-color: transparent;
  border: medium none;
  color: #575757;
  display: inline-block;
  float: right;
  font-weight: 600;
  line-height: 1;
  padding: 4px 0 0;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.sidebar-categories li a {
  color: #888888;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.sidebar-categories li a:hover {
  color: var(--color-primary);
}

.sidebar-categories li a span {
  float: right;
}

.sidebar-categories li {
  margin-bottom: 16px;
}

.sidebar-categories li:last-child {
  margin-bottom: 0px;
}

.product-color > ul li {
  border-radius: 50px;
  cursor: pointer;
  display: block;
  float: left;
  height: 22px;
  margin-right: 20px;
  text-indent: -9999px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  width: 22px;
}
.product-color > ul li:last-child {
  margin-right: 0px;
}
.product-color > ul li.red {
  background: #ff4136 none repeat scroll 0 0;
}
.product-color > ul li.pink {
  background: #ff01f0 none repeat scroll 0 0;
}
.product-color > ul li.blue {
  background: #3649ff none repeat scroll 0 0;
}
.product-color > ul li.sky {
  background: #00c0ff none repeat scroll 0 0;
}
.product-color > ul li.green {
  background: #00ffae none repeat scroll 0 0;
}
.product-color > ul li.purple {
  background: #8a00ff none repeat scroll 0 0;
}
.sidebar-widget {
  display: block;
}

.sidebar-widget.sidebar-overflow {
  overflow: hidden;
}
.product-size li {
  display: inline-block;
  margin-right: 16px;
}
.product-size li a {
  color: #888888;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.product-size li a:hover {
  color: var(--color-primary);
}
.single-top-rated {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.top-rated-text > h4 {
  color: #6c6c6c;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.top-rated-rating li {
  display: inline-block;
}
.top-rated-rating li {
  display: inline-block;
  margin-right: 5px;
}
.top-rated-rating li i {
  color: var(--black);
  font-size: 16px;
}

.top-rated-rating li i.reting-color {
  color: var(--color-primary);
  font-size: 16px;
}
.top-rated-text > span {
  color: #8b8b8b;
  font-weight: 600;
}
.top-rated-text {
  margin-left: 20px;
}
.top-rated-rating {
  line-height: 1;
  margin: 9px 0 10px;
}
.sidebar-load {
  padding-top: 7px;
}

/*-------- 12. Shop list -----------*/

.single-product-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.product-content-list {
  margin-left: 30px;
}
.product-list-info > h4 {
  color: #191919;
  font-size: clamp(18px, 3vw, 20px);
  font-weight: 600;
  margin: 0;
}
.product-list-info > span {
  color: #b5b5b5;
  display: block;
  font-size: clamp(18px, 4vw, 20px);
  font-weight: 600;
  margin: 15px 0 16px;
}
.product-list-info > p {
  color: #818181;
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}
.list-img-width {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 320px;
      -ms-flex: 0 0 320px;
          flex: 0 0 320px;
}
.sidebar-list-img-width {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 470px;
      -ms-flex: 0 0 470px;
          flex: 0 0 470px;
}
.product-list-cart-wishlist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 42px;
}
.list-btn-style {
  border: 1px solid #dcdcdc;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.8px;
  line-height: 1;
  padding: 17px 32px;
  text-transform: uppercase;
}
.list-btn-style:hover {
  border: 1px solid var(--color-primary);
}

.list-btn-wishlist {
  border: 1px solid #dcdcdc;
  color: #727272;
  display: inline-block;
  font-size: 22px;
  line-height: 1;
  padding: 13px 18px;
}

.list-btn-wishlist:hover {
  border: 1px solid transparent;
}
.product-list-cart {
  margin-right: 30px;
}
.load-more.list-mrg {
  margin: 0;
}
.res-class .shop-filters-right.is-visible .col-xl-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}
.padding-filter .shop-filters-right.is-visible .col-xl-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

/* container product list */

.container-product-list .product-content-list {
  margin-left: 0px;
}

/*------------ 13. breadcrumb style 2 -----------*/

.breadcrumb-content-2 > ul li {
  color: #929191;
  display: inline-block;
  font-size: clamp(14px, 3vw, 15px);
  font-weight: 600;
  padding-right: 27px;
  position: relative;
  text-transform: uppercase;
}
.breadcrumb-content-2 > ul li a {
  color: #929191;
}
.breadcrumb-content-2 > ul li a:hover {
  color: #ff4136;
}
.breadcrumb-content-2 ul li:after {
  background-color: #929191;
  content: "";
  font-size: 8px;
  height: 11px;
  margin-left: 11px;
  position: absolute;
  right: 11px;
  top: 6px;
  -webkit-transform: rotate(33deg);
      -ms-transform: rotate(33deg);
          transform: rotate(33deg);
  width: 2px;
}
.breadcrumb-content-2 ul li:last-child:after {
  content: inherit;
}

/*---------- 14. product details --------*/

.product-details-small a:last-child {
  margin-right: 0px;
}
.product-details-large .easyzoom > a img {
  width: 100%;
}
.pro-stick .easyzoom.easyzoom--overlay > a img , .single-details-gallery .easyzoom.easyzoom--overlay > a img , .details-9 .easyzoom.easyzoom--overlay > a img {
  width: 100%;
}
.product-details-small a > img {
  width: 100%;
}
.product-details-small.main-product-details a > img {
  width: 140px;
}
.product-details-small.main-product-details a {
  margin-bottom: 10px;
}
.product-details-small > a.active {
  position: relative;
}
.product-details-small > a.active:before {
  background: rgba(0, 0, 0, .15) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 400ms ease-in 0s;
  transition: all 400ms ease-in 0s;
  z-index: 10;
}
.product-details-content > h3 {
  color: #707070;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  margin-bottom: 13px;
}
.details-price > span {
  color: var(--color-primary);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
}
.product-details-content .rating-number {
  margin-bottom: 5px;
}
.product-details-content > p {
  color: #545454;
  margin-bottom: 33px;
}
.details-price {
  margin-bottom: 25px;
}
.product-cat-tag li , .product-share li {
  display: inline-block;
  margin-right: 14px;
}
.product-cat-tag li a {
  text-transform: capitalize;
}
.product-cat-tag li.categories-title {
  text-transform: uppercase;
  font-size: 15px;
  color: #6e6e6e;
}
.product-share > ul li {
  margin-right: 15px;
  display: inline-block;
  margin-right: 14px;
}
.product-share > ul li a {
  border: 1px solid #3f3f3f;
  border-radius: 50px;
  color: #585858;
  display: inline-block;
  height: 30px;
  text-align: center;
  width: 30px;
}
.product-share > ul li a:hover {
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
}
.product-share > ul li a i {
  line-height: 28px;
}
.product-categories.product-cat-tag {
  margin: 34px 0 15px;
}
.product-tags.product-cat-tag {
  margin-bottom: 22px;
}
.description-review-title {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 44px;
}
.description-review-title a {
  color: #e0e0e0;
  font-size: clamp(20px, 4vw, 30px);
  font-weight: bold;
  margin: 0 20px;
}
.description-review-title a.active {
  color: #333333;
}
.description-review-text .tab-pane p {
  color: #545454;
  font-size: 15px;
  margin: 0 auto;
  width: 61%;
}
#pro-review a {
  background-color: #282828;
  border: 0 none;
  color: #fff;
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  margin: 0;
  padding: 10px 15px;
  text-shadow: none;
  text-transform: uppercase;
}

/*-------- 15. Product details 2 -------*/

.product-details-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 125px;
      -ms-flex: 0 0 125px;
          flex: 0 0 125px;
}
.product-details-tab.product-details-tab2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.product-details-btn > a {
  color: #929191;
  font-size: clamp(18px, 4vw, 20px);
  margin-left: 10px;
}
.product-details-btn > a.active , .product-details-btn > a:hover {
  color: #3a3a3a;
  margin-left: 10px;
}
.product-details-btn {
  margin-top: -128px;
  position: absolute;
  right: 0;
}
.product-details {
  position: relative;
}

/*----------- 16. product details 4 ---------*/

.product-details-4 .easyzoom a img {
  width: 100%;
}

.single-bundle-img a img {
  width: 100%;
}

.details-title {
  color: #707070;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 19px;
}
.product-color-style2 > ul li {
  border-radius: 50px;
  cursor: pointer;
  display: block;
  float: left;
  height: 19px;
  margin-right: 10px;
  position: relative;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  width: 19px;
}
.product-color-style2 > ul li.orange {
  background: #ff5d42 none repeat scroll 0 0;
  position: relative;
}
.product-color-style2 > ul li.orange:before {
  color: #fff;
  content: "";
  font-family: "Ionicons";
  font-size: 16px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  text-indent: inherit;
  top: -2px;
  z-index: 99;
}
.product-color-style2 > ul li.blue2 {
  background: #425dff none repeat scroll 0 0;
}

.product-color-style2 > ul li.pink {
  background: #fd42ff none repeat scroll 0 0;
}

.product-color-style2 > ul li.yellow {
  background: #ffd542 none repeat scroll 0 0;
}
.product-color-2 {
  margin-bottom: 37px;
  overflow: hidden;
}
.product-size-style2 li {
  display: inline-block;
  margin-right: 12px;
}
.product-size-style2 li a {
  color: #828282;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
}
.product-size-style2 li a:hover {
  color: var(--color-primary);
}
.product-size-2 {
  margin-bottom: 30px;
}
.bundle-area > h3 {
  color: #707070;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.bundle-area > p {
  color: #545454;
  margin: 0;
}
.bundle-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 34px 0 35px;
}
.single-bundle-img {
  margin-right: 11px;
  position: relative;
  cursor: pointer;
}
.bundle-img > a:last-child {
  margin-right: 0px;
}
.single-bundle-img:before {
  background: rgba(0, 0, 0, 0.15) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 400ms ease-in 0s;
  transition: all 400ms ease-in 0s;
  pointer-events: none;
}
.single-bundle-img:hover:before {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.bundle-price ul li {
  color: #525252;
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.bundle-price ul li:last-child {
  margin-bottom: 0px;
}
.bundle-price ul li:before {
  color: #727272;
  content: "";
  font-family: "Ionicons";
  font-size: 14px;
  left: 0;
  position: absolute;
  text-indent: inherit;
  top: 0;
}
.bundle-price ul li span {
  position: relative;
}
.bundle-price ul li span:before {
  background: #7d7d7d none repeat scroll 0 0;
  bottom: 9px;
  content: "";
  height: 1px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 32px;
}
.bundle-result > h4 {
  color: #525252;
  font-size: 16px;
  font-weight: 600;
}
.bundle-result > h4 span {
  color: #747373;
  font-weight: 400;
}
.bundle-result > h4 span .bundle-cross {
  position: relative;
}
.bundle-result > h4 span .bundle-cross:before {
  background: #9f9e9e none repeat scroll 0 0;
  bottom: 10px;
  content: "";
  height: 1px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 45px;
}
a.bundle-btn {
  background-color: var(--color-primary);
  color: #fff;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.8px;
  line-height: 1;
  padding: 17px 25px;
  text-transform: uppercase;
  position: relative;
  z-index: 9;
}
.btn-hover-black:before {
  background: #333 none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 50% 0;
      -ms-transform-origin: 0 50% 0;
          transform-origin: 0 50% 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  z-index: -1;
}
.btn-hover-black:hover:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.btn-hover-black:hover {
  color: white;
}
.bundle-social li {
  display: inline-block;
  margin-right: 30px;
}
.bundle-social li a {
  color: #383838;
  font-size: 18px;
  line-height: 1;
}
.bundle-social li a:hover {
  color: var(--color-primary);
}
.bundle-result {
  margin-top: 32px;
}
.bundle-cart {
  margin: 37px 0 38px;
}
.product-details-4 > img {
  width: 100%;
}
.product-details-5 > img {
  padding-top: 134px;
  width: 100%;
}
.scroll-single-product > img {
  width: 100%;
}
.inner-wrapper-sticky > h3 {
  color: #707070;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 600;
}

/*-------- 17. Product details 7  -------*/

.product-details7-social li {
  display: inline-block;
  margin-right: 27px;
}
.product-details7-social li a {
  color: #383838;
  font-size: 18px;
}
.product-details7-social li a:hover {
  color: var(--color-primary);
}
.sidebar-details7 .quickview-btn-cart {
  margin: 0 0 0 30px;
}
.sidebar-details7 .quickview-btn-cart > a {
  padding: 17px 34px;
}
.sidebar-details7 .details-title {
  margin-top: 0;
}
.scroll-single-product {
  position: relative;
}
.scroll-single-product > a {
  background-color: #fff;
  bottom: 30px;
  color: #ff4136 !important;
  display: inline-block;
  font-size: clamp(18px, 4vw, 22px);
  padding: 10px 19px;
  position: absolute;
  right: 30px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.scroll-single-product > a:hover {
  background-color: #ff4136;
  color: #fff !important;
}
.scroll-single-product:hover a {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/*-------- 18. Product details 8 --------- */

.single-details-gallery {
  width: 280px;
  float: left;
}
.single-details-gallery > img {
  width: 100%;
}
.details-9 > img {
  width: 100%;
}
.product-details-9 .product-details-btn {
  margin-top: -98px;
}

/*------- 19. Product details 9  ----------*/

.details-9-content .product-color-style2 > ul li {
  display: inline-block;
  float: inherit;
}

.details-9-content .rating-number , .details-9-content .quickview-plus-minus {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.details-9-content .product-details-content > p {
  margin: 0 auto;
  width: 50%;
}

/*----------- 20. Shop filters  ----------*/

.shop-filters-left {
  float: left;
  margin-left: -100px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  padding-right: 100px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  visibility: hidden;
  max-width: 420px;
  width: 100%;
  z-index: -99999;
  position: absolute;
  top: 0;
}
.shop-filters-left .shop-sidebar {
  width: 100%;
  padding-right: 0;
}
.shop-filters-left.is-visible {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
  z-index: 9;
  margin-left: 0px;
  z-index: 99;
}
.shop-filters-right {
  width: 100%;
  padding-left: 0;
  -webkit-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  overflow: hidden;
}
.shop-filters-right.is-visible {
  padding-left: 420px;
}
.filter-container .shop-filters-left {
  padding-right: 50px;
  max-width: 340px;
}
.filter-container .shop-filters-right.is-visible {
  padding-left: 340px;
}
.hidden-items .shop-filters-right.is-visible .custom-col-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.333%;
      -ms-flex: 0 0 33.333%;
          flex: 0 0 33.333%;
  max-width: 33.333%;
}
.hidden-items .shop-filters-right.is-visible .col-md-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

/*-------- 21. Shopping cart ----------*/


h1.cart-heading {
  color: #252525;
  font-size: clamp(20px, 4vw, 25px);
  margin-bottom: 25px;
  text-transform: uppercase;
}
.cart-title-area {
  padding-top: 30px;
}
.car-header-title h2 {
  font-size: clamp(18px, 3vw, 20px);
  margin: 0;
  text-transform: uppercase;
}
.table-content table {
  background: #fff none repeat scroll 0 0;
  border-color: #e5e5e5;
  border-radius: 0;
  border-style: solid;
  border-width: 1px 0 0 1px;
  margin: 0 0 50px;
  text-align: center;
  width: 100%;
  border: none;
}
.wishlist .table-content table {
  margin: 0 0 0px;
}
.table-content.wish table {
  margin: 0 0 0px;
}
.table-content table th {
  border-top: medium none;
  color: #555;
  font-size: clamp(14px, 3vw, 16px);
  font-weight: normal;
  padding: 15px 10px 12px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
}
.table-content table td {
  border-top: medium none;
  padding: 40px 10px;
  vertical-align: middle;
  font-size: clamp(12px, 3vw, 13px);
}
.table-content table td input {
  background: #e5e5e5 none repeat scroll 0 0;
  border: medium none;
  border-radius: 3px;
  color: #6f6f6f;
  font-size: clamp(13px, 3vw, 15px);
  font-weight: normal;
  height: 40px;
  padding: 0 5px 0 10px;
  width: 60px;
}
.table-content table td.product-subtotal {
  color: #555;
  font-size: clamp(13px, 3vw, 15px);
  width: 120px;
}
.table-content table td.product-name a {
  color: #6f6f6f;
  font-size: clamp(13px, 3vw, 15px);
  margin-left: 10px;
}
.table-content table td.product-name a:hover {
  color: var(--color-primary);
}
.table-content table td.product-name {
  width: 270px;
}
.table-content table td.product-thumbnail {
  width: 130px;
}
.table-content table td.product-remove i {
  color: #919191;
  display: inline-block;
  font-size: clamp(18px, 4vw, 20px);
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 40px;
}
.table-content table .product-price .amount {
  color: #555;
  font-size: clamp(13px, 3vw, 15px);
}

.table-content table td.product-remove i:hover {
  color: var(--color-primary);
}
.table-content table td.product-quantity {
  width: 180px;
}
.table-content table td.product-remove {
  width: 150px;
}
.table-content table td.product-price {
  width: 130px;
}
thead {
  background-color: #f6f6f6;
}
.coupon input {
  background-color: transparent;
  border: 1px solid #ddd;
  color: #333;
  font-size: clamp(12px, 3vw, 13px);
  height: 42px;
  width: 120px;
}
.coupon2 input {
  width: inherit;
}
.coupon-all input.button {
  background-color: #333;
  border: 0 none;
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-size: clamp(12px, 3vw, 13px);
  font-weight: 700;
  height: 42px;
  letter-spacing: 1px;
  line-height: 42px;
  padding: 0 25px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  width: inherit;
}
.coupon-all input.button:hover {
  background-color: var(--color-primary);
  border: medium none;
  color: #fff;
}
.coupon {
  float: left;
}
.coupon2 {
  float: right;
}
.cart-page-total span {
  float: right;
}
.cart-page-total > ul {
  border: 1px solid #ddd;
}
.cart-page-total li {
  border-bottom: 1px solid #ddd;
  color: #555;
  font-size: clamp(13px, 3vw, 15px);
  font-weight: bold;
  padding: 10px 30px;
}
.cart-page-total li:last-child {
  border-bottom: none;
}
.cart-page-total {
  padding-top: 50px;
}
.cart-page-total > a {
  background-color: #333;
  border: 1px solid #333;
  color: #fff;
  display: inline-block;
  margin-top: 30px;
  padding: 9px 20px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.cart-page-total > a:hover {
  background-color: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
}
.cart-page-total > h2 {
  font-size: clamp(20px, 4vw, 25px);
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: capitalize;
}

/*-------- 22. Checkout page ----------*/

.coupon-accordion h3 {
  background-color: #f7f6f7;
  border-top: 3px solid #464646;
  color: #515151;
  font-size: clamp(13px, 3vw, 14px);
  font-weight: 400;
  list-style: outside none none !important;
  margin: 0 0 2em !important;
  padding: 1em 2em 1em 3.5em !important;
  position: relative;
  width: auto;
}
.coupon-accordion h3:before {
  color: #333;
  content: "";
  font-family: "Ionicons";
  display: inline-block;
  left: 1.5em;
  position: absolute;
  top: 1em;
}
.coupon-accordion span {
  cursor: pointer;
  color: #6f6f6f;
}
.coupon-accordion span:hover,
p.lost-password a:hover {
  color: var(--color-primary);
}
.coupon-content {
  border: 1px solid #e5e5e5;
  display: none;
  margin-bottom: 20px;
  padding: 20px;
}
.coupon-info p.coupon-text {
  margin-bottom: 15px;
}
.coupon-info p {
  margin-bottom: 0;
}
.coupon-info p.form-row-first label,
.coupon-info p.form-row-last label {
  display: block;
}
.coupon-info p.form-row-first label span.required,
.coupon-info p.form-row-last label span.required {
  color: red;
  font-weight: 700;
}
.coupon-info p.form-row-first input,
.coupon-info p.form-row-last input {
  border: 1px solid #e5e5e5;
  height: 36px;
  margin: 0 0 14px;
  max-width: 100%;
  padding: 0 0 0 10px;
  width: 370px;
  background-color: transparent;
}
.coupon-info p.form-row input[type="submit"]:hover,
p.checkout-coupon input[type="submit"]:hover {
  background: var(--color-primary) none repeat scroll 0 0;
}
.coupon-info p.form-row input[type="checkbox"] {
  height: inherit;
  position: relative;
  top: 2px;
  width: inherit;
}
.form-row > label {
  margin-top: 7px;
}
p.lost-password {
  margin-top: 15px;
}
p.lost-password a {
  color: #6f6f6f;
}
p.checkout-coupon input[type="text"] {
  background-color: transparent;
  border: 1px solid #ddd;
  height: 36px;
  padding-left: 10px;
  width: 170px;
}
p.checkout-coupon input[type="submit"] {
  background: #333 none repeat scroll 0 0;
  border: medium none;
  border-radius: 0;
  color: #fff;
  height: 36px;
  margin-left: 6px;
  padding: 5px 10px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: inherit;
}
.coupon-checkout-content {
  margin-bottom: 30px;
  display: none;
}
.checkbox-form h3 {
  border-bottom: 1px solid #e5e5e5;
  font-size: clamp(20px, 4vw, 25px);
  margin: 0 0 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
  width: 100%;
}
.country-select {
  margin-bottom: 30px;
  position: relative;
}

.country-select label,
.checkout-form-list label {
  color: #333;
  margin: 0 0 5px;
  display: block;
}

.country-select label span.required,
.checkout-form-list label span.required {
  color: red;
}

.country-select select {
  -moz-appearance: none;
  border: 1px solid #ddd;
  height: 32px;
  padding-left: 10px;
  width: 100%;
  background-color: transparent;
}

.country-select:before {
  content: "";
  font-family: "Ionicons";
  display: inline-block;
  font-size: 20px;
  position: absolute;
  right: 12px;
  top: 27px;
}

.checkout-form-list {
  margin-bottom: 30px;
}
.checkout-form-list label {
  color: #333;
}
.checkout-form-list input[type=text],
.checkout-form-list input[type=password],
.checkout-form-list input[type=email] {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  height: 42px;
  width: 100%;
  padding: 0 0 0 10px;
}
.checkout-form-list input[type="checkbox"] {
  display: inline-block;
  height: inherit;
  margin-right: 10px;
  position: relative;
  top: 2px;
  width: inherit;
}
.ship-different-title input {
  height: inherit;
  line-height: normal;
  margin: 4px 0 0;
  position: relative;
  top: 1px;
  width: 30px;
}
.create-acc label {
  color: #333;
  display: inline-block;
}
.create-account {
  display: none;
}
.ship-different-title h3 label {
  display: inline-block;
  margin-right: 20px;
  font-size: clamp(15px, 4vw, 25px);
  color: #363636;
}
.order-notes textarea {
  background-color: transparent;
  border: 1px solid #ddd;
  height: 90px;
  padding: 15px;
  width: 100%;
}
#ship-box-info {
  display: none;
}
.your-order {
  background: #f2f2f2 none repeat scroll 0 0;
  padding: 30px 40px 45px;
}
.your-order h3 {
  border-bottom: 1px solid #d8d8d8;
  font-size: clamp(20px, 4vw, 25px);
  margin: 0 0 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
  width: 100%;
}
.your-order-table table {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
  width: 100%;
}
.your-order-table table th,
.your-order-table table td {
  border-bottom: 1px solid #d8d8d8;
  border-right: medium none;
  font-size: clamp(12px, 3vw, 14px);
  padding: 15px 0;
  text-align: center;
}
.your-order-table table th {
  border-top: medium none;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  width: 250px;
}
.your-order-table table .shipping ul li input {
  position: relative;
  top: 2px;
}
.your-order-table table .shipping th {
  vertical-align: top;
}
.your-order-table table .order-total th {
  border-bottom: medium none;
  font-size: clamp(16px, 3vw, 18px);
}
.your-order-table table .order-total td {
  border-bottom: medium none;
}
.your-order-table table tr.cart_item:hover {
  background: #F9F9F9;
}
.your-order-table table tr.order-total td span {
  color: #464646;
  font-size: clamp(18px, 4vw, 20px);
}
.payment-method {
  margin-top: 40px;
}
.payment-accordion h3 {
  border-bottom: 0 none;
  margin-bottom: 10px;
  padding-bottom: 0;
}
.payment-accordion h3 a {
  color: #6f6f6f;
  font-size: clamp(13px, 3vw, 14px);
  padding-left: 25px;
  position: relative;
  text-transform: capitalize;
  text-decoration: none;
}
.payment-content p {
  font-size: clamp(12px, 3vw, 13px);
}
.payment-accordion img {
  height: 60px;
  margin-left: 15px;
}
.order-button-payment input {
  background: #464646 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  font-size: clamp(15px, 4vw, 17px);
  font-weight: 600;
  height: 50px;
  margin: 20px 0 0;
  padding: 0;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
  border: 1px solid transparent;
  cursor: pointer;
}
.order-button-payment input:hover {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: #fff;
}
.coupon-info p.form-row input[type="submit"] {
  background: #252525 none repeat scroll 0 0;
  border: medium none;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  float: left;
  font-size: clamp(11px, 3vw, 12px);
  height: 40px;
  line-height: 40px;
  margin-right: 15px;
  padding: 0 30px;
  text-shadow: none;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
  width: inherit;
}
.mrg-nn {
  margin-bottom: 0;
}
h5.panel-title {
  color: #444;
  font-weight: 600;
}
.panel-body > p {
  color: #666;
}
.panel.panel-default {
  margin-bottom: 20px;
}


/*--------- 23. Login page ---------*/
.login-form-container {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #ddd;
  padding: 60px 40px;
  text-align: left;
}
.login-text {
  margin-bottom: 30px;
  text-align: center;
}
.login-text h2 {
  color: #444;
  font-size: clamp(24px, 5vw, 30px);
  margin-bottom: 5px;
  text-transform: capitalize;
}
.login-text span {
  font-size: 15px;
}
.login-form-container input {
  background: #ffffff none repeat scroll 0 0;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-shadow: none;
  color: #999;
  font-size: clamp(13px, 3vw, 14px);
  height: 40px;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}
.login-form-container input::-moz-placeholder {
  color: #999;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.login-toggle-btn {
  padding-top: 10px;
}
.login-form-container input[type="checkbox"] {
  height: 15px;
  margin: 0;
  position: relative;
  top: 1px;
  width: 17px;
}
.login-form-container label {
  color: #777;
  font-size: 15px;
  font-weight: 400;
}
.login-toggle-btn > a {
  color: #777;
  float: right;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.login-toggle-btn > a:hover {
  color: #000;
}
.button-box .default-btn {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #ddd;
  color: #777;
  font-size: clamp(13px, 3vw, 14px);
  line-height: 1;
  margin-top: 25px;
  padding: 12px 36px 10px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.button-box .default-btn:hover {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: #fff;
}

/*------- 24. Blog sidebar ---------*/

.blog-tags-style li {
  display: inline-block;
  margin: 0 5px 10px 0;
}
.blog-tags-style li a {
  border: 1px solid #cbcbcb;
  color: #232323;
  display: inline-block;
  font-size: clamp(12px, 3vw, 14px);
  font-weight: 400;
  line-height: 1;
  padding: 13px 19px;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.blog-tags-style li a:hover {
  color: #fff;
    background-color: var(--color-primary);
}

.sidebar-img-content {
  background: #f6f6f6 none repeat scroll 0 0;
  padding: 20px;
}
.sidebar-img-content > p {
  color: #646464;
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 21px;
}

.sidebar-img-content h4 {
  color: #2f2f2f;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
.sidebar-img-content > span {
  color: #2f2f2f;
  font-size: 12px;
  font-weight: 400;
}
.sidebar-widget.mb-50 > img {
  width: 100%;
}

.sidebar-img-social ul li {
  display: inline-block;
    margin-right: 20px;
}
.sidebar-img-social ul li > a {
  font-size: 16px;
}
.sidebar-img-social {
  margin-top: 10px;
}
.blog-sidebar .top-rated-text > h4 {
  font-size: 16px;
  line-height: 24px;
}
.blog-sidebar .top-rated-text > span {
  margin-bottom: 2px;
}
.social-network > a {
  background: #f6f6f6 none repeat scroll 0 0;
  color: #262626;
  display: inline-block;
  font-size: clamp(18px, 4vw, 20px);
  height: 60px;
  line-height: 59px;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 80px;
}
.social-network > a:hover {
  background: var(--color-primary) none repeat scroll 0 0;
  color: #fff;
}
#Instafeed img {
  width: 107px;
}
#Instafeed > li {
  display: inline-block;
  padding: 2px;
}
.pagination-style ul li {
  display: inline-block;
  margin: 0 5px;
}
.pagination-style ul li a {
  border: 1px solid #bebebe;
  color: #8b8b8b;
  font-size: 16px;
  font-weight: 400;
  height: 40px;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  width: 40px;
    display: inline-block;
    line-height: 37px;
}

.pagination-style ul li:hover a, .pagination-style ul li.active a {
  background: var(--color-primary) none repeat scroll 0 0;
  border-color: var(--color-primary);
  color: #fff;
}




/*---------- 25. Blog details ----------*/

.blog-part > img {
  width: 100%;
}
.blog-details-style blockquote {
  background-color: #f6f6f6;
  border-left: 2px solid var(--color-primary);
  color: #666666;
  font-size: 14px;
  line-height: 26px;
  margin: 23px 0;
  padding: 14px 50px;
}
h3.leave-comment-text {
  border-bottom: 1px solid #ddd;
  display: block;
  font-size: clamp(16px, 4vw, 18px);
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}
.blog-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.news-allreply img {
  border-radius: 100%;
  width: 100%;
}
.blog-title > h3 {
  font-size: clamp(15px, 3.5vw, 16px);
  margin-bottom: 6px;
  text-transform: capitalize;
  color: #333;
}
.blog-title > span {
  color: #666666;
  display: block;
  margin-bottom: 7px;
}
.blog-middle-mrg {
  margin: 32px 0 33px 90px;
}
.blog-img-details p {
  margin-bottom: 10px;
}
.blog-img-details > a {
  color: #333;
  font-weight: 600;
  text-transform: capitalize;
}
.blog-img-details > a:hover {
  color: var(--color-primary);
}
.blog-img-details {
  padding-left: 30px;
}
.leave-form input {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #ddd;
  color: #666666;
  font-size: 14px;
  height: 35px;
  margin-bottom: 30px;
  padding: 0 20px;
  width: 100%;
}
.text-leave textarea {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #ddd;
  color: #666666;
  font-size: 14px;
  height: 165px;
  margin-bottom: 30px;
  padding: 20px;
}
.text-leave button.submit {
  background-color: #333;
  border: medium none;
  color: #fff;
  cursor: pointer;
  font-size: clamp(12px, 3.5vw, 14px);
  line-height: 1;
  padding: 16px 30px 15px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 999;
}
.blog-info-details > h3 {
  font-size: clamp(20px, 5vw, 25px);
  margin-bottom: 20px;
  text-transform: capitalize;
}

/*----------- 26. Contact page -----------*/


.contact-title {
  color: #333;
  font-size: clamp(18px, 4vw, 20px);
  margin-bottom: 38px;
  text-transform: uppercase;
}
.single-contact-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contact-info-icon i {
  border: 1px solid #cbcbcb;
  border-radius: 100%;
  color: #393939;
  display: block;
  font-size: clamp(20px, 5vw, 24px);
  height: 60px;
  line-height: 60px;
  text-align: center;
  width: 60px;
}
.contact-info-content p {
  color: #666666;
  font-size: clamp(16px, 4vw, 18px);
  line-height: 28px;
  margin: 0;
}
.contact-info-content {
  padding-left: 15px;
}
.contact-form-style input, .contact-form-style textarea {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background: transparent none repeat scroll 0 0;
  border-color: currentcolor currentcolor #c1c1c1;
  -o-border-image: none;
     border-image: none;
  border-style: none none solid;
  border-width: 0 0 1px;
  color: #444;
  font-size: clamp(13px, 3vw, 14px);
  margin-bottom: 25px;
  padding: 0 20px 0 0;
}
.contact-form-style input::-moz-placeholder , .contact-form-style textarea::-moz-placeholder {
  color: #444;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.contact-form-style input::-webkit-placeholder , .contact-form-style textarea::-webkit-placeholder {
  color: #444;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.contact-form-style textarea {
  height: 150px;
}
.contact-form-style button.submit {
  background-color: #333;
  border: medium none;
  color: #fff;
  cursor: pointer;
  font-size: clamp(12px, 3.5vw, 14px);
  line-height: 1;
  padding: 16px 30px 15px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 999;
}

.contact-info {
  margin-bottom: 20px;
}
#hastech2 {
  height: 402px;
  width: 100%;
}
.contact-map {
  margin-top: 65px;
}

/*-------- 27. ScrollUp --------*/

#scrollUp {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover)) none repeat scroll 0 0;
  bottom: 85px;
  color: #ffffff;
  cursor: pointer;
  display: none;
  font-size: clamp(18px, 4vw, 20px);
  height: 40px;
  line-height: 40px;
  position: fixed;
  right: 12px;
  text-align: center;
  width: 38px;
  z-index: 9999;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#scrollUp:hover {
  background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary)) none repeat scroll 0 0;
  bottom: 85px;
  color: #ffffff;
  cursor: pointer;
  display: none;
  font-size: clamp(18px, 4vw, 20px);
  height: 40px;
  line-height: 40px;
  position: fixed;
  right: 12px;
  text-align: center;
  width: 38px;
  z-index: 9999;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.6);
}



/*----------------------------------------*/
/* Newsletter Popup CSS
/*----------------------------------------*/
.popup_wrapper {
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
    height: 100%;
    opacity: 0;
    position: fixed;
    transition: all 0.5s ease 0s;
    visibility: hidden;
    width: 100%;
    z-index: 9999999;
}

.test {
  background: #fff none repeat scroll 0 0;
  left: 0;
  margin: auto;
  padding: 80px 50px;
  position: absolute;
  right: 0;
  top: 200px;
  width: 55%;
}
.subscribe_area > p {
  margin-bottom: 30px;
}
.popup_off {
    color: #ffffff;
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none;
    background: #000;
    width: 53px;
    height: 25px;
    line-height: 27px;
    position: absolute;
    top: -25px;
    right: 0;
    font-size: clamp(12px, 3vw, 13px);
    font-weight: 700;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.popup_off:hover {
    background: #cc0000;
}

.subscribe-form-group {
    margin-top: 15px;
}

.subscribe-form-group input {
    background: #EBEBEB none repeat scroll 0% 0%;
    border: medium none;
    height: 40px;
    width: 50%;
    margin: 20px 0;
    padding: 0 15px;
}

input#newsletter-permission {
  height: inherit;
  width: 12px;
}

.subscribe-bottom input {
  background: #f2f2f2 none repeat scroll 0 0;
  border: medium none;
  box-shadow: none;
  color: #626262;
  font-size: clamp(13px, 3vw, 14px);
  height: 45px;
  padding-left: 25px;
  padding-right: 25px;
  width: 60%;
}
.clear-2 {
  margin-top: 20px;
}
.clear-2 input {
  background: #333 none repeat scroll 0 0;
  border: medium none;
  box-shadow: none;
  color: #fff;
  font-size: clamp(13px, 3vw, 14px);
  height: inherit;
  padding: 13px 35px;
  width: inherit;
}
.clear-2 input:hover {
  background: var(--color-primary) none repeat scroll 0 0;
  border: medium none;
  box-shadow: none;
}



.subscribe_area h2 {
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: clamp(24px, 5vw, 35px);
}

/* carousel */

.owl-nav{
	position: absolute;
	right: 10px;
	bottom: 10px;
}
.owl-next,
.owl-prev{
position: relative;
display: inline-block;
/* height: 75px; */
width: 40px;
line-height: 40px;
text-align: center;
border-radius: 50%;
background-color:#FF9800;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}

.owl-next:hover,
.owl-prev:hover{
background-color:#00df97;
box-shadow: 0 24px 24px rgba(187,187,187,.75);
}

.arrow-right,
.arrow-left{
position: relative;
display: inline-block;
height: 9px;
width: 43px;
background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-left-2.png);
background-repeat: no-repeat;
background-position: center;
}

.arrow-right{
background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-right-2.png);
}
.style-3 del {
    color: rgba(255, 165, 0, 0.5);
    text-decoration: none;
    position: relative;
    font-size: clamp(30px, 6vw, 40px);
    font-weight: 100;
}
.style-3 del:before {
    content: " ";
    display: block;
    width: 100%;
    border-top: 8px double rgba(255, 165, 0, 0.8);
    height: 4px;
    position: absolute;
    bottom: 20px;
    left: 0;
    transform: rotate(-11deg);
}
.style-3 ins {
    font-size: clamp(40px, 8vw, 60px);
    font-weight: 800;
    text-decoration: none;
    padding: 1em 1em 1em .5em;
}


.dot {
	height: 80px;
	width: 80px;
	background-color: #f9c132;
	border-radius: 50%;
	display: inline-block;
	text-align: center;
	font-size: clamp(20px, 5vw, 27px);
	font-weight: bold;
	font-style: italic;
	font-family: pacifico;
	position: absolute;
	top:20px;
	right:38px;
	z-index: 2;
}

/* navigation  */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 2px;
  border-radius: 4px
}

.pagination>li {
  display: inline
}

span.current {
    z-index: 2 !important;
    color: #fff !important;
    background-color: #007bff !important;
    border-color: #007bff !important;
}

span.next {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.pagination>li>a, .pagination>li>span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd
}

.pagination>li>span:first-child {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px
}

.pagination>li>span:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px
}

span.prev {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover {
  color: #23527c;
  background-color: #eee;
  border-color: #ddd
}

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7
}

.pagination>.disabled>a, .pagination>.disabled>a:focus, .pagination>.disabled>a:hover, .pagination>.disabled>span, .pagination>.disabled>span:focus, .pagination>.disabled>span:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd
}

.pagination-lg>li>a, .pagination-lg>li>span {
  padding: 10px 16px;
  font-size: clamp(16px, 4vw, 18px)
}

.pagination-lg>li:first-child>a, .pagination-lg>li:first-child>span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px
}

.pagination-lg>li:last-child>a, .pagination-lg>li:last-child>span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px
}

.pagination-sm>li>a, .pagination-sm>li>span {
  padding: 5px 10px;
  font-size: clamp(11px, 3vw, 12px)
}

.pagination-sm>li:first-child>a, .pagination-sm>li:first-child>span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px
}

.pagination-sm>li:last-child>a, .pagination-sm>li:last-child>span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px
}

/* style detail product */

img {
max-width: 100%; }
.preview {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column; }
@media screen and (max-width: 996px) {
.preview {
margin-bottom: 20px; } }

.preview-pic {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1; }

.preview-thumbnail.nav-tabs {
border: none;
margin-top: 15px; }
.preview-thumbnail.nav-tabs li {
width: 18%;
margin-right: 2.5%; }
.preview-thumbnail.nav-tabs li img {
max-width: 100%;
display: block; }
.preview-thumbnail.nav-tabs li a {
padding: 0;
margin: 0; }
.preview-thumbnail.nav-tabs li:last-of-type {
margin-right: 0; }

.tab-content {
overflow: hidden; }
.tab-content img {
width: 100%;
-webkit-animation-name: opacity;
animation-name: opacity;
-webkit-animation-duration: .3s;
animation-duration: .3s; }

@-webkit-keyframes opacity {
0% {
opacity: 0;
-webkit-transform: scale(3);
transform: scale(3); }
100% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1); } }

@keyframes opacity {
0% {
opacity: 0;
-webkit-transform: scale(3);
transform: scale(3); }
100% {
opacity: 1;
-webkit-transform: scale(1);
@media screen and (min-width: 997px) {
.wrapper {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex; } }

.details {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column; }

.colors {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1; }

.product-title, .price, .sizes, .colors {
text-transform: UPPERCASE;
font-weight: bold; }

.checked, .price span {
color: #ff9f1a; }

.product-title, .rating, .product-description, .price, .vote, .sizes {
margin-bottom: 15px; }

.product-title {
margin-top: 0; }

.size {
margin-right: 10px; }
.size:first-of-type {
margin-left: 40px; }

.color {
display: inline-block;
vertical-align: middle;
margin-right: 10px;
height: 2em;
width: 2em;
border-radius: 2px; }
.color:first-of-type {
margin-left: 20px; }

.add-to-cart, .like {
background: #ff9f1a;
padding: 1.2em 1.5em;
border: none;
text-transform: UPPERCASE;
font-weight: bold;
color: #fff;
-webkit-transition: background .3s ease;
transition: background .3s ease; }
.add-to-cart:hover, .like:hover {
background: #b36800;
color: #fff; }

.not-available {
text-align: center;
line-height: 2em; }
.not-available:before {
font-family: fontawesome;
content: "\f00d";
color: #fff; }

.orange {
background: #ff9f1a; }

.green {
background: #85ad00; }

.blue {
background: #0076ad; }

.tooltip-inner {
padding: 1.3em; }


/* form search  */

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 1.25rem + 2px);
    padding: .625rem 1rem;
    font-size: .9375rem;
    font-weight: 400;
    line-height: 1.5;
    color: #4b566b;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dae1e7;
    border-radius: .3125rem;
    box-shadow: 0 0 0 0 transparent;
    transition: border-color 0.2s ease-in-out,box-shadow 0.2s ease-in-out;
  }
  .input-group-overlay .appended-form-control:not(.rounded-right-0) {
    padding-right: 2.5rem;
    border-top-right-radius: .3125rem !important;
    border-bottom-right-radius: .3125rem !important;
  }
  .input-group-append-overlay, .input-group-prepend-overlay {
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 5;
  }
  .input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .625rem 1rem;
    margin-bottom: 0;
    font-size: .9375rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    background: #4b566b !important;
    text-align: center;
    white-space: nowrap;
    background-color: #fff;
    border: 1px solid #dae1e7;
    border-radius: .3125rem;
  }
  .input-RTL {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }
  .input-LTR {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }

  .input-group-append-overlay-RTL {
    left: 0;
  }
  .input-group-append-overlay-LTR {
    right: 0;
  }

/* ==========================================================================
   THEME 4: MODERN OVERRIDES (Added by AI) - UPDATED WITH CSS VARIABLES
   ========================================================================== */

/* 1. Typography & Global Reset */
body {
    font-family: var(--font-family-base);
    color: var(--color-gray-700);
    background-color: var(--color-gray-50);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-bold);
    color: var(--color-gray-900);
    letter-spacing: -0.025em;
}

a {
    transition: all var(--transition-fast);
}

/* 2. Modern Components */

/* Buttons - Updated with CSS Variables */
.btn, button, .btn-hover-black, .add-to-cart, .product-action a {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-weight: var(--font-weight-medium);
    text-transform: none;
    letter-spacing: normal;
    transition: all var(--transition-fast);
}

.btn-primary, .add-to-cart {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    border: none;
    color: white;
}

.btn-primary:hover, .add-to-cart:hover {
    background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Inputs - Updated with CSS Variables */
input[type="text"], input[type="email"], select, textarea, .form-control {
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gray-300);
    padding: var(--space-md) var(--space-lg);
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

input:focus, select:focus, textarea:focus, .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

/* 3. Layout Areas - Updated with CSS Variables */

/* Header */
.header-area {
    background: white;
    border-bottom: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-md);
}

.main-menu nav ul li a {
    font-weight: var(--font-weight-medium);
    color: var(--color-gray-600);
}

.main-menu nav ul li a:hover {
    color: var(--color-primary);
}

/* Footer */
.footer-area {
    background: linear-gradient(135deg, var(--color-gray-800), var(--color-gray-900));
    color: var(--color-gray-300);
}

.footer-area h4 {
    color: white;
}

.footer-area a {
    color: var(--color-gray-400);
}

.footer-area a:hover {
    color: white;
}

/* 4. Product Cards - Updated with CSS Variables */
.single-product {
    background: white;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: var(--space-xl);
}

.single-product:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.product-img {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
}

.product-content {
    padding: var(--space-lg) var(--space-xl);
}

.product-title h4 a {
    font-size: var(--font-size-lg);
    color: var(--color-gray-900);
    font-weight: var(--font-weight-semibold);
    transition: color var(--transition-fast);
}

.product-title h4 a:hover {
    color: var(--color-primary);
}

.product-price span {
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    font-size: var(--font-size-xl);
}

.product-price span.old {
    color: var(--color-gray-400);
    text-decoration: line-through;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
}

/* Badges - Updated with CSS Variables */
.badge {
    border-radius: var(--radius-full);
    padding: var(--space-xs) var(--space-md);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xs);
}

.badge-danger {
    background-color: var(--color-danger);
}

.badge-success {
    background-color: var(--color-success);
}

.badge-warning {
    background-color: var(--color-warning);
    color: white;
}

/* Modal / Quick View - Updated with CSS Variables */
.modal-content {
    border-radius: var(--radius-xl);
    border: none;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid var(--color-gray-200);
    background-color: var(--color-gray-50);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: var(--space-lg) var(--space-xl);
}

/* Cart - Updated with CSS Variables */
.cart-page-total ul li {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-gray-100);
}

.cart-page-total ul li:last-child {
    border-bottom: none;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    font-size: var(--font-size-xl);
}

/* Mobile Menu - Updated with CSS Variables */
.mobile-menu-area {
    background: white;
    border-top: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   THEME 4: COMPREHENSIVE MODERN OVERRIDES - PHASE 2
   ========================================================================== */

/* -------------------------------------------------------------------------- */
/* 1. HEADER & NAVIGATION */
/* -------------------------------------------------------------------------- */

.header-area {
    background: #ffffff;
    box-shadow: 0 4px 20px -5px rgba(0,0,0,0.05);
    border-bottom: none !important;
    position: relative;
    z-index: 1000;
}

.logo img {
    transition: transform 0.3s ease;
}
.logo:hover img {
    transform: scale(1.05);
}

/* Main Menu */
.main-menu nav ul li a {
    font-weight: 600 !important;
    font-size: 15px;
    padding: 25px 15px;
    text-transform: capitalize !important;
    color: #374151 !important;
    position: relative;
}

.main-menu nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #2563EB;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-menu nav ul li a:hover::after {
    width: 20px;
}

.main-menu nav ul li a:hover {
    color: #2563EB !important;
}

/* Icons & Actions */
.header-search-cart button {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #374151;
    font-size: 24px;
    position: relative;
}

.header-search-cart button:hover {
    color: #2563EB;
    transform: none !important;
}

.total-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--color-danger);
    color: #fff;
    font-size: clamp(10px, 2vw, 11px);
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff;
}

/* Search Bar Modernization */
.form-control {
    background: #F3F4F6 !important;
    border: 1px solid transparent !important;
    border-radius: 12px !important;
    padding-left: 20px !important;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: #ffffff !important;
    border-color: #2563EB !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1) !important;
}

.input-group-text {
    background: #2563EB !important;
    border: none !important;
    border-radius: 12px !important;
    color: white !important;
    padding: 0 20px !important;
}

/* -------------------------------------------------------------------------- */
/* 2. SLIDER & BANNERS */
/* -------------------------------------------------------------------------- */

#myCarousel .carousel-item {
    min-height: 600px;
}

#myCarousel .mask {
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
}

#myCarousel h4 {
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    font-weight: 800 !important;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem !important;
}

#myCarousel a {
    background: #2563EB !important;
    border-radius: 50px !important;
    padding: 15px 40px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

#myCarousel a:hover {
    background: transparent !important;
    border-color: #ffffff;
    color: #ffffff !important;
}

/* -------------------------------------------------------------------------- */
/* 3. PRODUCT CARDS (LISTS) */
/* -------------------------------------------------------------------------- */

.single-product {
    border: none !important;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
    border-radius: 20px !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.single-product:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.12);
}

.product-img img {
    border-radius: 20px 20px 0 0;
    transition: transform 0.5s ease;
}

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

.product-action {
    bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.product-action a {
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #374151;
    transition: all 0.2s ease;
}

.product-action a:hover {
    background: #2563EB;
    color: #ffffff;
    transform: scale(1.1);
}

.product-content {
    padding: 25px !important;
}

.product-title h4 a {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1F2937;
    transition: color 0.2s;
}

.product-title h4 a:hover {
    color: #2563EB;
}

/* Price Tag */
.product-price span.new {
    color: #2563EB;
    font-weight: 800;
    font-size: 1.2rem;
}

/* -------------------------------------------------------------------------- */
/* 4. PRODUCT DETAILS */
/* -------------------------------------------------------------------------- */

.product-details-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111827;
}

.details-price span.new {
    font-size: 2rem;
    color: #2563EB;
    font-weight: 800;
}

.product-details-content p {
    font-size: 1.1rem;
    color: #6B7280;
    line-height: 1.8;
    margin: 20px 0;
}

.quickview-btn-cart .add-to-cart {
    width: 100%;
    padding: 18px !important;
    font-size: 1.1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.quickview-btn-cart .btn-hover-black.success {
    background: var(--color-success) !important;
    border-color: var(--color-success) !important;
    width: 100%;
    border-radius: 12px !important;
    padding: 15px !important;
    font-weight: 600;
    color: white;
}

/* Gallery Thumbnails */
.preview-thumbnail.nav-tabs li a img {
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.preview-thumbnail.nav-tabs li a.active img {
    border-color: #2563EB;
}

/* -------------------------------------------------------------------------- */
/* 5. FOOTER */
/* -------------------------------------------------------------------------- */

.footer-area {
    background: #111827 !important;
    padding-top: 80px;
}

.footer-widget h4 {
    color: #ffffff !important;
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #2563EB;
    border-radius: 2px;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #9CA3AF !important;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    transition: all 0.2s;
}

.footer-widget ul li a:hover {
    color: #ffffff !important;
    padding-left: 5px;
}

/* -------------------------------------------------------------------------- */
/* 6. MOBILE OPTIMIZATIONS */
/* -------------------------------------------------------------------------- */

@media (max-width: 768px) {
    .header-area-2 {
        padding: 10px 0;
    }
    
    .mobile-menu-area {
        background: #ffffff;
        border-top: 1px solid #f3f4f6;
    }
    
    .carousel-item {
        min-height: 400px !important;
    }
    
    #myCarousel h4 {
        font-size: 2rem !important;
    }
    
    .product-details-content h3 {
        font-size: 1.8rem;
    }
    
    .quickview-btn-cart {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 15px;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
        z-index: 9999;
        display: flex;
        gap: 10px;
    }
    
    .quickview-btn-cart .add-to-cart,
    .quickview-btn-cart .btn-hover-black.success {
        margin: 0 !important;
        padding: 12px !important;
        font-size: 0.9rem !important;
    }
    
    .product-details {
        padding-bottom: 100px; /* Space for sticky button */
    }
}

/* Enhanced slider navigation for home products */
.home-slider-products .product-slider-modern .owl-nav button {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.home-slider-products .product-slider-modern .owl-nav button:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.home-slider-products .product-slider-modern .owl-nav button i {
    font-size: 1rem;
    color: #374151;
}

.home-slider-products .product-slider-modern .owl-nav button:hover i {
    color: #2563eb;
}

/* Progress bar improvements */
.home-slider-products .product-slider-modern .slider-progress {
    height: 3px;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.home-slider-products .product-slider-modern .slider-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Dot indicators optimization */
.home-slider-products .product-slider-modern .owl-dots {
    margin-top: 1.5rem;
}

.home-slider-products .product-slider-modern .owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.home-slider-products .product-slider-modern .owl-dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

.home-slider-products .product-slider-modern .owl-dot:hover {
    background: rgba(37, 99, 235, 0.6);
    transform: scale(1.1);
}

/* ==========================================================================
   MODERN COMPONENT STYLES - PHASE 3
   ========================================================================== */

/* Modern Product Cards */
.single-product {
    background: #ffffff;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-xl);
}

.single-product:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.product-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.product-img img {
    transition: transform var(--transition-slow) cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: auto;
}

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

.product-content {
    padding: var(--space-lg) var(--space-xl);
}

.product-title h4 a {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-gray-900);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.product-title h4 a:hover {
    color: var(--color-primary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.product-price span {
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    font-size: var(--font-size-xl);
}

.product-price span.old {
    color: var(--color-gray-400);
    text-decoration: line-through;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
}

/* Modern Buttons */
.btn, button, .btn-hover-black, .add-to-cart, .product-action a {
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
    padding: var(--space-md) var(--space-lg);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.btn-primary, .add-to-cart {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover, .add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-gray-300);
    color: var(--color-gray-700);
}

.btn-secondary:hover {
    background: var(--color-gray-100);
    border-color: var(--color-gray-400);
    transform: translateY(-1px);
}

/* Enhanced Product Badge */
.product-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: linear-gradient(135deg, var(--color-warning), #D97706);
    color: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
    z-index: var(--z-tooltip);
    animation: pulse 2s infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 28px;
    line-height: 1;
}

/* Badge position for card layouts */
.card .product-badge {
    top: 15px;
    left: 15px;
    font-size: 0.8rem;
    padding: 4px 8px;
    min-width: 45px;
    height: 24px;
}

/* Enhanced badge visibility */
.product-badge {
    font-family: var(--font-family-base);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Badge pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 71, 87, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
    }
}

/* Badge hover effect */
.single-product:hover .product-badge {
    transform: scale(1.05);
    transition: transform var(--transition-fast);
}

/* RTL Support for badges */
.product-badge.RTL {
    left: auto;
    right: var(--space-md);
}

.card .product-badge.RTL {
    left: auto;
    right: 15px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Modern Badges */
.badge {
    border-radius: var(--radius-full);
    padding: var(--space-xs) var(--space-md);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-danger {
    background-color: var(--color-danger);
    color: white;
}

.badge-success {
    background-color: var(--color-success);
    color: white;
}

.badge-warning {
    background-color: var(--color-warning);
    color: white;
}

/* Modern Modal */
.modal-content {
    border-radius: var(--radius-xl);
    border: none;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid var(--color-gray-200);
    background-color: var(--color-gray-50);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: var(--space-lg) var(--space-xl);
}

/* Modern Header */
.header-area {
    background: white;
    box-shadow: var(--shadow-md);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    backdrop-filter: blur(10px);
}

/* Modern Footer */
.footer-area {
    background: linear-gradient(135deg, var(--color-gray-800), var(--color-gray-900));
    color: var(--color-gray-300);
    padding: var(--space-3xl) 0 var(--space-2xl);
}

.footer-widget h4 {
    color: white;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-lg);
    position: relative;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

.footer-widget ul li a {
    color: var(--color-gray-400);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.footer-widget ul li a:hover {
    color: white;
    padding-left: var(--space-sm);
}

/* Enhanced Navigation */
.main-menu nav ul li a {
    font-weight: var(--font-weight-medium);
    color: var(--color-gray-700);
    padding: var(--space-lg) var(--space-md);
    position: relative;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.main-menu nav ul li a::after {
    content: '';
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
    border-radius: 1px;
}

.main-menu nav ul li a:hover::after {
    width: 60%;
}

.main-menu nav ul li a:hover {
    color: var(--color-primary);
}

/* Modern Form Elements */
.form-control, input[type="text"], input[type="email"], select, textarea {
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gray-300);
    padding: var(--space-md) var(--space-lg);
    background-color: white;
    transition: all var(--transition-fast);
    font-family: var(--font-family-base);
}

.form-control:focus, input:focus, select:focus, textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

/* Modern Cart */
.cart-page-total {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: var(--space-xl);
    border: 1px solid var(--color-gray-200);
}

.cart-page-total ul li {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-gray-100);
}

.cart-page-total ul li:last-child {
    border-bottom: none;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    font-size: var(--font-size-xl);
}

/* Modern Mobile Menu */
@media (max-width: 768px) {
    .mobile-menu-area {
        background: white;
        border-top: 1px solid var(--color-gray-200);
        box-shadow: var(--shadow-lg);
    }
    
    .carousel-item {
        min-height: 400px;
    }
    
    #myCarousel h4 {
        font-size: var(--font-size-2xl);
    }
    
    .product-details-content h3 {
        font-size: var(--font-size-2xl);
    }
    
    .quickview-btn-cart {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: var(--space-md);
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        z-index: var(--z-fixed);
        display: flex;
        gap: var(--space-sm);
    }
    
    .quickview-btn-cart .add-to-cart,
    .quickview-btn-cart .btn-hover-black.success {
        margin: 0;
        padding: var(--space-md);
        font-size: var(--font-size-sm);
        flex: 1;
    }
    
    .product-details {
        padding-bottom: 100px;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Modern Modal Styles */
.modal-modern {
    backdrop-filter: blur(10px);
}

.modal-modern .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-modern .modal-header {
    border: none;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.modal-modern .modal-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #1e293b;
}

.modal-modern .close {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #64748b;
    font-size: 1.5rem;
    line-height: 1;
}

.modal-modern .close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: rotate(90deg);
}

.modal-modern .modal-body {
    padding: 0;
}

.modal-product-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.modal-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.modal-product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modal-product-title {
    font-size: clamp(1.4rem, 4vw, 1.75rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.modal-product-category {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.modal-product-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.modal-product-stock.in-stock {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.modal-product-stock.out-stock {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.modal-product-stock::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.modal-product-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.modal-product-price-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 15px;
}

.modal-product-price-current {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 700;
    color: #2563eb;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-product-price-old {
    font-size: 1.25rem;
    color: #94a3b8;
    text-decoration: line-through;
    opacity: 0.8;
}

.modal-product-price-discount {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.modal-product-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.modal-btn-add-cart {
    flex: 1;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.modal-btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.modal-btn-details {
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: #475569;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-btn-details:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Modal */
@media (max-width: 992px) {
    .modal-modern .modal-lg {
        max-width: 95%;
        margin: 1rem;
    }
    
    .modal-product-info {
        padding: 1.5rem;
    }
    
    .modal-product-title {
        font-size: 1.5rem;
    }
    
    .modal-product-price-current {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .modal-modern .modal-content {
        border-radius: 15px;
    }
    
    .modal-product-info {
        padding: 1rem;
    }
    
    .modal-product-price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .modal-product-actions {
        flex-direction: column;
    }
    
    .modal-btn-add-cart,
    .modal-btn-details {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .modal-modern .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-product-info {
        padding: 1.5rem 1rem;
    }
    
    .modal-product-title {
        font-size: 1.25rem;
    }
    
    .modal-product-price-current {
        font-size: 1.5rem;
    }
}

/* Support for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .product-card-modern,
    .product-card-modern .product-image,
    .product-card-modern .product-badge,
    .product-card-modern .product-overlay,
    .product-card-modern .product-overlay .btn-overlay,
    .product-card-modern .product-add-cart,
    .product-card-modern .product-category,
    .product-card-modern .product-title a {
        transition: none !important;
        animation: none !important;
    }
    
    .product-badge {
        animation: none !important;
    }
}

/* Modern Product Slider Styles */
.product-slider-modern {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
    border-radius: 20px;
    margin: 2rem 0;
    padding: 2rem 0;
}

.product-slider-modern .container {
    position: relative;
    z-index: 1;
}

.product-slider-modern .owl-carousel {
    position: relative;
    z-index: 2;
}

.product-slider-modern .slider-wrapper {
    position: relative;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.product-slider-modern .section-title {
    position: relative;
    margin-bottom: 3rem !important;
}

.product-slider-modern .section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.product-slider-modern .section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 2px;
    animation: titleUnderline 1s ease-out;
}

@keyframes titleUnderline {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* Modern Product Card - Enhanced */
.product-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 0 0.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Compact Product Card for Home Slider */
.product-card-compact {
    border-radius: 16px;
    margin: 0 0.25rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

/* Enhanced badge for modern cards */
.product-card-modern .product-badge {
    top: 15px;
    right: 15px;
    left: auto;
    background: linear-gradient(135deg, var(--color-warning), #D97706);
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 50px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-modern .product-badge.RTL {
    right: auto;
    left: 15px;
}

.product-card-modern .product-badge .badge-content {
    line-height: 1;
    padding: 0;
}

.product-card-modern:hover .product-badge {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.6);
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card-modern .product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    aspect-ratio: 4/3;
    border-radius: 15px 15px 0 0;
}

.product-card-modern .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.product-card-modern .product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-modern:hover .product-image-wrapper img {
    transform: scale(1.1);
}

/* Enhanced hover effects */
.product-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(29, 78, 216, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 20px;
    pointer-events: none;
}

.product-card-modern:hover::before {
    opacity: 1;
}

.product-card-modern .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(29, 78, 216, 0.9));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 2;
    border-radius: 15px 15px 0 0;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.product-card-modern .product-overlay .btn-overlay {
    background: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    cursor: pointer;
    text-decoration: none;
}

.product-card-modern:hover .product-overlay .btn-overlay {
    transform: translateY(0);
    opacity: 1;
}

.product-card-modern .product-overlay .btn-overlay:nth-child(1) {
    transition-delay: 0.1s;
}

.product-card-modern .product-overlay .btn-overlay:nth-child(2) {
    transition-delay: 0.2s;
}

.product-card-modern .product-overlay .btn-overlay:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.product-card-modern .product-overlay .btn-overlay:hover i {
    color: white;
}

.product-card-modern .product-overlay .btn-overlay i {
    font-size: 1.2rem;
    color: #2563eb;
    transition: color 0.3s ease;
}

.product-card-modern .product-content {
    padding: 1.5rem;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-modern .product-category {
    display: inline-block;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #64748b;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.product-card-modern:hover .product-category {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.product-card-modern .product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    transition: color 0.3s ease;
    flex: 1;
}

.product-card-modern .product-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.product-card-modern .product-title a:hover {
    color: #2563eb;
}

.product-card-modern .product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card-modern:hover .product-title a {
    color: #2563eb;
}

.product-card-modern .product-price-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.product-card-modern .product-price-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card-modern .product-price-old {
    font-size: 1rem;
    color: #94a3b8;
    text-decoration: line-through;
    opacity: 0.8;
}

.product-card-modern .product-add-cart {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-top: auto;
}

.product-card-modern .product-add-cart:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.product-card-modern .product-add-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.product-card-modern:hover .product-add-cart::before {
    left: 100%;
}

.product-card-modern .product-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Modern Owl Carousel Navigation */
.product-slider-modern .owl-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-40%);
    width: calc(100% - 2rem);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    left: 1rem;
    right: 1rem;
}

.product-slider-modern .owl-nav button {
    position: relative;
    background: white !important;
    border: none !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: all;
    margin: 0 1rem !important;
}

.product-slider-modern .owl-nav button:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.3) !important;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover)) !important;
}

.product-slider-modern .owl-nav button:hover i {
    color: white !important;
}

.product-slider-modern .owl-nav button i {
    font-size: 1.2rem !important;
    color: var(--color-primary) !important;
    transition: color 0.3s ease !important;
}

.product-slider-modern .owl-nav button.disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
}

.product-slider-modern .owl-nav button.disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    background: white !important;
}

/* Modern Dots Navigation */
.product-slider-modern .owl-dots {
    position: relative;
    display: flex !important;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem !important;
    padding-top: 1rem;
}

.product-slider-modern .owl-dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: rgba(37, 99, 235, 0.3) !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.product-slider-modern .owl-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.product-slider-modern .owl-dot:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.product-slider-modern .owl-dot:hover {
    transform: scale(1.2);
}

.product-slider-modern .owl-dot.active {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.product-slider-modern .owl-dot.active::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Progress Bar Indicator */
.product-slider-modern .slider-progress {
    position: relative;
    width: 100%;
    height: 2px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 1px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.product-slider-modern .slider-progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    width: 0;
    border-radius: 1px;
    transition: width 0.1s ease;
    animation: progressBar 5s linear infinite;
}

@keyframes progressBar {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Navigation Hover Effects */
.product-slider-modern .owl-nav button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.product-slider-modern .owl-nav button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* RTL Support for Navigation */
.product-slider-modern.RTL .owl-nav {
    flex-direction: row-reverse;
}

.product-slider-modern.RTL .owl-nav button:first-child {
    margin-right: 1rem !important;
    margin-left: 0 !important;
}

.product-slider-modern.RTL .owl-nav button:last-child {
    margin-left: 1rem !important;
    margin-right: 0 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-slider-modern .owl-nav button {
        width: 40px !important;
        height: 40px !important;
        margin: 0 0.5rem !important;
    }
    
    .product-card-modern .product-content {
        padding: 1.25rem;
    }
    
    .product-card-modern .product-title {
        font-size: 1rem;
    }
    
    .product-card-modern .product-price-current {
        font-size: 1.1rem;
    }
    
    .product-slider-modern .owl-dots {
        bottom: -40px;
        gap: 0.5rem;
    }
    
    .product-slider-modern .owl-dot {
        width: 10px !important;
        height: 10px !important;
    }
    
    .product-slider-modern .slider-progress {
        bottom: -25px;
    }
}

@media (max-width: 576px) {
    .product-slider-modern .section-title h2 {
        font-size: 1.5rem;
    }
    
    .product-slider-modern .section-title {
        margin-bottom: 2rem !important;
    }
    
    .product-card-modern {
        margin: 0 0.5rem;
    }
    
    .product-card-modern .product-overlay .btn-overlay {
        width: 40px;
        height: 40px;
    }
    
    .product-card-modern .product-overlay .btn-overlay i {
        font-size: 1rem;
    }
    
    .product-card-modern .product-content {
        padding: 1rem;
    }
    
    .product-card-modern .product-category {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .product-card-modern .product-title {
        font-size: 0.9rem;
        height: 2.5em;
    }
    
    .product-card-modern .product-price-current {
        font-size: 1rem;
    }
    
    .product-card-modern .product-price-old {
        font-size: 0.9rem;
    }
    
    .product-card-modern .product-add-cart {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .product-slider-modern .owl-nav {
        display: none !important;
    }
    
    .product-slider-modern .owl-dots {
        bottom: -30px;
    }
    
    .product-slider-modern .slider-progress {
        bottom: -20px;
    }
}

@media (max-width: 400px) {
    .product-card-modern {
        margin: 0 0.25rem;
        border-radius: 15px;
    }
    
    .product-card-modern .product-image-wrapper {
        border-radius: 15px 15px 0 0;
    }
    
    .product-card-modern .product-overlay {
        gap: 0.5rem;
        border-radius: 15px 15px 0 0;
    }
    
    .product-card-modern .product-overlay .btn-overlay {
        width: 40px;
        height: 40px;
    }
    
    .product-card-modern .product-overlay .btn-overlay i {
        font-size: 1rem;
    }
    
    .product-card-modern .product-badge {
        top: 10px;
        right: 10px;
        min-width: 45px;
        height: 24px;
        font-size: 0.75rem;
    }
    
    .product-card-modern .product-badge.RTL {
        right: auto;
        left: 10px;
    }
    
    .product-card-modern .product-content {
        padding: 1rem;
    }
}

/* Compact Product Card Styles */
.product-card-compact {
    border-radius: 16px;
    margin: 0 0.25rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.product-card-compact .product-image-wrapper {
    height: 200px;
}

.product-card-compact .product-badge {
    top: 12px;
    right: 12px;
    min-width: 45px;
    height: 24px;
    font-size: 0.75rem;
    padding: 3px 6px;
    border-radius: 16px;
    box-shadow: 0 3px 8px rgba(255, 71, 87, 0.3);
}

.product-card-compact .product-badge.RTL {
    right: auto;
    left: 12px;
}

.product-card-compact .product-content {
    padding: 1.25rem;
    gap: 0.5rem;
}

.product-card-compact .product-category {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.3px;
}

.product-card-compact .product-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    height: 2.2em;
    line-height: 1.3;
}

.product-card-compact .product-price-section {
    margin-bottom: 0.75rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-card-compact .product-price-current {
    font-size: 1.1rem;
}

.product-card-compact .product-price-old {
    font-size: 0.9rem;
}

/* Home Page Product Slider Optimizations */
.home-slider-products .product-slider-modern .owl-carousel {
    margin: 0 -5px;
}

.home-slider-products .product-card-compact {
    margin: 0 5px;
}

.home-slider-products .product-slider-modern .owl-stage {
    padding: 10px 0;
}

.home-slider-products .product-slider-modern .owl-item {
    padding: 0 5px;
}

.home-slider-products .product-card-compact .product-image-wrapper {
    height: 180px;
}

.home-slider-products .product-card-compact .product-content {
    padding: 1rem;
}

.home-slider-products .product-card-compact .product-title {
    font-size: 0.95rem;
    height: 2em;
}

.home-slider-products .product-card-compact .product-price-current {
    font-size: 1rem;
}

.home-slider-products .product-card-compact .product-add-cart {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
}

/* Final optimizations for product card layout */
.product-card-compact .product-content {
    padding: 1rem;
    gap: 0.4rem;
    min-height: 170px;
}

.product-card-compact .product-header {
    margin-bottom: 0.4rem;
}

.product-card-compact .product-category {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
    margin-bottom: 0.3rem;
    border-radius: 12px;
}

.product-card-compact .product-title h4 {
    font-size: 0.95rem;
    line-height: 1.25;
    margin: 0;
}

.product-card-compact .product-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card-compact .product-price-section {
    margin-bottom: 0.6rem;
    gap: 0.4rem;
}

.product-card-compact .product-price-current {
    font-size: 1rem;
    font-weight: 700;
}

.product-card-compact .product-price-old {
    font-size: 0.85rem;
}

.product-card-compact .product-add-cart {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 8px;
    gap: 0.3rem;
}

.product-card-compact .product-add-cart i {
    font-size: 0.9rem;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .product-card-compact .product-image-wrapper {
        height: 160px;
    }
    
    .product-card-compact .product-content {
        padding: 0.875rem;
        min-height: 160px;
    }
    
    .product-card-compact .product-title h4 {
        font-size: 0.875rem;
    }
    
    .product-card-compact .product-price-current {
        font-size: 0.95rem;
    }
    
    .product-card-compact .product-add-cart {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* Ultra compact for small screens */
@media (max-width: 480px) {
    .product-card-compact .product-image-wrapper {
        height: 140px;
    }
    
    .product-card-compact .product-content {
        padding: 0.75rem;
        min-height: 150px;
    }
    
    .product-card-compact .product-badge {
        top: 8px;
        right: 8px;
        min-width: 40px;
        height: 20px;
        font-size: 0.7rem;
        padding: 2px 5px;
        border-radius: 10px;
    }
    
    .product-card-compact .product-category {
        font-size: 0.6rem;
        padding: 0.15rem 0.35rem;
    }
    
    .product-card-compact .product-title h4 {
        font-size: 0.8rem;
    }
}

/* Product Header Layout */
.product-card-compact .product-header {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.product-card-compact .product-category {
    align-self: flex-start;
    order: 0;
}

.product-card-compact .product-title {
    order: 1;
    margin-bottom: 0;
}

/* Price section optimization */
.product-card-compact .product-price-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

/* Compact overlay buttons */
.product-card-compact .product-overlay {
    gap: 0.5rem;
}

.product-card-compact .product-overlay .btn-overlay {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
}

.product-card-compact .product-overlay .btn-overlay i {
    font-size: 0.8rem;
}

/* Optimized spacing for home slider */
.home-slider-products .product-slider-modern {
    padding: 0;
}

.home-slider-products .product-slider-modern .container {
    padding: 0 15px;
}

.home-slider-products .product-slider-modern .section-title {
    margin-bottom: 2rem;
}

.home-slider-products .product-slider-modern .section-title h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.home-slider-products .product-slider-modern .section-title h2::after {
    bottom: -10px;
}

.home-slider-products .product-slider-modern .slider-wrapper {
    margin: 0 -10px;
}

.home-slider-products .product-slider-modern .owl-nav {
    margin-top: 1.5rem;
}

.home-slider-products .product-slider-modern .owl-dots {
    margin-top: 1rem;
}

/* Enhanced product card layout */
.product-card-compact .product-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.product-card-compact .product-title {
    order: 1;
}

.product-card-compact .product-category {
    order: 0;
}

.product-card-compact .product-price-section {
    order: 2;
}

.product-card-compact .product-add-cart {
    order: 3;
}

/* Better badge positioning */
.product-card-compact .product-badge {
    position: absolute;
    z-index: 10;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
    backdrop-filter: blur(4px);
}

.product-card-compact:hover .product-badge {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.5);
}

.product-card-compact .product-add-cart {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    border-radius: 10px;
    gap: 0.4rem;
    margin-top: auto;
}

.product-card-compact .product-overlay .btn-overlay {
    width: 36px;
    height: 36px;
}

.product-card-compact .product-overlay .btn-overlay i {
    font-size: 0.9rem;
}

.product-card-compact .product-badge.RTL {
    right: auto;
    left: 12px;
}

.product-card-compact .product-content {
    padding: 1.25rem;
}

.product-card-compact .product-category {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    margin-bottom: 0.5rem;
}

.product-card-compact .product-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    height: 2.4em;
}

.product-card-compact .product-price-section {
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.product-card-compact .product-price-current {
    font-size: 1.1rem;
}

.product-card-compact .product-price-old {
    font-size: 0.9rem;
}

.product-card-compact .product-add-cart {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    border-radius: 10px;
}

.product-card-compact .product-overlay .btn-overlay {
    width: 36px;
    height: 36px;
}

.product-card-compact .product-overlay .btn-overlay i {
    font-size: 0.9rem;
}

/* Enhanced Hover Effects */
.product-card-modern .product-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(29, 78, 216, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card-modern:hover .product-image-wrapper::before {
    opacity: 1;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.product-card-modern.loading .product-image-wrapper {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Accessibility Improvements */
.product-card-modern:focus-within {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.product-card-modern .product-overlay .btn:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .product-card-modern,
    .product-card-modern:hover,
    .product-card-modern .product-image-wrapper img,
    .product-card-modern .product-overlay .btn,
    .product-slider-modern .owl-nav button,
    .product-slider-modern .owl-dot {
        transition: none !important;
        animation: none !important;
    }
    
    .product-slider-modern .slider-progress-bar {
        animation: none !important;
    }
}

/* Fix for fixed header overlap */
.wrapper {
    padding-top: 120px;
    display: block;
    position: relative;
}
@media (max-width: 991px) {
    .wrapper {
        padding-top: 100px;
    }
}
@media (max-width: 767px) {
    .wrapper {
        padding-top: 80px;
    }
}
