/* Mobile Menu Column Layout */
.d-block.d-md-none .menu-main-wrapper .menu-wrap-inside {
  display: flex !important;
  flex-direction: column !important;
}

.d-block.d-md-none .menu-main-wrapper .menu_element {
  display: block !important;
  width: 100% !important;
}

.d-block.d-md-none .menu-main-wrapper .menu_element > a {
  display: flex !important; /* Use flexbox for alignment */
  align-items: center !important; /* Vertically center text and icon */
  justify-content: space-between !important; /* Space between text and indicator */
  padding: 12px 20px !important; /* Consistent padding */
  color: #000 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  border-bottom: 1px solid #eee !important; /* Separator */
  position: relative !important; /* Ensure proper positioning context */
}

.d-block.d-md-none .menu-main-wrapper .menu_element.have-submenu > a::after {
  content: '▼' !important; /* Dropdown indicator */
  font-size: 10px !important;
  margin-left: 6px !important; /* Space before indicator */
  transition: transform 0.3s ease !important;
  display: flex !important; /* Ensure indicator is treated as a flex item */
  align-items: center !important; /* Vertically center the indicator */
}

.d-block.d-md-none .menu-main-wrapper .menu_element.have-submenu.active > a::after {
  transform: rotate(180deg) !important;
}

.d-block.d-md-none .menu-main-wrapper .menu_element > ul {
  display: none !important;
  padding-left: 20px !important; /* Indent submenus */
  background: #f8f8f8 !important;
}

.d-block.d-md-none .menu-main-wrapper .menu_element.active > ul {
  display: block !important;
}

.d-block.d-md-none .menu-main-wrapper .menu_element > ul > li > a {
  display: block !important;
  padding: 8px 20px !important;
  color: #000 !important;
  text-decoration: none !important;
  transition: background 0.3s ease !important;
}

.d-block.d-md-none .menu-main-wrapper .menu_element > ul > li:hover {
  background: #e5e5e5 !important;
}
/* Base menu item */

.motiqo-desktop-header .menu_element {
  position: relative !important;
  list-style: none !important;
}

/* Dropdown icon */
.motiqo-desktop-header .menu_element.have-submenu > a::after {
  content: '▼' !important;
  font-size: 10px !important;
  margin-left: 6px !important;
  transition: transform 0.3s ease !important;
}

/* Rotate icon on hover */
.motiqo-desktop-header .menu_element.have-submenu:hover > a::after {
  transform: rotate(180deg) !important;
}

/* Dropdown menu */
.motiqo-desktop-header .menu_element > ul {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background: white !important;
  min-width: 180px !important;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1) !important;
  border-radius: 8px !important;
  padding: 10px 0 !important;
  z-index: 999 !important;
}

/* Show dropdown on hover */
.motiqo-desktop-header .menu_element:hover > ul {
  display: block !important;
}

/* Dropdown items */
.motiqo-desktop-header .menu_element > ul > li {
  padding: 2px 20px !important;
  
}

.motiqo-desktop-header .menu_element > ul > li> a {
   color:black !important;
  text-decoration: none !important;
  display: block !important;
  transition: background 0.3s ease !important;
}

/* Hover effect on dropdown */
.motiqo-desktop-header .menu_element > ul > li:hover {
  background: #f1f1f1 !important;
}

/* Top-level menu links */
.motiqo-desktop-header .menu_element_link {
  padding: 10px 15px !important;
  display: inline-block !important;
  color: #fff !important;  font-size:8px !important;
    font-size:15px !important;
  text-decoration: none !important;
}
/*end header css */




.footer-menu-main .module-navigation-default>ul>li>a
 {
     color: #fff !important;
}

.footer-menu-main .module-navigation-default>ul>li>a:hover
 {
     color: #c09748 !important;
}

.mw-ui-box {
  background-color: transparent !important;
  box-shadow: none !important;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding:40px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid   #C09748 !important;

}

.feature-box:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  background-color: #fefefe;
}

.feature-icon {
  background-color: #C09748;
  color: #fff;
  font-size: 18px !important;
  width: 48px;
  height: 48px;
  line-height: 48px !important;
  text-align: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
}

.feature-text {
  margin: 0;
  color: #333;
  font-size: 15px;
}

@media (max-width: 767px) {
  .scroll-x-container {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .scroll-x-container .col-12 {
    display: inline-block;
    float: none;
    width: 80%;
    margin-right: 10px;
    vertical-align: top;
  }
}


/* Make category images circular */
 .image-category img {
  border-radius: 20px;
  object-fit: cover;
  width: 200px !important;
  height: 183px !important;
}
.category-title{
text-align:center;
  font-weight:600;
}

/*custom field css*/
.custom-control-label .price-modifier{
display:none;
}
.custom-radio {
  display: inline-block;
  margin: -5px;
  cursor: pointer;
}

.custom-radio input[type="radio"] {
  display: none; /* Hide the default radio button */
}

.custom-radio label {
  display: inline-block;
  padding: 10px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size:14px;
  text-align:center;
}
.custom-radio label:hover {
  border-color:#000;
}
.custom-radio input[type="radio"]:checked + label {
  border-color: #000;
  color: #000;
}

.product-info h1{
font-size:28px;
}
/*end custom field css */

/*shop products skin-2 css */

.shop-products-skin-2 {
  padding: 5px;
  margin-bottom: 5px !important;
}

.shop-products-skin-2 .product {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.shop-products-skin-2 .img-as-background {
  height: 315px !important;
}

.shop-products-skin-2 .product:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.shop-products-skin-2 .img-as-background img {
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  border-radius: 8px 8px 0 0;
}

.shop-products-skin-2 h6 {
  font-weight: 600;
  color: #000;
  font-size: 1rem;
}

.shop-products-skin-2 .price-holder .price-old {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
  font-size: 0.9rem;
}

.shop-products-skin-2 .price-holder .price {
  color: #000;
  font-weight: 600;
  font-size: 1rem;
}

.shop-products-skin-2 .content {
  padding: 0px !important;
}

.shop-products-skin-2-btn .btn {
  border-color:#c09748 !important;
  width: 80%;
  text-transform: capitalize;
  color: #c09748 !important;
  font-weight: 500 !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  transition: background 0.3s ease !important;
  transition: 0.3s ease-in-out;
  margin-bottom: 15px;
}

.shop-products-skin-2-btn .btn:hover {
  color: #fff !important;
}

@media (max-width: 767px) {
  .shop-products-skin-2 .mw-layout-product-stock {
    padding: 5px;
  }

  .shop-products-skin-2 .img-as-background {
    height: 168px !important;
  }

  .shop-products-skin-2 h6 {
    font-size: 14px !important;
  }

  .shop-products-skin-2-btn .btn {
    font-size: 14px;
    padding: 5px 10px !important;
  }

  .shop-products-skin-2 .price-holder .price {
    font-size: 14px;
  }
}


/*shop products skin-2 css */
/*shop page btn*/
.modal-backdrop.show {
    display: none;
}

.btn.btn-primary, .btn:not(.btn-secondary):not(.btn-outline):not(.btn-link){
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 22px;
}

  .btn-secondary{
      font-size: 14px !important;
      padding: 7px 15px !important;
      border-radius: 22px !important;
  }

/*checkout page */
.checkout-v2-logo{
width:5% !important;

}

/* Mobile view (up to 767px width) */
@media (max-width: 767px) {
  .checkout-v2-logo {
    width: 15% !important;  /* adjust size for smaller screens */
  }
}