 .scroll-container {
    overflow: hidden;
    width: 100%;
    background: #fff;
    position: relative;
 }

 .auto-scroll {
    display: inline-flex;
    animation: scroll-left 0s linear infinite;
 }

 .scroll-container:hover .auto-scroll {
    animation-play-state: paused; 
 }

 .nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 30px;
    font-size: 13px;
 }

 .nav-item img {
    height: 40px;
    margin-bottom: 5px;
 }

 .has-dropdown:hover .dropdown {
    display: block;
 }

 .dropdown {
    display: none;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 120px;
    z-index: 1000;
 }

 .dropdown a {
    display: block;
    padding: 8px;
    color: #333;
    text-decoration: none;
 }

 .dropdown a:hover {
    background-color: #f5f5f5;
 }

 @keyframes scroll-left {
    0% {
     transform: translateX(0);
  }
  100% {
     transform: translateX(-50%);
  }
}
.top-nav {
 background-color: #fff;
 box-shadow: 0 2px 8px rgba(0,0,0,0.08);
 padding: 8px 17px;
 position: relative;
 z-index: 999;
 top: 10px;
}
.top-nav img{
  border: 2px solid #3e2926;
  border-radius: 50%;
}


.nav-menu::-webkit-scrollbar {
 display: none;          
}
.nav-item {
 flex: 0 0 auto;          
 text-align: center;
 width: 90px;            
}


.nav-item .title {
 white-space: nowrap;      
 overflow: hidden;
 text-overflow: ellipsis;  
 max-width: 80px;
}

.nav-menu {
 display: flex;
 flex-wrap: now-wrap;      
 list-style: none;
 justify-content: flex-start;
 gap: 0px !important;
}

.nav-item {
 flex: 0 1 auto;         
 text-align: center;
}

.nav-item a {
 text-decoration: none;
 color: #333;
 display: flex;
 flex-direction: column;
 align-items: center;
 font-size: 13px;
}

.nav-item img {
 height: 40px;
 margin-bottom: 6px;
}

.nav-item .title {
 font-weight: 500;
}

.has-dropdown {
 position: relative;
}

.has-dropdown:hover .dropdown {
 display: flex;
}
.dropdown {
 display: none;
 position: absolute;
 top: 100%;
 left: 0;
 background: #fff;
 padding: 20px;
 box-shadow: 0 4px 20px rgba(0,0,0,0.1);
 border-top: 2px solid #3e2926;
 z-index: 1000;
 min-width: 300px;
 flex-wrap: wrap;
}

.dropdown-section {
 margin-right: 40px;
}

.dropdown-section h4 {
 font-size: 14px;
 color: #3e2926;
 margin-bottom: 10px;
}

.dropdown-section a {
 display: block;
 padding: 5px 0;
 color: #333;
 font-size: 13px;
 text-decoration: none;
}

.dropdown-section a:hover {
 color: #3e2926;
}

/* Badge */
.icon-badge {
 position: relative;
}

.badge {
 position: absolute;
 top: -6px;
 right: -8px;
 background-color: #f00;
 color: #fff;
 font-size: 9px;
 padding: 2px 4px;
 border-radius: 3px;
}



:root {
   --primary-color: #3e2926;
   --secondary-color: #f8f9fa;
   --text-color: #333;
   --light-text: #777;
   --border-color: #eee;
   --success-color: #28a745;
   --shadow: 0 2px 10px rgba(0,0,0,0.08);
   --transition: all 0.3s ease;
}

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
   color: var(--text-color);
   background-color: #f5f5f5;
   overflow-x: hidden;
}

a {
   text-decoration: none;
   color: inherit;
}

ul {
   list-style: none;
}

.container {
 margin: 0 auto;
 padding: 0 15px;
 width: 100%;
 box-sizing: border-box;
}

.ec-main-content-wrapper {
 display: flex;
 margin: 20px 0;
 gap: 20px;
 width: 100%;
 box-sizing: border-box;
}

.ec-main-content {
 flex: 1;
 min-width: 0; /* Prevents flex item from overflowing */
}

/* Header Styles */
.ec-header {
   background: #fff;
   box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   position: sticky;
   top: 0;
   z-index: 1000;
}

.ec-header-top {
   background: #f8f8f8;
   padding: 8px 0;
   font-size: 13px;
}

.ec-header-top-content {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.ec-header-top-links a {
   margin-right: 15px;
   color: var(--light-text);
   transition: var(--transition);
}

.ec-header-top-links a:hover {
   color: var(--primary-color);
}

.ec-header-main {
   padding: 10px 12px;
}

.ec-header-content {
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.ec-logo img {
   height: 40px;
}

.ec-search-bar {
   flex: 1;
   max-width: 600px;
   margin: 0 20px;
   position: relative;
}

.ec-search-form {
   display: flex;
   width: 100%;
}

.ec-search-input {
   flex: 1;
   padding: 12px 15px;
   border: 1px solid var(--border-color);
   border-radius: 4px 0 0 4px;
   outline: none;
   font-size: 15px;
}

.ec-search-category {
   width: 140px;
   padding: 0 15px;
   border: 1px solid var(--border-color);
   border-right: none;
   border-left: none;
   background: #f8f8f8;
   appearance: none;
   background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
   background-repeat: no-repeat;
   background-position: right 10px center;
   background-size: 16px;
   cursor: pointer;
}

.ec-search-btn {
   padding: 0 20px;
   background: var(--primary-color);
   color: white;
   border: none;
   border-radius: 0 4px 4px 0;
   cursor: pointer;
   transition: var(--transition);
}

.ec-search-btn:hover {
   background: #3e2926;
}

.ec-header-icons {
   display: flex;
   align-items: center;
}

.ec-header-icon {
   position: relative;
   margin-left: 20px;
   display: flex;
   flex-direction: column;
   align-items: center;
   font-size: 13px;
   color: var(--text-color);
   transition: var(--transition);
}

.ec-header-icon i {
   font-size: 22px;
   margin-bottom: 4px;
}

.ec-header-icon:hover {
   color: var(--primary-color);
}

.ec-cart-count {
   position: absolute;
   top: -8px;
   right: -8px;
   background: var(--primary-color);
   color: white;
   font-size: 11px;
   width: 18px;
   height: 18px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
}

/* Navigation */
.ec-navigation {
   background: var(--primary-color);
}

.ec-nav-container {
   display: flex;
   align-items: center;
}

.ec-category-toggle {
   display: flex;
   align-items: center;
   padding: 12px 15px;
   background: #3e2926;
   color: white;
   cursor: pointer;
   font-weight: 500;
   width: 250px;
}

.ec-category-toggle i {
   margin-right: 10px;
   font-size: 18px;
}

.ec-nav-menu {
   display: flex;
   margin-left: 30px;
}

.ec-nav-item {
   position: relative;
}

.ec-nav-link {
   display: block;
   padding: 12px 15px;
   color: white;
   font-weight: 500;
   transition: var(--transition);
}

.ec-nav-link:hover {
   background: rgba(255,255,255,0.1);
}

.ec-nav-item:hover .ec-mega-menu {
   display: block;
}

.ec-mega-menu {
   display: none;
   position: absolute;
   top: 100%;
   left: 0;
   width: 100%;
   min-width: 200px;
   background: white;
   box-shadow: var(--shadow);
   z-index: 100;
   border-radius: 0 0 4px 4px;
   overflow: hidden;
}

.ec-mega-menu-content {
   padding: 15px;
}

.ec-mega-menu-title {
   font-weight: 600;
   margin-bottom: 10px;
   padding-bottom: 8px;
   border-bottom: 1px solid var(--border-color);
}

.ec-mega-menu-link {
   display: block;
   padding: 8px 0;
   color: var(--text-color);
   transition: var(--transition);
}

.ec-mega-menu-link:hover {
   color: var(--primary-color);
}

/* Main Content Wrapper */
.ec-main-content-wrapper {
   display: flex;
   margin: 20px 0;
   gap: 20px;
}

/* Categories Sidebar */
.ec-categories-sidebar {
   width: 250px;
   background: #fff;
   border-radius: 8px;
   box-shadow: var(--shadow);
   padding: 15px;
   flex-shrink: 0;
}

.ec-category-title {
   font-size: 18px;
   font-weight: 600;
   margin-bottom: 15px;
   padding-bottom: 10px;
   border-bottom: 1px solid var(--border-color);
}

.ec-category-list {
   list-style: none;
   padding: 0;
   margin: 0;
}

.ec-category-item {
   position: relative;
   margin-bottom: 5px;
}

.ec-category-link {
   display: flex;
   align-items: center;
   padding: 10px;
   color: var(--text-color);
   border-radius: 4px;
   transition: var(--transition);
}

.ec-category-link:hover {
   background: var(--secondary-color);
   color: var(--primary-color);
}

.ec-category-icon {
   margin-right: 10px;
   font-size: 18px;
   width: 24px;
   text-align: center;
}

.ec-subcategory-list {
   display: none;
   position: absolute;
   top: 0;
   left: 100%;
   width: 200px;
   background: #fff;
   box-shadow: var(--shadow);
   z-index: 10;
   border-radius: 4px;
   padding: 10px;
}

.ec-category-item:hover .ec-subcategory-list {
   display: block;
}

.ec-subcategory-item a {
   display: block;
   padding: 8px 10px;
   color: var(--text-color);
   transition: var(--transition);
}

.ec-subcategory-item a:hover {
   color: var(--primary-color);
}

/* Main Content */
.ec-main-content {
   flex: 1;
}

/* Banner Slider */
.ec-main-slider {
   border-radius: 8px;
   overflow: hidden;
   margin-bottom: 20px;
   box-shadow: var(--shadow);
}



/* Section Styles */


.ec-section {
   /*background: #fff;*/
   border-radius: 8px;
   box-shadow: var(--shadow);
   padding: 15px;
   margin-bottom: 20px;
}
.ec-section {
 width: 100%;              /* take full width */
 max-width: 100%;
 box-sizing: border-box;
}

.ec-section-title {
 display: flex;
 justify-content: space-between;  /* keep title left + arrow right */
 align-items: center;
 flex-wrap: nowrap;               /* prevent wrapping */
 overflow: visible;               /* don’t cut off arrow */
 gap: 10px;                       /* little breathing space */
}

.ec-section-title h2 {
 flex: 1;                         /* take remaining space */
 white-space: nowrap;             /* prevent breaking into 2 lines */
 overflow: hidden;                /* truncate if too long */
 text-overflow: ellipsis;         /* add ... if cut */
}

.view-all {
 flex-shrink: 0;                  /* never shrink */
 color: var(--primary-color);
 font-size: 14px;
 font-weight: 500;
 display: flex;
 align-items: center;
}

.ec-section-title {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 20px;
   padding-bottom: 10px;
   border-bottom: 1px solid var(--border-color);
}

.ec-section-title h2 {
   font-size: 20px;
   font-weight: 600;
   color: var(--text-color);
}

.view-all {
   color: var(--primary-color);
   font-size: 14px;
   font-weight: 500;
}

/* Products Grid */
/* Default grid layout */
/* Scrollable row version */
@media (min-width: 768px) {
   .ec-products-grid {
      display: flex !important;   /* force override */
      flex-wrap: nowrap;
      gap: 20px;
      max-width: 100%;            /* ensure container doesn’t overflow page */
   }
}@media (max-width: 768px) {
   .ec-products-grid {
      display: none !important;   /* force override */
      flex-wrap: nowrap;
      
      gap: 20px;
      max-width: 100%;            /* ensure container doesn’t overflow page */
   }
}




@media (min-width: 768px) {
   .ec-products-grid .ec-product-card {
      flex: 0 0 220px;
      max-width: 220px;
   }
}
@media (max-width: 768px) {
   .ec-products-grid .ec-product-card {
      flex: 0 0 157px;          /* fixed card width */
   }
}
.ec-products-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(220px, 220px)); /* fixed card width */
   gap: 20px;
   /*justify-content: center; /* optional: center cards */*/
}


/* Override when scrollable */
.ec-products-grid {
   display: flex !important;   /* force override grid */
   flex-wrap: nowrap;
   gap: 20px;
}




.ec-product-card {
   background: #fff;
   border-radius: 8px;
   overflow: hidden;
   transition: var(--transition);
   border: 1px solid var(--border-color);
   position: relative;
}

.ec-product-card:hover {
   transform: translateY(-5px);
   box-shadow: var(--shadow);
}

.ec-product-image {
   position: relative;
   overflow: hidden;
   height: 200px;
}

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

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

.ec-product-badge {
   position: absolute;
   top: 10px;
   left: 10px;
   background: var(--primary-color);
   color: white;
   padding: 3px 8px;
   border-radius: 3px;
   font-size: 12px;
   font-weight: 500;
}

.ec-product-info {
   padding: 15px;
}


.ec-product-price {
   display: flex;
   align-items: center;
   margin-bottom: 10px;
}

.ec-price-new {
   font-size: 14px;
   font-weight: 600;
   color: var(--primary-color);
}

.ec-price-old {
   font-size: 14px;
   text-decoration: line-through;
   color: var(--light-text);
   margin-left: 8px;
}

.ec-product-discount {
   font-size: 12px;
   color: var(--success-color);
   margin-left: 8px;
}

.ec-product-rating {
   color: #ffc107;
   margin-bottom: 10px;
   display: flex;
   align-items: center;
}

.ec-product-rating-count {
   font-size: 13px;
   color: var(--light-text);
   margin-left: 5px;
}

.ec-product-actions {
   display: flex;
   justify-content: space-between;
}

.ec-add-to-cart {
   background: var(--primary-color);
   color: white;
   border: none;
   padding: 8px 15px;
   border-radius: 4px;
   cursor: pointer;
   font-size: 14px;
   transition: var(--transition);
   flex: 1;
   margin-right: 10px;
}

.ec-add-to-cart:hover {
   background: #3e2926;
}

.ec-wishlist-btn {
   background: var(--secondary-color);
   border: 1px solid var(--border-color);
   width: 40px;
   height: 40px;
   border-radius: 4px;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   color: var(--light-text);
   transition: var(--transition);
}

.ec-wishlist-btn:hover {
   background: var(--primary-color);
   color: white;
   border-color: var(--primary-color);
}
.ec-wishlist-btnss {
   background: var(--primary-color);
   color: white;
   border-color: var(--primary-color);
}

/* Footer Styles */
.ec-footer {
   background: #fff;
   box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
   padding: 50px 0 20px;
   margin-top: 40px;
}

.ec-footer-top {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 30px;
   margin-bottom: 40px;
}

.ec-footer-widget h4 {
   font-size: 18px;
   font-weight: 600;
   margin-bottom: 20px;
   position: relative;
   padding-bottom: 10px;
}

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

.ec-footer-links li {
   margin-bottom: 10px;
}

.ec-footer-links a {
   color: var(--light-text);
   transition: var(--transition);
}

.ec-footer-links a:hover {
   color: var(--primary-color);
   padding-left: 5px;
}

.ec-footer-contact p {
   margin-bottom: 10px;
   color: var(--light-text);
   display: flex;
   align-items: center;
}

.ec-footer-contact i {
   margin-right: 10px;
   color: var(--primary-color);
}

.ec-footer-social {
   display: flex;
   margin-top: 20px;
}

.ec-footer-social a {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 36px;
   height: 36px;
   background: var(--secondary-color);
   color: var(--text-color);
   border-radius: 50%;
   margin-right: 10px;
   transition: var(--transition);
}

.ec-footer-social a:hover {
   background: var(--primary-color);
   color: white;
}

.ec-footer-bottom {
   text-align: center;
   padding-top: 20px;
   border-top: 1px solid var(--border-color);
   color: var(--light-text);
   font-size: 14px;
}

.ec-payment-methods {
   display: flex;
   justify-content: center;
   margin-top: 15px;
   flex-wrap: wrap;
}

.ec-payment-methods img {
   height: 24px;
   margin: 0 5px 5px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
   .container {
     max-width: 960px;
  }
}

@media (max-width: 992px) {
   .ec-main-content-wrapper {
     flex-direction: column;
  }

  .ec-categories-sidebar {
     width: 100%;
     margin-bottom: 20px;
  }

  .ec-nav-menu {
     display: none;
  }

  .ec-category-toggle {
     width: 100%;
  }

  .ec-search-bar {
     margin: 0 10px;
  }
}

@media (max-width: 768px) {
   .ec-header-content {
     flex-wrap: wrap;
  }

  .ec-logo {
     order: 1;
     width: 50%;
  }

  .ec-header-icons {
     order: 2;
     width: 50%;
     justify-content: flex-end;
  }

  .ec-search-bar {
     order: 3;
     margin: 15px 0 0;
     width: 100%;
     max-width: 100%;
     display: none;
  }

  .ec-products-grid {
     grid-template-columns: repeat(2, 1fr);
     gap: 15px;
  }

  .ec-product-image {
     height: 160px;
  }

  .ec-footer-top {
     grid-template-columns: 1fr;
     gap: 30px;
  }
}

@media (max-width: 576px) {
   .ec-products-grid {
     grid-template-columns: 1fr;
  }

/*.ec-header-icon span {
    display: none;
}*/

.ec-header-icon {
  margin-left: 15px;
}

/*.ec-product-actions {
    flex-direction: column;
}*/

.ec-add-to-cart {
  margin-right: 0;
  /*margin-bottom: 10px;*/
}

/*.ec-wishlist-btn {
    width: 100%;
}*/
}

/* Mobile Menu */
/*.ec-mobile-menu-btn {
   display: none;
   background: none;
   border: none;
   font-size: 24px;
   color: var(--text-color);
   cursor: pointer;
}*/

@media (max-width: 992px) {
  /* .ec-mobile-menu-btn {
    display: block;
    order: 3;
    margin-left: 15px;
}
*/
   .ec-nav-container {
     flex-direction: column;
     align-items: flex-start;
  }

  .ec-category-toggle {
     width: 100%;
  }

  .ec-nav-menu {
     display: none;
     width: 100%;
     margin-left: 0;
     flex-direction: column;
  }

  .ec-nav-menu.active {
     display: flex;
  }

  .ec-nav-item {
     width: 100%;
  }

  .ec-nav-link {
     padding: 12px 0;
  }

  .ec-mega-menu {
     position: static;
     width: 100%;
     box-shadow: none;
     border-radius: 0;
     display: none;
  }

  .ec-nav-item:hover .ec-mega-menu {
     display: none;
  }

  .ec-nav-item.active .ec-mega-menu {
     display: block;
  }
}

.ec-wishlist-btn.active {
  color: #e63946; /* red heart when active */
}
.ec-product-header {
 display: flex;
 align-items: center;
 justify-content: space-between; /* keeps name left, badge right */
 gap: 8px;
 bottom: 5px;

}

.ec-product-title {
 font-size: 14px;
 font-weight: 500;
 margin: 0;
 color: var(--text-color);
 line-height: 1.4;
 flex: 1; /* take remaining space */
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
}

.badge-category {
 background: #f5eaea;
 color: #3e2926;
 font-size: 10px;
 font-weight: 600;
 padding: 3px 8px;
 border-radius: 12px;
 text-transform: uppercase;
}
/* Container */
.ec-wishlist-dropdown {
  width: 320px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* Wishlist Item */
.wishlist-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 1px solid #f2f2f2;
}

.wishlist-item:last-child {
  border-bottom: none;
}

/* Thumbnail */
.wishlist-thumb img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.wishlist-thumb:hover img {
  transform: scale(1.05);
}

/* Info */
.wishlist-info {
  flex: 1;
  margin-left: 12px;
}

.wishlist-name {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  line-height: 1.3;
}

.wishlist-name:hover {
  color: #3e2926;
}

.wishlist-meta {
  font-size: 13px;
  color: #666;
}

.wishlist-price {
  font-weight: 600;
  color: #000;
  margin-left: 4px;
}

/* Remove Button */
.btn-remove {
  color: #aaa;
  font-size: 14px;
  margin-left: 8px;
  transition: 0.3s;
}

.btn-remove:hover {
  color: #3e2926;
}

/* Subtotal */
.wishlist-summary {
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
  background: #fafafa;
  font-size: 14px;
  font-weight: 600;
  border-top: 1px solid #eee;
}

/* Action Buttons */
.wishlist-actions {
  text-align: center;
  padding: 12px 15px;
  background: #fff;
}

.btn-view-all {
  display: inline-block;
  width: 100%;
  padding: 10px 0;
  background: #f5eaea;
  color: #3e2926;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-view-all:hover {
  background: #f5eaea;
}

/* Empty State */
.wishlist-empty {
  text-align: center;
  padding: 30px 20px;
  color: #777;
}

.wishlist-empty img {
  width: 80px;
  opacity: 0.6;
  margin-bottom: 10px;
}

.wishlist-empty p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}
.cart-list {
  width: 360px;
  max-height: 480px;
  overflow-y: auto;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  list-style: none;
}

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

.cart-thumb img {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  object-fit: cover;
}

.cart-info-right {
  flex: 1;
  margin-left: 10px;
}

.cart-name {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

.cart-meta {
  font-size: 13px;
  color: #777;
  margin-top: 4px;
}

.cart-meta .cart-price {
  font-weight: 600;
  color: #000;
  margin-left: 5px;
}

.btn-remove {
  color: #3e2926;
  font-size: 18px;
  margin-left: 8px;
  transition: color 0.3s;
}
.btn-remove:hover {
  color: #3e2926;
}

.cart-summary {
  padding: 10px 0;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ddd;
  font-size: 15px;
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}

.cart-actions .btn {
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-view-cart {
  background: #f5f5f5;
  color: #3e2926;
  border: 1px solid #ddd;
}

.btn-checkout {
  background: #f5eaea;
  color: #3e2926;
  border: 1px solid #f5eaea;
}

.btn-checkout:hover {
  background: #f5eaea;
  border-color: #f5eaea;
}

.cart-empty {
  text-align: center;
  padding: 20px 0;
  color: #777;
}

.cart-empty img {
  width: 100px;
  margin-bottom: 10px;
} .ec-header-icon-wrapper {
  position: relative;
  display: inline-block;
}

.ec-header-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 260px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 10px;
  display: none;
  z-index: 999;
}

.ec-header-dropdown ul {
  max-height: 220px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ec-header-dropdown ul li {
  display: flex;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #f3f3f3;
  font-size: 14px;
}

.ec-header-dropdown ul li img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 8px;
  border-radius: 6px;
}

.ec-header-dropdown ul li.empty {
  text-align: center;
  padding: 15px 0;
  font-style: italic;
  color: #777;
  border: none;
}

.ec-header-dropdown .view-all {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
  color: #3e2926;
  text-decoration: none;
}

#.alert {
   position: relative;
   padding: 1rem 1rem;
   margin-bottom: 1rem;
   border: 1px solid transparent;
   border-radius: 0.25rem;
}
.alert-heading {
   color: inherit;
}
.alert-link {
   font-weight: 700;
}
.alert-dismissible {
   padding-right: 3rem;
}
.alert-dismissible .btn-close {
   position: absolute;
   top: 0;
   right: 0;
   z-index: 2;
   padding: 1.25rem 1rem;
}
.alert-primary {
   color: #084298;
   background-color: #cfe2ff;
   border-color: #b6d4fe;
}
.alert-primary .alert-link {
   color: #06357a;
}
.alert-secondary {
   color: #41464b;
   background-color: #e2e3e5;
   border-color: #d3d6d8;
}
.alert-secondary .alert-link {
   color: #34383c;
}
.alert-success {
   color: #0f5132;
   background-color: #d1e7dd;
   border-color: #badbcc;
}
.alert-success .alert-link {
   color: #0c4128;
}
.alert-info {
   color: #055160;
   background-color: #cff4fc;
   border-color: #b6effb;
}
.alert-info .alert-link {
   color: #04414d;
}
.alert-warning {
   color: #664d03;
   background-color: #fff3cd;
   border-color: #ffecb5;
}
.alert-warning .alert-link {
   color: #523e02;
}
.alert-danger {
   color: #842029;
   background-color: #f8d7da;
   border-color: #f5c2c7;
}
.alert-danger .alert-link {
   color: #6a1a21;
}
.alert-light {
   color: #636464;
   background-color: #fefefe;
   border-color: #fdfdfe;
}
.alert-light .alert-link {
   color: #4f5050;
}
.alert-dark {
   color: #141619;
   background-color: #d3d3d4;
   border-color: #bcbebf;
}
.alert-dark .alert-link {
   color: #101214;
}/* Grid Layout */
.product-list {
 width: 23%;
 margin: 1%;
 float: left;
}





@media(max-width: 1024px) {
 .product-list { width: 31%; }
}
@media(max-width: 768px) {
 .product-list { width: 48%; }
}
@media(max-width: 480px) {
 .product-list { width: 98%; }
}

/* Product Card */
.product-box {
 /*background: #fff;*/
 border-radius: 12px;
 box-shadow: 0 4px 12px rgba(0,0,0,0.08);
 transition: transform .3s ease, box-shadow .3s ease;
 overflow: hidden;
 position: relative;
}
.product-box:hover {
 transform: translateY(-5px);
 box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Product Image */
.product-img {
 width: 100%;
 height: 280px;
 object-fit: cover;
 border-radius: 12px 12px 0 0;
}

/* Wishlist & Quick View */
.cart-info {
 position: absolute;
 top: 12px;
 right: 12px;
 display: flex;
 flex-direction: column;
 gap: 8px;
}
.cart-info a {
 background: #fff;
 border-radius: 50%;
 padding: 6px;
 color: #333;
 font-size: 14px;
 box-shadow: 0 2px 6px rgba(0,0,0,0.15);
 transition: all .3s;
}
.cart-info a:hover {
 background: #000;
 color: #fff;
}

/* Sold Badge */
.soldout-badge {
 position: absolute;
 top: 12px;
 left: 12px;
 background: #d62828;
 color: #fff;
 padding: 5px 12px;
 font-size: 12px;
 border-radius: 20px;
 font-weight: bold;
}

/* Product Details */
.product-detail {
 padding: 15px;
 text-align: center;
}
.product-title {
 font-size: 15px;
 font-weight: 600;
 margin: 8px 0;
}
.old-price {
 color: #888;
 font-size: 14px;
 text-decoration: line-through;
}
.new-price {
 font-size: 16px;
 font-weight: 700;
 color: #d62828;
}
.dimension {
 font-size: 12px;
 color: #666;
}
.vat {
 font-size: 11px;
 color: #aaa;
}
.category-name {
 font-size: 13px;
 color: #3e2926;
 margin-top: 5px;
}

/* Add to Cart */
.addtocart-btn {
 padding: 10px 15px;
 text-align: center;
}
.add-button {
 background: #3e2926;
 color: #f5eaea;
 padding: 10px 20px;
 border-radius: 50px;
 border: none;
 font-size: 14px;
 cursor: pointer;
 transition: all .3s;
}
.add-button:hover {
 background: #3e2926;
}
.add-button.sold {
 background: #3e2926;
 cursor: not-allowed;
}

/* Quantity Selector */
.qty-box {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 6px;
}
.qty-btn {
 background: #f5f5f5;
 border: none;
 padding: 6px 10px;
 cursor: pointer;
 border-radius: 6px;
 font-size: 16px;
}
.qty-btn:hover {
 background: #000;
 color: #fff;
}
.qty-input {
 width: 70px;
 text-align: center;
 border: 1px solid #ddd;
 border-radius: 6px;
 padding: 6px;
 font-size: 14px;
}/* Product Grid */
.product-list {
 width: 23%;
 margin: 1%;
 float: left;
 display: flex; /* make equal height possible */
}
@media(max-width: 1024px) {
 .product-list { width: 31%; }
}
@media(max-width: 768px) {
 .product-list { width: 48%; }
}
@media(max-width: 480px) {
 .product-list { width: 98%; }
}

/* Product Card */
.product-box {
 border-radius: 12px;
 box-shadow: 0 4px 12px rgba(0,0,0,0.08);
 transition: transform .3s ease, box-shadow .3s ease;
 overflow: hidden;
 position: relative;
 display: flex;
 flex-direction: column;
 width: 100%;
}
.product-box:hover {
 transform: translateY(-5px);
 box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Product Image */
.product-img {
 width: 100%;
 height: 280px;
 object-fit: cover;
 border-radius: 12px 12px 0 0;
}

/* Product Details */
.product-detail {
 padding: 12px;
 text-align: center;
 flex-grow: 1; /* pushes footer (add to cart) down */
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
}
.product-title {
  font-size: 15px;
  font-weight: 600;
  margin: -5px 0;
  min-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.old-price {
 color: #888;
 font-size: 13px;
 text-decoration: line-through;
}
.new-price {
 font-size: 15px;
 font-weight: 700;
 color: #d62828;
 margin: 4px 0;
}
.category-name {
 font-size: 12px;
 color: #555;
 margin-top: 3px;
}

/* Add to Cart */
.addtocart-btn {
 padding: 10px;
 text-align: center;
 margin-top: auto; /* sticks to bottom */
}

/* Wrapper */
.filter-bar {
 display: flex;
 flex-wrap: wrap;
 gap: 15px;
 margin: 20px 0;
 padding: 15px;
 border-radius: 12px;
 box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Each item */
.filter-item {
 flex: 1;
 min-width: 200px;
 position: relative;
}

/* Select box */
.filter-select {
 width: 100%;
 padding: 12px 16px;
 border: 1px solid #ddd;
 border-radius: 8px;
 background: #fafafa;
 font-size: 14px;
 font-weight: 500;
 color: #333;
 appearance: none;
 outline: none;
 transition: all 0.3s ease;
 cursor: pointer;
}

/* On focus */
.filter-select:focus {
 border-color: #000;
 background: #fff;
 box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

/* Add custom dropdown arrow */
.filter-item::after {
 content: "\25BC"; /* ▼ */
 font-size: 12px;
 color: #666;
 position: absolute;
 right: 16px;
 top: 50%;
 transform: translateY(-50%);
 pointer-events: none;
}
@media(max-width: 768px) {

   .product-list {
    flex: 0 0 48%;
    margin: 1%;
 }
}@media(min-width: 768px) {

   .product-list {
    flex: 0 0 23%;
    margin: 1%;
 }
}
.postList {
 display: flex;
 flex-wrap: wrap;
}
.empty-state {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 text-align: center;
 /*padding: 70px 25px;*/
 border-radius: 16px;
 /*background: linear-gradient(145deg, #ffffff, #f5f5f5);*/
 /*box-shadow: 0 6px 20px rgba(0,0,0,0.08);*/
 max-width: 600px;
 margin: 50px auto;
 transition: all 0.3s ease;
}

.empty-icon {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 background: #f5eaea;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 20px;
}

.empty-icon i {
 font-size: 38px;
 color: #3e2926; /* perfume brand theme color */
}

.empty-text h3 {
 font-size: 22px;
 font-weight: 600;
 color: #3e2926;
 margin-bottom: 10px;
}

.empty-text p {
 font-size: 15px;
 color: #666;
 line-height: 1.6;
}
.cart-card {
 background: #fff;
 border-radius: 16px;
 padding: 25px;
 box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.cart-header h2 {
 font-size: 22px;
 font-weight: 600;
 margin-bottom: 20px;
 display: flex;
 align-items: center;
 color: #333;
}

.cart-header i {
 color: #3e2926; /* brand color */
 margin-right: 10px;
}

.cart-table {
 width: 100%;
 border-collapse: separate;
 border-spacing: 0 12px;
}

.cart-table thead th {
 font-size: 14px;
 font-weight: 600;
 text-transform: uppercase;
 color: #888;
 padding: 12px;
 border-bottom: 2px solid #f1f1f1;
}

.cart-table tbody tr {
 background: #fafafa;
 border-radius: 12px;
 box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.cart-table td {
 padding: 15px;
 vertical-align: middle;
}

.cart-thumb {
 position: relative;
}

.cart-thumb img {
 width: 80px;
 border-radius: 8px;
}

.remove-cart {
 position: absolute;
 top: 5px;
 right: 5px;
 background: #fff;
 border: none;
 color: #3e2926;
 font-size: 14px;
 border-radius: 50%;
 width: 16px;
 height: 17px;
 cursor: pointer;
 box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}.cart-thumb .remove-cart {
  right: 83px;
  position: absolute;
  top: 5px;
  background: #fff;
  border: none;
  color: #3e2926;
  font-size: 14px;
  border-radius: 50%;
  width: 16px;
  height: 17px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.item-name {
 font-weight: 500;
 color: #333;
 text-decoration: none;
}

.cart-price, .cart-subtotal {
 font-weight: 600;
 color: #222;
}

.qty-box {
 display: flex;
 align-items: center;
 border: 1px solid #ddd;
 border-radius: 8px;
 overflow: hidden;
 max-width: 180px;
}

.qty-btn {
 background: #f9f9f9;
 border: none;
 padding: 6px 12px;
 cursor: pointer;
 font-size: 14px;
}

.qty-input {
 border: none;
 text-align: center;
 width: 40px;
 font-weight: 600;
 background: #fff;
}

.cart-actions {
 margin-top: 30px;
 display: flex;
 justify-content: space-between;
}

.btn {
 padding: 10px 18px;
 font-size: 14px;
 font-weight: 500;
 border-radius: 8px;
 transition: all 0.3s ease;
 text-decoration: none;
}

.btn-outline {
 background: #fff;
 border: 1px solid #ddd;
 color: #333;
}

.btn-outline:hover {
 border-color: #3e2926;
 color: #3e2926;
}

.btn-theme {
 background: #3e2926;
 color: #fff;
 border: none;
}

.btn-theme:hover {
 background: #3e2926;
}
.scroll-container {
 overflow-x: auto;
 overflow-y: hidden;
 white-space: nowrap;
 -webkit-overflow-scrolling: touch; /* smooth scrolling on mobile */
 scrollbar-width: none; /* hide scrollbar (Firefox) */
}
.scroll-container::-webkit-scrollbar {
 display: none; /* hide scrollbar (Chrome/Safari) */
}



.nav-menu {
 display: inline-flex;   /* keep items in one line */
 gap: 20px;              /* spacing between brands */
 padding: 0;
 margin: 0;
 list-style: none;
}

.nav-item {
 flex: 0 0 auto;         /* prevent shrinking */
 text-align: center;
}
.nav-item a {
 display: flex;
 flex-direction: column; /* image above text */
 align-items: center;
 text-decoration: none;
}
.nav-item img {
 width: 50px;
 height: 50px;
 object-fit: contain;
}
/*@media (max-width: 768px) {
* {padding-left: 1px;
    padding-right: 1px;
    }*/
    .nav-item {
       width: 43px;
    }
 }/* Default show */
 .ec-categories-sidebar {
    display: block;
 }

/* Hide on mobile */
@media (max-width: 768px) {
 .ec-categories-sidebar {
  display: none;
}
}/* Drawer styles */
.ec-mobile-menu {
 position: fixed;
 top: 0;
 left: -100%;
 width: 80%;
 max-width: 340px;
 height: 100%;
 background: #fff;
 box-shadow: 2px 0 10px rgba(0,0,0,0.15);
 transition: left 0.3s ease;
 z-index: 9999;
 padding: 15px;
 overflow-y: auto;
}

.ec-mobile-menu.active {
 left: 0;
}

.ec-mobile-menu-header {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding-bottom: 10px;
 border-bottom: 1px solid #eee;
}

.ec-mobile-menu-header h3 {
 margin: 0;
 font-size: 18px;
 font-weight: 600;
 color: #3e2926; /* premium dark brown */
}

.ec-close-menu {
 background: none;
 border: none;
 font-size: 24px;
 cursor: pointer;
}

/* Mobile menu container */
.ec-mobile-menu {
 position: fixed;
 top: 0;
 left: -100%;
 width: 80%;
 height: 100%;
 background: #fff;
 box-shadow: 2px 0 10px rgba(0,0,0,0.15);
 transition: left 0.3s ease;
 z-index: 1000;
 overflow-y: auto;
 padding: 20px;
 border-radius: 0 10px 10px 0;
}

/* Open state */
.ec-mobile-menu.active {
 left: 0;
}

/* Header */
.ec-mobile-menu-header {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding-bottom: 15px;
 border-bottom: 1px solid #eee;
}

.ec-mobile-menu-header h3 {
 font-size: 18px;
 font-weight: 600;
 margin: 0;
}

.ec-close-menu {
 background: none;
 border: none;
 font-size: 24px;
 cursor: pointer;
}

/* Category list */
.ec-mobile-category-list {
 list-style: none;
 padding: 0;
 margin: 15px 0 0;
}

.ec-mobile-category-item {
 border-bottom: 1px solid #f0f0f0;
}

.ec-mobile-category-link {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 12px 0;
 font-size: 16px;
 font-weight: 500;
 color: #333;
 text-decoration: none;
}

.ec-mobile-category-link:hover {
 color: #3e2926; /* your theme color */
}

/* Subcategories hidden initially */
.ec-mobile-subcategory-list {
 display: none;
 list-style: none;
 padding-left: 15px;
 margin: 0;
}

.ec-mobile-subcategory-list li a {
 display: block;
 padding: 8px 0;
 font-size: 14px;
 color: #555;
 text-decoration: none;
}

.ec-mobile-subcategory-list li a:hover {
 color: #3e2926;
}


.ec-dropdown-toggle {
 font-size: 18px;
 cursor: pointer;
 margin-left: 10px;
 color: #999;
 transition: transform 0.3s ease;
}

/* when active */
.ec-dropdown-toggle.rotate {
 transform: rotate(180deg);
 color: #3e2926; /* theme color */
}
@media (max-width: 768px) {

  .ec-main-slider .swiper-slide {
   width: 100%;           /* make slide full width */
   height: auto;          /* auto height */
   position: relative;
}

.ec-main-slider .swiper-slide img {
   width: 100%;           /* image stretches full width */
   height: 100%;          /* fill slide height */
   object-fit: cover;     /* crop if needed without distortion */
   display: block;
}
}
@media (max-width: 767px) {
 .ec-product-actions {
  display: flex !important;        /* put buttons in one row */
  align-items: center !important;  /* vertical alignment */
  gap: 8px !important;             /* space between buttons */
}

.ec-product-actions .ec-add-to-cart {
  flex: 1 1 auto !important;       /* grow to fill remaining space */
  text-align: center;
}

.ec-product-actions .ec-wishlist-btn {
  flex: 0 0 auto !important;       /* keep Wishlist small */
  width: 40px;
  height: 34px;
}
}
.view-all {
 display: inline-flex;
 align-items: center;
 gap: 6px;                  /* space between text and arrow */
 background-color: #3e2926;
 color: #f5eaea;
 padding: 5px 6px;
 border-radius: 53%;       /* fully rounded / pill shape */
 text-decoration: none;
 font-weight: 500;
 transition: background 0.3s ease, transform 0.3s ease;
}

.view-all .arrow-icon {
 color: #f5eaea;           /* arrow color */
 font-size: 16px;
 transition: transform 0.3s ease;
}

.view-all:hover {
 background-color: #5a3f3a; /* optional hover effect */
}

.view-all:hover .arrow-icon {
 transform: translateX(4px); /* arrow slides right on hover */
}


/*.ec-product-card {
  flex: 0 0 auto;          
  width: 200px;            
}
*/
/* Container */
.product-scroll-container {
 display: flex;
 gap: 16px;
 padding-bottom: 8px;
}



/* Desktop: wrap and hide horizontal scrollbar */
@media (min-width: 768px) {
 .product-scroll-container {
  gap: 16px;            /* optional spacing */
}


}


@media (min-width: 768px) {
   .ec-mobile-menu {
     display: none;

  } .ec-mobile-menu-btn{
     display: none;

  }
}
@media (max-width: 768px) {

   .ec-search-bar{
     display: none;

  }
  .ec-header-icon .span-name{
    display: none;

 }
}/* Global WebKit scrollbars (Chrome, Edge, Safari) */
::-webkit-scrollbar {
 width: 4px;   /* vertical */
 height: 12px; /* horizontal */
}

::-webkit-scrollbar-track {
 background: #f0f0f0;
 border-radius: 6px;
}

::-webkit-scrollbar-thumb {
 background-color: #3e2926;
 border-radius: 6px;
 /* use transparent border + background-clip to create "space" around thumb */
 border: 3px solid transparent;
 background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
 background-color: #a10f0f;
}
.mt-3{
   margin-top: 3rem;
}/* Table Base */
.cart-table {
 width: 100%;
 border-collapse: collapse;
 table-layout: fixed; /* Ensures equal column alignment */
}

.cart-table th,
.cart-table td {
 padding: 12px;
 text-align: center;
 vertical-align: middle;
 /*border-bottom: 1px solid #ddd;*/
 word-wrap: break-word;
}.cart-table th
{
 padding: 12px;
 text-align: center;
 vertical-align: middle;
 border-bottom: 1px solid #ddd;
 word-wrap: break-word;
}

/* First column (image + remove) */
.cart-table th:first-child,
.cart-table td.cart-thumb {
 width: 180px;
 text-align: left;
}

/* Second column (item name) */
.cart-table th:nth-child(2),
.cart-table td.cart-item {
 text-align: left;
 width: 35%;
}

/* Price, Quantity, Subtotal */
.cart-table th:nth-child(3),
.cart-table th:nth-child(4),
.cart-table th:nth-child(5),
.cart-table td.cart-price,
.cart-table td .qty-box,
.cart-table td.cart-subtotal {
 text-align: center;
}

@media (max-width: 767px) {
 .cart-table {
  border: none;
}

.cart-table thead {
  display: none; /* hide headers on mobile */
}

.cart-table,
.cart-table tbody,
.cart-table tr,
.cart-table td {
  display: block;
  width: 100%;
}

.cart-table tr {
  display: flex;
  background: #fff;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Left side: product image */
.cart-thumb {
  flex: 0 0 100px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #f0f0f0;
  position: relative;
}

.cart-thumb img {
  width: 80px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.cart-thumb .remove-cart {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #fff;
  border: 1px solid #eee;
  color: #ff4d4d;
  font-size: 14px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Right side: product details */
.cart-details {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-item .item-name {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  display: block;
}

.cart-price {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.qty-box {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.qty-btn {
  background: #f5f5f5;
  border: none;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.qty-input {
  width: 40px;
  text-align: center;
  margin: 0 6px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 4px;
}

.cart-subtotal {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  text-align: right;
}
}
.cart-wrapper {
 width: 100%;
 overflow-x: auto;              /* enable horizontal scroll */
 -webkit-overflow-scrolling: touch; /* smooth on iOS */
 scrollbar-width: none;         /* hide scrollbar in Firefox */
}

.cart-wrapper::-webkit-scrollbar {
 display: none;                 /* hide scrollbar in Chrome/Safari */
}

.cart-table {
 min-width: 600px;              /* keep table wide */
 width: 100%;
 border-collapse: collapse;
}/* Container */
.wishlist-actionss {
 /*display: flex;*/
 gap: 8px; /* space between buttons */
 /*justify-content: center;*/
 /*align-items: center;*/
}

/* Base button styling */
.btn-action {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 padding: 6px 12px;
 font-size: 13px;
 font-weight: 500;
 border-radius: 6px;
 text-decoration: none;
 transition: all 0.3s ease;
 cursor: pointer;
}

/* Remove button */
.btn-remove {
 border: 1px solid #f5eaea;
}
.btn-remove:hover {
 background: #f5eaea;
 color: #3e2926;
}

/* Move to cart button */
.btn-move {
 background: #f5eaea;
 color: #3e2926;
 border: 1px solid #3e2926;
}
.btn-move:hover {
 background: #f5eaea;
 color: #3e2926;
}
.arrow-img {
   margin-left: auto;
   display: inline-block;
}



.thank-you-container {
   background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   border-radius: 12px;
   padding: 40px;
   color: white;
   box-shadow: 0 5px 20px rgba(0,0,0,0.1);
   margin-bottom: 30px;
}

.thank-you-icon {
   font-size: 5rem;
   margin-bottom: 20px;
   color: white;
   animation: bounce 1s ease infinite;
}

@keyframes bounce {
   0%, 100% { transform: translateY(0); }
   50% { transform: translateY(-15px); }
}

.order-details-card {
   border-radius: 12px;
   border: none;
   box-shadow: 0 3px 15px rgba(0,0,0,0.08);
   margin-bottom: 25px;
   transition: transform 0.3s;
}

.order-details-card:hover {
   transform: translateY(-5px);
}

.card-header {
   background-color: white;
   border-bottom: 2px solid #e3e6f0;
   font-weight: 600;
   padding: 15px 20px;
   border-radius: 12px 12px 0 0 !important;
}

.product-img {
   border-radius: 8px;
   box-shadow: 0 3px 6px rgba(0,0,0,0.1);
   transition: transform 0.3s;
}

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

.status-badge {
   padding: 6px 12px;
   border-radius: 50px;
   font-size: 0.8rem;
   font-weight: 600;
}

.summary-box {
   background-color: white;
   border-radius: 12px;
   padding: 25px;
   box-shadow: 0 3px 15px rgba(0,0,0,0.08);
   height: 100%;
}

.summary-item {
   border-bottom: 1px dashed #e3e6f0;
   padding: 10px 0;
}

.summary-item:last-child {
   border-bottom: none;
}

.progress-tracker {
   background: white;
   border-radius: 12px;
   padding: 25px;
   box-shadow: 0 3px 15px rgba(0,0,0,0.08);
   margin-top: 30px;
}

.step {
   text-align: center;
   position: relative;
}

.step-icon {
   width: 50px;
   height: 50px;
   background: var(--light-bg);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 15px;
   font-size: 1.3rem;
   color: var(--dark-text);
}

.step.active .step-icon {
   background: var(--success-color);
   color: white;
}

.step::after {
   content: '';
   position: absolute;
   top: 25px;
   right: -50%;
   width: 100%;
   height: 2px;
   background: #e3e6f0;
   z-index: 0;
}

.step:last-child::after {
   display: none;
}

.action-buttons .btn {
   border-radius: 50px;
   padding: 10px 25px;
   font-weight: 600;
   margin-right: 10px;
   margin-bottom: 10px;
}

@media (max-width: 768px) {
   .thank-you-container {
     padding: 25px;
  }

  .step::after {
     display: none;
  }
 
}

/*.swiper-slide{
 margin-right: 0 !important;
}*/

/*@media (max-width: 768px) {
  .day_deal_swiper.swiper-slide {
   width: 167px !important;
  }.day_day_deal_swiper.swiper-slide {
   width: 167px !important;
  }.month_deal_swiper.swiper-slide {
   width: 167px !important;
  }.featured_swiper.swiper-slide {
   width: 167px !important;
  }.new_swiper.swiper-slide {
   width: 167px !important;
  }.best_seller_swiper.swiper-slide {
   width: 167px !important;
  }.trending_swiper.swiper-slide {
   width: 167px !important;
  }
}*/