body {
  background: #f5f7f9;
}
.heading-bg {
  background-image: url("../img/backround.png");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 180px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  position: relative;
  color: #fff;
}

/* Links */
.amico-navbar .nav-link {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  padding: 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.amico-navbar .nav-link:hover {
  color: #ff7a00;
}

.amico-navbar .nav-link.active {
  color: #ff7a00;
  font-weight: 600;
}


/* Search box */
.search-box {
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 77px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 8px 16px;
  width: 220px;
  display: flex;
}

.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  width: 100%;
  font-size: 14px;
}

.search-box-v2 {
  box-sizing: border-box;
  padding: 8px 16px;
  width: 220px;
  display: flex;

  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 77px;
  background: rgba(51, 51, 51, 0.1);
}

.search-box-v2 input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  width: 100%;
  font-size: 14px;
}

/* Phone number header for checkout page */
.phone-number-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
}

.phone-number-header .phone-icon-v2 {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}

.phone-number-header span {
  color: rgba(4, 169, 142, 1);
  font-weight: 500;
}

.search-icon {
  opacity: 0.7;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Right icons */
.icon-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.icon-link img {
  width: 18px;
  height: 18px;
}

.icon-link:hover {
  color: #ff7a00;
}

.icon-link-v2 {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

.icon-link-v2 img {
  width: 18px;
  height: 18px;
}

.icon-link-v2:hover {
  color: #ff7a00;
}

.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  color: #fff;
}

/* Headline */
.hero-content h1 {
  font-size: 80px;
  font-weight: 400;
  line-height: 90px;
  letter-spacing: 0%;
  text-align: left;
}

.text-accent {
  color: #FF9D61;
}

.text-light {
  color: #e6e6e6;
}

/* Button */
.btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  padding: 14px 36px;
  font-size: 20px;
  text-decoration: none;
  margin-bottom: 100px;
  transition: all 0.3s ease;
  border-radius: 99px;
  background: var(--Colors-Secondary-500, rgba(4, 169, 142, 1));
}

.btn-shop:hover {
  background: #3f9076;
  color: #fff;
}

.btn-shop span {
  font-size: 22px;
}

/* Testimonial */
.testimonial {
  max-width: 520px;
}

.testimonial p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.sub-text {
  color: var(--Colors-Neutral-100, rgba(255, 255, 255, 1));
  font-size: 20px;
  font-weight: 200;
  line-height: 34px;
  letter-spacing: 0%;
  text-align: left;
}

.rating-card {
  /* raring */
  width: 270px;
  height: 130px;
  /* Auto layout */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12;
  padding: 30px;

  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.category-section {
  background: #f8f8f8;
  padding: 80px 0;
  font-family: "Inter", sans-serif;
}

/* Header */
.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.category-header h2 {
  font-size: 32px;
  font-weight: 400;
  color:#000000;
}

.nav-arrows span {
  font-size: 28px;
  color: #bdbdbd;
  margin-left: 20px;
  cursor: pointer;
}

/* Scroll container */
.category-scroll {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

/* Item */
.category-item {
  flex: 0 0 auto;
  text-align: center;
  width: 180px;
}

.category-circle {
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.category-circle img {
  max-width: 110px;
  max-height: 110px;
}

/* Text */
.category-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.4;
}

.product-section {
  padding: 80px 0;
  font-family: "Inter", sans-serif;
}

/* Header */
.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.tabs span {
  font-size: 28px;
  color: #6a6a6a;
  margin-right: 40px;
  cursor: pointer;
}

.tabs .active {
  color: #000000;
}

.view-all {
  color: #6f6f6f;
  text-decoration: none;
  font-size: 16px;
}

/* Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.product-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
	 display: flex;
  flex-direction: column;
  height: 100%;
}

/* NEW badge */
.badge-new {
  position: absolute;
  top: 11px;
  left: 0px;
  background: #dcdcdc;
  padding: 6px 12px;
  border-radius: 0px 20px 20px 0px;
  font-size: 12px;
	z-index:9999!important;
}

/* Image area */
.product-img {
  padding: 50px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease;
}

.product-img img {
  width: 100%;
  max-width: 260px;
  transition: transform 0.4s ease;
}

/* Bottom info */
.product-info {
 background: #ececec;
  padding: 24px;
  transition: background 0.4s ease;
  position: relative;
	margin-top: auto;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Colors */
.colors {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.color {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.color.brown {
  background: #8b4a2b;
}
.color.black {
  background: #2a2a2a;
}

/* Title */
.product-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: #211f1f;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Price + button */
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.price-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-original {
  font-size: 16px;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
}

.price-current {
  font-size: 20px;
  font-weight: 500;
  color: #4a4a4a;
  text-underline-offset: 2px;
}

.price {
  font-size: 22px;
  font-weight: 500;
  color: #4a4a4a;
}

.bag-btn {
  background: #07a58a;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.bag-btn:hover {
  background: #059675;
  color: #fff;
  text-decoration: none;
}

.bag-btn-plus {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.bag-btn-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

/* 🔥 Hover effects */
.product-card:hover .product-img img {
  transform: scale(1.7); /* zoom out effect */
}


.product-wrapper .product-grid {
  display: none;
}

.product-wrapper .product-grid.active {
  display: grid;
}

.card-one-bg {
  border-radius: 12px;
  background: rgba(229, 158, 87, 1);
  padding: 50px;
}

.card-two-bg {
  border-radius: 12px;
  background: rgba(72, 192, 158, 1);
  padding: 50px;
}

.card-three-bg {
  border-radius: 12px;
  background: rgba(190, 105, 211, 1);
  padding: 50px;
}
.frame-img {
  object-fit: cover;
  border-radius: 24px; /* optional */
}

.amico-footer {
  background: #3b3b3b;
  color: #d9d9d9;
  font-family: "Inter", sans-serif;
  padding: 70px 0 40px;
}

/* Top */
.footer-logo {
  height: 36px;
  margin-bottom: 20px;
}

.footer-text {
  line-height: 1.7;
  color: #cfcfcf;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 120px; /* pushes content to correct position */
}

.footer-newsletter h4 {
  margin-bottom: 20px;
  color: #fff;
}

/* Newsletter */
.newsletter-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.newsletter-wrapper h5 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.newsletter-box {
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  width: 420px;
  padding: 6px;
}

.newsletter-box input {
  border: none;
  outline: none;
  flex: 1;
  padding: 14px;
  font-size: 16px;
  background: transparent;
}

.newsletter-box button {
  background: #e26a00;
  border: none;
  border-radius: 12px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.newsletter-box button:hover {
  background: #ff7a00;
}

.newsletter-box button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.newsletter-box form {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0;
}

.newsletter-message {
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  margin-top: 12px;
  width: 420px;
  text-align: center;
  font-weight: 500;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.newsletter-message.success {
  background: #d1f2eb;
  color: #0d5d4f;
  border: 1px solid #a8e6d9;
  font-weight: 500;
}

.newsletter-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Links bar */
.footer-links {
  background: #4a4a4a;
  border-radius: 16px;
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px 0;
}

.footer-links .links a {
  margin-right: 30px;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 16px;
}

.footer-links .socials img {
  width: 24px;
  margin-left: 20px;
}

/* Payments */
.footer-payments {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-payments img {
  max-height: 36px;
}

.verified {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #bdbdbd;
  background: var(--Colors-Neutral-900, rgba(74, 74, 74, 1));
  padding: 20px 81px 20px 81px;
}

.amico-navbar-v2 {
  backdrop-filter: blur(27.899999618530273px);
  background: rgba(255, 255, 255, 0.7);
  padding: 24px 160px 24px 160px;
}

/* Shop header nav links */
.amico-navbar-v2 .nav-link {
  color: #333;
  font-weight: 400;
  font-size: 16px;
  padding: 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.amico-navbar-v2 .nav-link:hover {
  color: rgba(4, 169, 142, 1);
}

.amico-navbar-v2 .nav-link.active {
  color: rgba(4, 169, 142, 1);
  font-weight: 600;
}

/* ============================================
   Mobile responsive headers (desktop + mobile layouts)
   ============================================ */

/* Main header (header.php) - mobile toggler */
.amico-navbar .amico-navbar-toggler {
  padding: 0.375rem 0.75rem;
}
.amico-navbar .amico-navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.amico-navbar .amico-navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

/* Shop header (header-shop.php) - mobile toggler */
.amico-navbar-v2 .amico-navbar-toggler-v2 {
  border-color: rgba(51, 51, 51, 0.2);
  padding: 0.375rem 0.75rem;
}

/* Desktop: hide mobile collapse, ensure original layout */
@media (min-width: 992px) {
  .amico-navbar .amico-nav-collapse,
  .amico-navbar-v2 .amico-nav-v2-collapse {
    display: none !important;
  }
}

/* Mobile nav layout - main header */
@media (max-width: 991px) {
  .amico-navbar .amico-navbar-inner {
    flex-wrap: wrap;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .amico-navbar .amico-brand {
    flex-grow: 1;
  }
  .amico-navbar .amico-nav-collapse {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .amico-navbar .amico-mobile-nav {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .amico-navbar .amico-mobile-nav .nav-link {
    padding: 0.5rem 0;
  }
  .amico-navbar .amico-nav-right {
    justify-content: flex-start;
  }
}

/* Mobile nav layout - shop header */
@media (max-width: 991px) {
  .amico-navbar-v2 .amico-navbar-v2-inner {
    flex-wrap: wrap;
    padding: 1rem 1.25rem !important;
  }
  .amico-navbar-v2 .amico-brand-v2 {
    flex-grow: 1;
  }
  .amico-navbar-v2 .amico-nav-v2-collapse {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(51, 51, 51, 0.15);
  }
  .amico-navbar-v2 .amico-mobile-nav-v2 {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .amico-navbar-v2 .amico-mobile-nav-v2 .nav-link {
    padding: 0.5rem 0;
  }
  .amico-navbar-v2 .amico-nav-v2-right {
    justify-content: flex-start;
  }
}

.shop-page {
  background: #f7f7f7;
  padding: 32px 0;
  min-height: calc(100vh - 200px);
}

/* LEFT SIDEBAR */
.filter-sidebar {
  background: #fff;
  border-right: 1px solid #eee;
  min-height: 100vh;
}

.filter-scroll {
  overflow-y: auto;
  padding: 24px;
  max-height:100vh;
}

.filter-group {
  margin-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 16px;
}

.filter-group:last-child {
  border-bottom: none;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 12px;
  padding: 8px 0;
}

.filter-header h6 {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  color: #333;
}

.filter-toggle {
  font-size: 12px;
  color: #666;
  transition: transform 0.3s;
}

.filter-group.collapsed .filter-toggle {
  transform: rotate(-90deg);
}

.filter-content {
  display: block;
}

.filter-group.collapsed .filter-content {
  display: none;
}

/* Filter items scrollable container for Shoes Type */
.filter-items-scrollable {
  max-height: 210px; /* Show approximately 3 items (70px each) */
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
  -webkit-overflow-scrolling: touch;
}

.filter-items-scrollable::-webkit-scrollbar {
  width: 6px;
}

.filter-items-scrollable::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.filter-items-scrollable::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.filter-items-scrollable::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* FILTER ITEMS */
.filter-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 8px;
  transition: background 0.2s;
  min-height: 60px;
  box-sizing: border-box;
}

.filter-item:hover {
  background: #f5f5f5;
}

.filter-item.active {
  background: #f1f1f1;
  font-weight: 500;
}

.filter-item img.filter-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 4px;
}

.filter-item span:not(.dropdown-arrow) {
  flex: 1;
  font-size: 14px;
  color: #333;
}

.filter-item .dropdown-arrow {
  font-size: 10px;
  color: #999;
  margin-left: auto;
}

/* SIZE */
.size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: relative;
  margin-bottom: 8px;
}

.size-grid .dropdown-arrow {
  position: absolute;
  bottom: -20px;
  right: 0;
  font-size: 10px;
  color: #999;
}

.size-filter-btn {
  padding: 10px 8px;
  text-align: center;
  border-radius: 6px;
  background: #f3f3f3;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.size-filter-btn:hover {
  background: #e8e8e8;
}

.size-filter-btn.active {
  background: #222;
  color: #fff;
  border-color: #222;
}

/* COLOR FILTER */
.color-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 8px;
}

.color-filter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.color-filter-item:hover {
  background: #f5f5f5;
}

.color-filter-item.active {
  background: #f1f1f1;
}

.color-filter-item .color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #ddd;
  display: block;
}

.color-filter-item .color-label {
  font-size: 11px;
  color: #666;
  text-align: center;
  line-height: 1.2;
}

.color-filter-item.white .color-swatch {
  background: #fff;
  border-color: #ccc;
}
.color-filter-item.black .color-swatch {
  background: #000;
}
.color-filter-item.grey .color-swatch {
  background: #777;
}
.color-filter-item.blue .color-swatch {
  background: #5b8bd1;
}
.color-filter-item.brown .color-swatch {
  background: #8b5a2b;
}
.color-filter-item.green .color-swatch {
  background: #6fa84f;
}
.color-filter-item.multi .color-swatch {
  background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff);
}
.color-filter-item.orange .color-swatch {
  background: #ff9500;
}
.color-filter-item.purple .color-swatch {
  background: #9b59b6;
}
.color-filter-item.pink .color-swatch {
  background: #ff69b4;
}
.color-filter-item.red .color-swatch {
  background: #e74c3c;
}
.color-filter-item.yellow .color-swatch {
  background: #f1c40f;
}

/* PRICE RANGE */
.price-range-wrapper {
  padding: 8px 0;
}

.price-range-slider {
  position: relative;
  margin-bottom: 16px;
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
}

.price-slider {
  position: absolute;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: transparent;
  outline: none;
  -webkit-appearance: none;
  pointer-events: none;
  z-index: 2;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  pointer-events: all;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 3;
}

.price-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  pointer-events: all;
  position: relative;
  z-index: 3;
}

.price-slider#min_price_range {
  z-index: 2;
}

.price-slider#max_price_range {
  z-index: 1;
}

.price-display {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* RIGHT PRODUCTS */
.product-area {
  padding: 0 24px;
  background: #f7f7f7;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.product-header .page-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.product-header .woocommerce-ordering {
  margin: 0;
}

.product-header .orderby {
  padding: 8px 32px 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.product-header .orderby:focus {
  outline: none;
  border-color: #07a58a;
}

.product-scroll {
  overflow-y: visible;
}

.product-area .row.g-4 {
  margin-left: -8px;
  margin-right: -8px;
}

.product-area .row.g-4 > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

/* PRODUCT CARD */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.img-wrap {
    background: #ffffff;
    padding: 40px;
    transition: 0.4s;
}

.img-wrap img {
  width: 100%;
  transition: 0.4s;
}

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

.badge-new {
  position: absolute;
  top: 11px;
  left: 0px;
  background: #dcdcdc;
  padding: 6px 12px;
  border-radius: 0px 20px 20px 0px;
  font-size: 12px;
}

.card-body {
  padding: 16px;
	background: #ececec;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}

.card-footer button {
  background: #34a88a;
  border: none;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
}

/* Product card link styling */
.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card-link:hover {
  text-decoration: none;
  color: inherit;
}

/* Colors in card-body (shop page cards) */
.card-body .colors {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.card-body .color {
  width: 20px;
  height: 16px;
  border-radius: 4px;
}

.card-body .color.brown {
  background: #8b4a2b;
}

.card-body .color.black {
  background: #2a2a2a;
}

/* Ensure bag button styling in card-footer */
.card-footer .price-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-footer .price-original {
  font-size: 16px;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
}

.card-footer .price-current {
  font-size: 22px;
  font-weight: 500;
  color: #4a4a4a;
  text-underline-offset: 2px;
}

.card-footer .bag-btn {
  background: #07a58a;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.card-footer .bag-btn-plus {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.card-footer .bag-btn-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

.card-footer .bag-btn:hover {
  background: #059675;
  color: #fff;
  text-decoration: none;
}

.back-link {
  color: #00bfa5;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
	margin-top:15px;
  margin-bottom: 20px;
}

.back-link:hover {
  color: #009688;
}

.product-section {
  display: flex;
  gap: 30px;
  padding: 0;
}

.thumbnail-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0 20px 20px;
}

.thumbnail {
  width: 90px;
  height: 90px;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  background-color: #f5f5f5;
  transition: all 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: #00bfa5;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-image-container {
  flex: 1;
  position: relative;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  max-height: 500px;
}

.new-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  z-index: 10;
}

.image-zoom-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: zoom-in;
}

.main-image {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  width: 100%;
  height: auto;
}

/* Zoom effect on hover with mouse position tracking */
.image-zoom-wrapper:hover .main-image {
  transform: scale(2);
  cursor: zoom-out;
}

.image-zoom-wrapper.zooming .main-image {
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transform: scale(2);
}

/* Disable zoom on touch devices */
@media (hover: none) and (pointer: coarse) {
  .image-zoom-wrapper {
    cursor: default;
    pointer-events: auto;
  }

  .image-zoom-wrapper:hover .main-image,
  .image-zoom-wrapper.zooming .main-image,
  .image-zoom-wrapper.touch-device .main-image {
    transform: scale(1) !important;
    transform-origin: center center !important;
  }
}

/* Additional touch device class support */
.image-zoom-wrapper.touch-device {
  cursor: default;
}

.image-zoom-wrapper.touch-device .main-image {
  transform: scale(1) !important;
  transform-origin: center center !important;
}

.image-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border: none;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.nav-btn:hover {
  background-color: #f5f5f5;
}

.product-details {
  flex: 1;
  padding: 40px;
}

.product-title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.product-subtitle {
  font-size: 14px;
  color: #999;
  margin-bottom: 30px;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  color: #666;
  margin-bottom: 15px;
}

.color-options {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.color-option {
  width: 80px;
  height: 50px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  background-color: #f5f5f5;
  transition: all 0.3s;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-option:hover,
.color-option.active {
  border-color: #333;
}

.color-option img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.size-options {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.size-option {
  min-width: 60px;
  height: 45px;
  border: 1px solid #e0e0e0;
  background-color: #f5f5f5;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: all 0.3s;
}

.size-option:hover {
  border-color: #333;
}

.size-option.active {
  background-color: #333;
  color: white;
  border-color: #333;
}

/* Heel Height Checkbox */
.heel-height-option {
  margin: 20px 0;
}

.heel-height-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  gap: 12px;
}

.heel-height-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.heel-height-checkbox .checkmark {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.heel-height-checkbox:hover .checkmark {
  border-color: #333;
}

.heel-height-checkbox input[type="checkbox"]:checked ~ .checkmark {
  background-color: #222;
  border-color: #222;
}

.heel-height-checkbox input[type="checkbox"]:checked ~ .checkmark::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.heel-height-label {
  font-size: 16px;
  color: #333;
  font-weight: 400;
}

.cart-heel-height-option {
  margin-top: 12px;
}

.cart-heel-height-option .heel-height-checkbox {
  font-size: 14px;
}

.cart-heel-height-option .heel-height-checkbox .checkmark {
  width: 20px;
  height: 20px;
}

.cart-heel-height-option
  .heel-height-checkbox
  input[type="checkbox"]:checked
  ~ .checkmark::after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
}

.cart-heel-height-option .heel-height-label {
  font-size: 14px;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.delivery-info {
  font-size: 13px;
  color: #999;
  margin-bottom: 25px;
}

.action-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.btn-add-bag {
  flex: 1!important;
  padding: 15px 20px!important;
  border: 2px solid #07a58a!important;
  background-color: transparent!important;
  color: #07a58a!important;
  border-radius: 8px!important;
  font-weight: 600!important;
  font-size: 16px!important;
  cursor: pointer!important;
  transition: all 0.3s!important;
  display: flex!important;
  align-items: center!important;
  justify-content: center!important;
  gap: 10px!important;
  text-decoration: none!important;
}

.btn-add-bag:hover {
  background-color: #07a58a;
  color: white;
}

.btn-add-bag i {
  font-size: 18px;
}

.btn-buy-now {
  flex: 1;
  padding: 15px 20px;
  border: none;
  background-color: #07a58a;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.btn-buy-now:hover {
  background-color: #059675;
  color: white;
}

.btn-buy-now i {
  font-size: 14px;
}

.returns-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #999;
  margin-bottom: 30px;
}

.accordion-section {
  border-top: 1px solid #e0e0e0;
  padding: 20px 0;
  cursor: pointer;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #666;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-top: 0;
}

.accordion-section.active .accordion-content {
  max-height: 1000px;
  padding-top: 15px;
}

.accordion-icon {
  transition: transform 0.3s;
}

.accordion-section.active .accordion-icon {
  transform: rotate(180deg);
}

/* Relevant More Shoes Section */
.relevant-products-section {
  padding: 60px 0;
  margin-top: 60px;
  border-top: 1px solid #e0e0e0;
}

.relevant-products-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}

.relevant-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.relevant-product-card {
  position: relative;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.relevant-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.relevant-product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.relevant-product-image {
  position: relative;
  background: #f5f5f5;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.relevant-product-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

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

.relevant-product-image .badge-new {
  position: absolute;
  top: 15px;
  left: 15px;
  background: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
}

.relevant-product-colors {
  display: flex;
  gap: 8px;
  padding: 15px;
  justify-content: center;
}

.relevant-product-colors .color-swatch {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  display: inline-block;
}

.relevant-product-info {
  padding: 0 15px 15px;
  text-align: center;
}

.relevant-product-name {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.relevant-product-price {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.relevant-product-bag-btn {
  width: calc(100% - 30px);
  padding: 12px;
  background: #07a58a;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s;
  margin: 0 15px 15px;
}

.relevant-product-bag-btn:hover {
  background: #059675;
}

.relevant-product-bag-btn i {
  font-size: 14px;
}

@media (max-width: 1200px) {
  .relevant-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .product-section {
    flex-direction: column;
  }

  .thumbnail-container {
    flex-direction: row;
    padding: 20px;
    overflow-x: auto;
  }

  .color-options {
    flex-wrap: wrap;
  }

  .action-buttons {
    flex-direction: column;
  }

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

@media (max-width: 576px) {
  .relevant-products-grid {
    grid-template-columns: 1fr;
  }
  .p-4{
    padding: 0px!important;
  }
  .px-5{
    padding: 0px!important;
  }
  .amico-navbar-v2 {
    padding: 10px 20px 10px 20px!important;
}
}

a {
  text-decoration: none !important;
}

.trigger-btn {
  padding: 15px 30px;
  border: none;
  background-color: #00bfa5;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trigger-btn:hover {
  background-color: #009688;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 191, 165, 0.3);
}

/* Shopping Bag Modal Styles */
.bag-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.bag-overlay.active {
  opacity: 1;
  visibility: visible;
}

.bag-modal {
  position: fixed;
  top: 0;
  right: -500px;
  width: 100%;
  max-width: 500px;
  height: 100%;
  background-color: #e8e8e8;
  z-index: 9999;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  visibility: visible;
  opacity: 1;
}

.bag-modal.active {
  right: 0;
}

.bag-header {
  padding: 25px 30px;
  background-color: #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d0d0d0;
  flex-shrink: 0; /* Prevent header from shrinking */
}

.bag-title {
  font-size: 28px;
  font-weight: 600;
  color: #000;
}

.close-bag {
  width: 35px;
  height: 35px;
  border: 2px solid #333;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s;
}

.close-bag:hover {
  background-color: #333;
  color: white;
}

.bag-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 30px;
  min-height: 0; /* Required for flexbox scrolling to work */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.bag-item {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  transition: all 0.3s;
}

.bag-item-image {
  width: 120px;
  height: 120px;
  background-color: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.bag-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bag-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bag-item-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

.bag-item-title a {
  color: #333;
  text-decoration: none;
}

.bag-item-title a:hover {
  color: #07a58a;
}

.bag-item-variant {
  font-size: 14px;
  color: #999;
  margin: 0;
  line-height: 1.4;
}

.bag-item-price {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.bag-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #f5f5f5;
  border-radius: 50px;
  padding: 6px 12px;
  min-width: 100px;
  justify-content: space-between;
}

.remove-item {
  color: #999;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
  padding: 5px;
  white-space: nowrap;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.remove-item:hover {
  color: #ff5252;
}

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

.qty-btn {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 1;
  border: none;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #666;
  transition: all 0.3s;
  padding: 0;
  flex-shrink: 0;
}

.qty-btn:hover {
  background-color: #e0e0e0;
  color: #333;
}

.qty-btn:active {
  background-color: #d0d0d0;
}

.qty-value {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  min-width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.qty-btn:disabled:hover {
  background-color: transparent;
  color: #666;
}

.qty-btn i,
.remove-item i {
  pointer-events: none;
  display: inline-block;
}

.bag-footer {
  padding: 25px 30px;
  background-color: #e8e8e8;
  border-top: 1px solid #d0d0d0;
  flex-shrink: 0; /* Prevent footer from shrinking */
}

.subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.subtotal-label {
  font-size: 22px;
  font-weight: 600;
  color: #333;
}

.subtotal-amount {
  font-size: 26px;
  font-weight: 700;
  color: #333;
}

.checkout-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-quick-checkout {
  width: 100%;
  padding: 16px;
  border: none;
  background-color: #07a58a;
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  text-align: center;
  display: block;
}

.btn-quick-checkout:hover {
  background-color: #059675;
  color: white;
  text-decoration: none;
}

.btn-login-checkout {
  width: 100%;
  padding: 16px;
  border: 2px solid #07a58a;
  background-color: white;
  color: #07a58a;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  text-align: center;
  display: block;
}

.btn-login-checkout:hover {
  background-color: #07a58a;
  color: white;
  text-decoration: none;
}

.btn-view-cart {
  width: 100%;
  padding: 16px;
  border: 2px solid #07a58a;
  background-color: white;
  color: #07a58a;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  text-align: center;
  display: block;
}

.btn-view-cart:hover {
  background-color: #07a58a;
  color: white;
  text-decoration: none;
}

.guarantee-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 13px;
  color: #333;
}

.guarantee-icon {
  width: 20px;
  height: 20px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
}

.empty-bag {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.empty-bag i {
  font-size: 60px;
  margin-bottom: 20px;
  opacity: 0.3;
}

.empty-bag h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #666;
}

@media (max-width: 768px) {
	.rating-card{
		display:none;
	}
	.testimonial{
		display:none;
	}
	.reviewer{
		display:none;
	}
	
  .bag-modal {
    max-width: 100%;
  }

  body {
    padding: 16px;
  }
	.logo{
		width:120px;
	}
}

@keyframes slideOut {
  to {
    opacity: 0;
    transform: translateX(50px);
  }
}

.sidebar {
  width: 300px;
  background-color: #f8f8f8;
  padding: 40px 20px;
  border-right: 1px solid #e0e0e0;
}

.sidebar-menu {
  list-style: none;
}

.menu-item {
  margin-bottom: 5px;
}

.menu-button {
  width: 100%;
  padding: 15px 20px;
  border: none;
  background-color: transparent;
  color: #333;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s;
  display: block;
}

.menu-button:hover {
  background-color: #e8e8e8;
}

.menu-button.active {
  background-color: #e0e0e0;
  color: #000;
  font-weight: 600;
}

/* Content Area Styles */
.content-area {
  flex: 1;
  padding: 60px 80px;
  overflow-y: auto;
}

.content-section {
  display: none;
}

.content-section.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.page-title {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin-bottom: 40px;
}

.policy-list {
  list-style: none;
}

.policy-item {
  margin-bottom: 30px;
  line-height: 1.8;
  color: #555;
}

.policy-item::before {
  content: "•";
  color: #000;
  font-weight: bold;
  font-size: 20px;
  margin-right: 15px;
}

.policy-label {
  font-weight: 600;
  color: #000;
}

.section-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  margin-top: 20px;
}

.info-box {
  background-color: #f9f9f9;
  padding: 20px;
  border-left: 4px solid #00bfa5;
  margin: 20px 0;
  border-radius: 4px;
}

.info-box p {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #555;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    padding: 20px;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .content-area {
    padding: 40px 30px;
  }

  .page-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .content-area {
    padding: 30px 20px;
  }

  .page-title {
    font-size: 24px;
  }

  .menu-button {
    padding: 12px 15px;
    font-size: 14px;
  }
}
.object-fit-cover {
  object-fit: cover;
}

.form-control {
  background: #e0e0e0;
  border: none;
}

.form-control:focus {
  box-shadow: none;
  background: #d5d5d5;
}

.btn-success {
  background-color: #4fa88b;
  border: none;
}

.btn-success:hover {
  background-color: #449b7f;
}

/* Cart Page Styles */
.cart-page-wrapper {
  background: #f8f8f8;
  min-height: 100vh;
}

.shopping-bag-section {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
}

.shopping-bag-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.cart-item-wrapper {
  border-bottom: 1px solid #e0e0e0;
  padding: 1.5rem 0;
}

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

.cart-item {
  gap: 1.5rem;
  position: relative;
}

.cart-item-image {
  flex-shrink: 0;
}

.cart-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}

.cart-item-details {
  position: relative;
  padding-right: 100px;
  flex-grow: 1;
}

.cart-item-title {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0;
  line-height: 1.4;
}

.cart-item-title a {
  color: #000;
  text-decoration: none;
}

.cart-item-title a:hover {
  color: #04a98e;
}

.cart-item-variation {
  font-size: 14px;
  color: #666;
  margin: 0;
  text-transform: capitalize;
}

.cart-item-price {
  margin: 0.75rem 0;
}

.cart-item-price .current-price {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-right: 0.5rem;
}

.cart-item-price .original-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: #f0f0f0;
  border-color: #04a98e;
  color: #04a98e;
}

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

.qty-value {
  min-width: 40px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  color: #000;
}

.cart-remove-link {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}

.cart-remove-link:hover {
  color: #e74c3c;
}

/* Order Summary Styles */
.summary-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.summary-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0 0 1.5rem 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.summary-row:last-of-type {
  border-bottom: none;
}

.summary-subtotal {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.summary-label {
  font-size: 16px;
  color: #333;
}

.summary-subtotal .summary-label {
  font-weight: 600;
  font-size: 18px;
}

.summary-value {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.summary-subtotal .summary-value {
  font-weight: 600;
  font-size: 18px;
}

.summary-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-quick-checkout {
  background: #04a98e;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.875rem 1.5rem;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
}

.btn-quick-checkout:hover {
  background: #038a73;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 169, 142, 0.3);
}

.btn-login-checkout {
  background: #fff;
  color: #04a98e;
  border: 2px solid #04a98e;
  border-radius: 50px;
  padding: 0.875rem 1.5rem;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s;
}

.btn-login-checkout:hover {
  background: #04a98e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 169, 142, 0.3);
}

.guarantee-text {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 14px;
  color: #666;
}

@media (max-width: 991px) {
  .cart-item-details {
    padding-right: 0;
  }

  .cart-remove-link {
    position: static;
    margin-top: 0.5rem;
    display: inline-block;
  }
}

/* Checkout Page Styles */
.checkout-page-wrapper {
  background: #f8f8f8;
  min-height: 100vh;
}

.checkout-form-section {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
}

.checkout-title {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.delivery-info-section {
  margin-bottom: 2rem;
}

.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-input {
  margin-bottom: 0 !important;
}

.checkout-input input[type="text"],
.checkout-input input[type="tel"],
.checkout-input input[type="email"],
.checkout-input textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #f5f5f5;
  font-size: 16px;
  color: #333;
  transition: all 0.2s;
}

.checkout-input input[type="text"]:focus,
.checkout-input input[type="tel"]:focus,
.checkout-input input[type="email"]:focus,
.checkout-input textarea:focus {
  outline: none;
  border-color: #04a98e;
  background: #fff;
}

.checkout-input label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
  display: block;
}

/* Payment Option Radio Buttons */
.payment-option-section {
  margin-bottom: 2rem;
}

.payment-options-radio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-option-item {
  display: flex;
  align-items: flex-start;
}

.payment-option-item input[type="radio"] {
  width: 20px;
  height: 20px;
  margin: 0;
  margin-right: 0.75rem;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #04a98e;
}

.payment-option-item label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  flex: 1;
}

.payment-option-label {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 0.25rem;
}

.payment-option-note {
  font-size: 14px;
  color: #666;
}

/* Payment Methods Grid */
.payment-methods-section {
  margin-bottom: 2rem;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.payment-method-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.payment-method-btn:hover {
  border-color: #04a98e;
  background: #f0fdfa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 169, 142, 0.1);
}

.payment-method-btn.active {
  border-color: #04a98e;
  background: #f0fdfa;
  box-shadow: 0 4px 12px rgba(4, 169, 142, 0.2);
}

.payment-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.bkash-icon {
  background: #e2136e;
  color: #fff;
}

.rocket-icon {
  background: #7b2cbf;
  color: #fff;
}

.nagad-icon {
  background: #f97316;
  color: #fff;
}

.card-icon {
  background: #3b82f6;
  color: #fff;
}

.payment-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

/* Checkout Summary Card */
.checkout-summary-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 20px;
}

.checkout-summary-card .summary-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0 0 1.5rem 0;
}

.checkout-summary-card .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.checkout-summary-card .summary-row:last-of-type {
  border-bottom: none;
}

.checkout-summary-card .summary-subtotal {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.checkout-summary-card .summary-label {
  font-size: 16px;
  color: #333;
}

.checkout-summary-card .summary-subtotal .summary-label {
  font-weight: 600;
  font-size: 18px;
}

.checkout-summary-card .summary-value {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.checkout-summary-card .summary-subtotal .summary-value {
  font-weight: 600;
  font-size: 18px;
}

/* Proceed to Payment Button */
.btn-proceed-payment {
  background: #04a98e;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  display: block;
  width: 100%;
  margin-top: 2rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-proceed-payment:hover {
  background: #038a73;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 169, 142, 0.3);
}

.btn-proceed-payment:active {
  transform: translateY(0);
}

/* COD Payment Confirmation Modal (bKash style) */
.amico-cod-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.amico-cod-confirm-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.amico-cod-confirm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.amico-cod-confirm-box {
  position: relative;
  background: #f5f5f5;
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.amico-cod-confirm-header {
  text-align: center;
  margin-bottom: 1rem;
}
.amico-cod-confirm-logo {
  height: 36px;
  width: auto;
  display: inline-block;
}
.amico-cod-confirm-qr-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.amico-cod-confirm-qr {
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.amico-cod-confirm-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.amico-cod-confirm-number {
  text-align: center;
  font-size: 15px;
  color: #333;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.amico-cod-confirm-form .amico-cod-confirm-label {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 0.5rem;
}
.amico-cod-confirm-input-wrap {
  position: relative;
  margin-bottom: 0.5rem;
}
.amico-cod-confirm-input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 0.875rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  background: #fff;
  box-sizing: border-box;
}
.amico-cod-confirm-input:focus {
  outline: none;
  border-color: #e2136e;
}
.amico-cod-confirm-check {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #04a98e;
  border-radius: 50%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0;
  transition: opacity 0.2s;
}
.amico-cod-confirm-input-wrap.has-value .amico-cod-confirm-check {
  opacity: 1;
}
.amico-cod-confirm-error {
  font-size: 13px;
  color: #c00;
  margin-bottom: 0.75rem;
}
.amico-cod-confirm-btn {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #e2136e;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.amico-cod-confirm-btn:hover {
  background: #c00f5c;
}
.amico-cod-confirm-cancel {
  display: block;
  width: 100%;
  padding: 0.5rem;
  background: transparent;
  color: #666;
  border: none;
  font-size: 14px;
  cursor: pointer;
  margin-top: 0.5rem;
}
.amico-cod-confirm-cancel:hover {
  color: #333;
}

/* Hide default WooCommerce checkout elements */
#order_review .shop_table {
  display: none;
}

.woocommerce-checkout-review-order-table {
  display: none !important;
}

@media (max-width: 991px) {
  .checkout-summary-card {
    position: static;
    margin-top: 2rem;
  }

  .payment-methods-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Order Received / Thank You Page Styles
   ============================================ */

.thankyou-page-wrapper {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Order Received Message */
.order-received-message {
  background: #fff;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.order-received-message .success-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.order-received-message .success-icon svg {
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.order-received-message .woocommerce-thankyou-order-received {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

/* Order Details Card */
.order-details-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.order-details-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f5f5f5;
}

.woocommerce-order-overview {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.woocommerce-order-overview li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.woocommerce-order-overview li:hover {
  background: #f5f5f5;
  transform: translateX(4px);
}

.woocommerce-order-overview li .detail-label {
  font-size: 16px;
  color: #666;
  font-weight: 400;
  padding-left:12px;
}

.woocommerce-order-overview li .detail-value {
  font-size: 16px;
  color: #07a58a;
  font-weight: 600;
}

.woocommerce-order-overview li.woocommerce-order-overview__total {
  background: #07a58a;
  color: #fff;
  margin-top: 0.5rem;
}

.woocommerce-order-overview li.woocommerce-order-overview__total .detail-label {
  color: #fff;
  font-weight: 500;
}

.woocommerce-order-overview li.woocommerce-order-overview__total .detail-value {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

/* Order Failed Message */
.order-failed-message {
  background: #fff;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 2px solid #fee;
}

.order-failed-message .error-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.order-failed-message .woocommerce-thankyou-order-failed {
  font-size: 18px;
  color: #dc3545;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.order-failed-message .woocommerce-thankyou-order-failed-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.order-failed-message .woocommerce-thankyou-order-failed-actions .button {
  background: #07a58a;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.order-failed-message .woocommerce-thankyou-order-failed-actions .button:hover {
  background: #038a73;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 169, 142, 0.3);
}

/* Order Items Table (if shown) */
.woocommerce-order-details {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.woocommerce-order-details h2 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f5f5f5;
}

.woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-table--order-details thead {
  background: #f9f9f9;
}

.woocommerce-table--order-details th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #333;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.woocommerce-table--order-details td {
  padding: 1rem;
  border-top: 1px solid #f5f5f5;
  color: #666;
}

.woocommerce-table--order-details tbody tr:hover {
  background: #f9f9f9;
}

/* Customer Details */
.woocommerce-customer-details {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.woocommerce-customer-details h2 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f5f5f5;
}

.woocommerce-customer-details address {
  font-style: normal;
  line-height: 1.8;
  color: #666;
}

.woocommerce-customer-details .woocommerce-customer-details--phone,
.woocommerce-customer-details .woocommerce-customer-details--email {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f5f5f5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .thankyou-page-wrapper {
    margin: 1rem auto;
    padding: 0 0.5rem;
  }

  .order-received-message {
    padding: 2rem 1.5rem;
  }

  .order-received-message .woocommerce-thankyou-order-received {
    font-size: 20px;
  }

  .order-details-card {
    padding: 1.5rem;
  }

  .woocommerce-order-overview li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .woocommerce-order-overview li .detail-label {
    font-size: 14px;
  }

  .woocommerce-order-overview li .detail-value {
    font-size: 16px;
  }

  .order-failed-message {
    padding: 2rem 1.5rem;
  }

  .order-failed-message .woocommerce-thankyou-order-failed-actions {
    flex-direction: column;
  }

  .order-failed-message .woocommerce-thankyou-order-failed-actions .button {
    width: 100%;
  }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet and below (max-width: 991px) */
@media (max-width: 991px) {
  /* Header and Navigation */
  .heading-bg {
    margin: 1rem;
    border-radius: 16px;
    min-height: 140px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  /* Hero Section */
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }

	
  .hero-content h1 {
    font-size: 48px;
    line-height: 56px;
  }

  .sub-text {
    font-size: 18px;
    line-height: 28px;
  }

  .btn-shop {
    padding: 12px 28px;
    font-size: 18px;
    margin-bottom: 60px;
  }

  .btn-shop span {
    font-size: 20px;
  }

  .testimonial {
    max-width: 100%;
  }

  .testimonial p {
    font-size: 16px;
  }

  .rating-card {
    width: 240px;
    height: 110px;
    padding: 20px;
  }

  /* Category Section */
  .category-section {
    padding: 60px 0;
  }

  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 30px;
  }

  .category-header h2 {
    font-size: 28px;
  }

  .category-scroll {
    gap: 30px;
  }

  .category-item {
    width: 150px;
  }

  .category-circle {
    width: 150px;
    height: 150px;
  }

  .category-circle img {
    max-width: 90px;
    max-height: 90px;
  }

  .category-item p {
    font-size: 14px;
  }

  /* Product Section */
  .product-section {
    padding: 60px 0;
  }

  .product-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 30px;
  }

  .tabs span {
    font-size: 24px;
    margin-right: 30px;
  }

  .heading-bg .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading-bg.m-4 {
    margin: 1rem !important;
  }

  .heading-bg .px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .amico-navbar .amico-navbar-inner {
    flex-wrap: wrap;
  }

  .search-box,
  .search-box-v2 {
    width: 180px;
    font-size: 13px;
  }


  /* Product Cards */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .product-card {
    margin-bottom: 1.5rem;
  }

  .product-img {
    padding: 40px 20px;
  }

  .product-img img {
    min-width: 200px;
  }

  .product-info {
    padding: 20px;
  }

  .card-footer .bag-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .card-footer .price-current {
    font-size: 20px;
  }

  /* Single Product Page */
  .product-section {
    flex-direction: column;
    gap: 2rem;
  }

  .thumbnail-container {
    flex-direction: row;
    overflow-x: auto;
    padding: 1rem;
    gap: 0.5rem;
  }

  .thumbnail-item {
    min-width: 80px;
    height: 80px;
  }

  .main-image-container {
    width: 100%;
    padding: 20px;
    max-height: none;
  }

  /* Disable zoom on mobile devices */
  .image-zoom-wrapper {
    cursor: default;
    pointer-events: auto;
    width: 100%;
    height: auto;
  }

  .image-zoom-wrapper:hover .main-image,
  .image-zoom-wrapper.zooming .main-image {
    transform: scale(1);
    transform-origin: center center;
  }

  .main-image {
    max-width: 100%;
    max-height: none;
    width: 100%;
    height: auto;
  }

  .image-nav {
    bottom: 10px;
  }

  .nav-btn {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  .product-details {
    padding: 2rem 1.5rem;
  }

  .product-title {
    font-size: 28px;
  }

  .color-options {
    flex-wrap: wrap;
    gap: 10px;
  }

  .color-option {
    width: 120px;
    height: 80px;
  }

  .size-options {
    gap: 8px;
  }

  .size-option {
    min-width: 50px;
    height: 40px;
    font-size: 14px;
  }

  .price {
    font-size: 32px;
  }

  .action-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-add-bag,
  .btn-buy-now {
    width: 100%;
    padding: 14px 20px;
  }

  /* Cart Page */
  .cart-item {
    flex-direction: column;
    gap: 1rem;
  }

  .cart-item-image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }

  .cart-item-details {
    text-align: center;
  }

  .qty-controls {
    justify-content: center;
  }

  .cart-remove-link {
    position: static;
    margin-top: 1rem;
    text-align: center;
  }

  /* Checkout Page */
  .checkout-form-section {
    padding: 1.5rem;
  }

  .checkout-title {
    font-size: 20px;
  }

  .checkout-fields {
    flex-direction: column;
    gap: 1rem;
  }

  .checkout-fields .form-group {
    width: 100%;
  }

  .payment-methods-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Bag Modal */
  .bag-modal {
    max-width: 100%;
    right: -100%;
  }

  .bag-header {
    padding: 20px;
  }

  .bag-title {
    font-size: 24px;
  }

  .bag-content {
    padding: 15px 20px;
  }

  .bag-item {
    flex-direction: column;
    padding: 15px;
  }

  .bag-item-image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }

  .bag-item-details {
    text-align: center;
  }

  .bag-item-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .bag-footer {
    padding: 20px;
  }

  /* Footer */
  .amico-footer {
    padding: 2rem 1rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1rem;
  }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {

  .show-now-mobile{
    display: flex;
    justify-content: center;
  }
  /* Header */
  .heading-bg {
    margin: 0.5rem;
	background-image: url("../img/backround-mobile.jpeg");
    border-radius: 12px;
    min-height: 120px;
    padding: 1rem;
  }

  /* Hero Section */
  .hero-section {
    min-height: 60vh;
    padding: 1.5rem 0;
  }

  .hero-content h1 {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
  }

  .sub-text {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .btn-shop {
    padding: 10px 24px;
    font-size: 16px;
    margin-bottom: 40px;
    width: auto;
    justify-content: center;
  }

  .btn-shop span {
    font-size: 18px;
  }

  .testimonial {
    max-width: 100%;
    text-align: center;
  }

  .testimonial p {
    font-size: 14px;
  }

  .rating-card {
    width: 100%;
    max-width: 280px;
    height: auto;
    padding: 20px;
    margin: 0 auto;
  }

  /* Category Section */
  .category-section {
    padding: 40px 0;
  }

  .category-header {
    margin-bottom: 20px;
  }

  .category-header h2 {
    font-size: 24px;
  }

  .nav-arrows {
    display: none;
  }

  .category-scroll {
    gap: 20px;
  }

  .category-item {
    width: 120px;
  }

  .category-circle {
    width: 120px;
    height: 120px;
  }

  .category-circle img {
    max-width: 70px;
    max-height: 70px;
  }

  .category-item p {
    font-size: 13px;
  }

  /* Product Section */
  .product-section {
    padding: 40px 0;
  }

  .product-header {
    margin-bottom: 20px;
  }

  .tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .tabs span {
    font-size: 20px;
    margin-right: 0;
  }

  .heading-bg .container-fluid {
    padding: 0;
  }

  .heading-bg.m-4 {
    margin: 0rem !important;
  }

  .heading-bg .px-5 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .amico-navbar .amico-mobile-nav {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
  }

  .amico-navbar .amico-mobile-nav .nav-link {
    font-size: 14px;
    padding: 0.5rem 0;
  }

  .search-box,
  .search-box-v2 {
    width: 100%;
    max-width: 100%;
    margin-top: 0.5rem;
  }

  .icon-link,
  .icon-link-v2 {
    font-size: 12px;
    gap: 4px;
  }

  .icon-link img,
  .icon-link-v2 img {
    width: 16px;
    height: 16px;
  }

  /* Product Grid */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-card {
    margin-bottom: 1rem;
  }

  .product-img {
    padding: 30px 15px;
  }

  .product-info {
    padding: 16px;
  }

  .img-wrap {
    padding: 20px;
  }

  .card-body {
    padding: 12px;
  }

  .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .card-footer .bag-btn {
    width: 100%;
    justify-content: center;
  }

  /* Single Product Page */
  .product-details {
    padding: 1.5rem 1rem;
  }

  .product-title {
    font-size: 24px;
  }

  .product-subtitle {
    font-size: 12px;
  }

  .section-title {
    font-size: 14px;
  }

  .color-option {
    width: 100px;
    height: 70px;
  }

  .size-option {
    min-width: 45px;
    height: 35px;
    font-size: 12px;
  }

  .price {
    font-size: 28px;
  }

  .delivery-info {
    font-size: 12px;
  }

  .action-buttons {
    gap: 8px;
  }

  .btn-add-bag,
  .btn-buy-now {
    font-size: 14px;
    padding: 12px 16px;
  }

  /* Cart Page */
  .shopping-bag-title {
    font-size: 20px;
    margin-bottom: 1.5rem;
  }

  .cart-item-wrapper {
    margin-bottom: 1rem;
  }

  .cart-item {
    padding: 1rem;
  }

  .cart-item-image {
    width: 100px;
    height: 100px;
  }

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

  .cart-item-variation {
    font-size: 12px;
  }

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

  .qty-controls {
    gap: 0.5rem;
  }

  .qty-btn {
    width: 24px;
    height: 24px;
    min-width: 24px;
    font-size: 12px;
  }

  .qty-value {
    font-size: 14px;
    min-width: 30px;
  }

  .cart-remove-link {
    font-size: 12px;
    padding: 0.5rem;
  }

  .summary-card {
    padding: 1.5rem;
  }

  .summary-title {
    font-size: 18px;
  }

  .summary-row {
    font-size: 14px;
  }

  .btn-quick-checkout,
  .btn-login-checkout {
    font-size: 14px;
    padding: 12px 16px;
  }

  /* Checkout Page */
  .checkout-page-wrapper {
    padding: 1rem 0.5rem;
  }

  .checkout-form-section {
    padding: 1rem;
    border-radius: 12px;
  }

  .checkout-title {
    font-size: 18px;
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 16px;
  }

  .checkout-fields {
    gap: 0.75rem;
  }

  .form-control,
  .form-select {
    font-size: 14px;
    padding: 10px 12px;
  }

  .payment-methods-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .payment-method-btn {
    padding: 12px 16px;
    font-size: 14px;
  }

  .checkout-summary-card {
    padding: 1.5rem 1rem;
    margin-top: 1.5rem;
  }

  .summary-subtotal .summary-label,
  .summary-subtotal .summary-value {
    font-size: 16px;
  }

  .btn-proceed-payment {
    font-size: 14px;
    padding: 14px 16px;
  }

  /* Bag Modal */
  .bag-modal {
    max-width: 100%;
    right: -100%;
  }

  .bag-header {
    padding: 15px 20px;
  }

  .bag-title {
    font-size: 20px;
  }

  .close-bag {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .bag-content {
    padding: 15px;
  }

  .bag-item {
    padding: 12px;
    margin-bottom: 15px;
    gap: 12px;
  }

  .bag-item-image {
    width: 80px;
    height: 80px;
  }

  .bag-item-title {
    font-size: 14px;
  }

  .bag-item-variant {
    font-size: 11px;
  }

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

  .quantity-control {
    padding: 2px 6px;
  }

  .qty-btn {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

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

  .bag-footer {
    padding: 15px;
  }

  .subtotal-row {
    font-size: 14px;
  }

  .checkout-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn-quick-checkout,
  .btn-login-checkout,
  .btn-view-cart {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }

  /* Footer */
  .amico-footer {
    padding: 1.5rem 1rem;
    margin-top: 2rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-text {
    font-size: 13px;
    line-height: 1.6;
  }

  .newsletter-wrapper {
    align-items: center;
    width: 100%;
  }

  .newsletter-wrapper h5 {
    text-align: center;
    margin-bottom: 12px;
  }

  .newsletter-box {
    width: 100%;
    max-width: 420px;
  }

  .newsletter-box form {
    flex-direction: row;
  }

  .newsletter-box input {
    flex: 1;
    min-width: 0;
  }

  .newsletter-message {
    width: 100%;
    max-width: 420px;
    margin-top: 10px;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
	 text-align: left;
  }

  .footer-links .links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-links .links a {
    font-size: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    font-size: 12px;
  }

  /* Order Received Page */
  .thankyou-page-wrapper {
    margin: 1rem auto;
    padding: 0 0.5rem;
  }

  .order-received-message {
    padding: 2rem 1rem;
  }

  .order-received-message .woocommerce-thankyou-order-received {
    font-size: 18px;
  }

  .order-details-card {
    padding: 1.5rem 1rem;
  }

  .order-details-title {
    font-size: 18px;
  }

  .woocommerce-order-overview li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem;
  }

  .woocommerce-order-overview li .detail-label {
    font-size: 12px;
  }

  .woocommerce-order-overview li .detail-value {
    font-size: 14px;
  }

  .woocommerce-order-overview
    li.woocommerce-order-overview__total
    .detail-value {
    font-size: 18px;
  }

  /* Category Scroll */
  .category-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-arrows {
    display: none;
  }

  /* Accordions */
  .accordion-button {
    font-size: 14px;
    padding: 12px 16px;
  }

  .accordion-body {
    font-size: 13px;
    padding: 12px 16px;
  }
}

/* Small mobile devices (max-width: 576px) */
@media (max-width: 576px) {
  /* Header */
  .heading-bg {
    margin: 0.25rem;
    border-radius: 8px;
    min-height: 100px;
    padding: 0.75rem;
  }

  /* Hero Section */
  .hero-section {
    min-height: 50vh;
    padding: 1rem 0;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .sub-text {
    font-size: 14px;
    line-height: 20px;
  }

  .btn-shop {
    padding: 10px 20px;
    font-size: 14px;
    margin-bottom: 30px;
  }

  .btn-shop span {
    font-size: 16px;
  }

  .testimonial p {
    font-size: 13px;
  }

  .rating-card {
    padding: 15px;
  }

  /* Category Section */
  .category-section {
    padding: 30px 0;
  }

  .category-header h2 {
    font-size: 20px;
  }

  .category-item {
    width: 100px;
  }

  .category-circle {
    width: 100px;
    height: 100px;
  }

  .category-circle img {
    max-width: 60px;
    max-height: 60px;
  }

  .category-item p {
    font-size: 12px;
  }

  /* Product Section */
  .product-section {
    padding: 30px 0;
  }

  /* Single Product Page - Mobile Optimized */
  .main-image-container {
    padding: 15px;
    max-height: none;
    min-height: auto;
  }

  .image-zoom-wrapper {
    width: 100%;
    height: auto;
    cursor: default;
    overflow: visible;
  }

  .image-zoom-wrapper:hover .main-image,
  .image-zoom-wrapper.zooming .main-image {
    transform: scale(1) !important;
    transform-origin: center center !important;
  }

  .main-image {
    max-width: 100%;
    max-height: none;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .image-nav {
    bottom: 8px;
    gap: 8px;
  }

  .nav-btn {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }

  .thumbnail-container {
    padding: 0.5rem;
    gap: 0.5rem;
  }

  .thumbnail {
    min-width: 60px;
    height: 60px;
  }

  .tabs span {
    font-size: 18px;
  }


  .amico-navbar .nav-link {
    font-size: 13px;
  }

  .search-box,
  .search-box-v2 {
    padding: 6px 12px;
    font-size: 12px;
  }

  /* Product Cards */
  .card-footer .price-current {
    font-size: 18px;
  }

  .card-footer .price-original {
    font-size: 14px;
  }

  .card-footer .bag-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Single Product */
  .product-details {
    padding: 1rem 0.75rem;
  }

  .product-title {
    font-size: 20px;
  }

  .color-option {
    width: 80px;
    height: 60px;
  }

  .size-option {
    min-width: 40px;
    height: 32px;
    font-size: 11px;
  }

  .price {
    font-size: 24px;
  }

  /* Cart Page */
  .cart-item-image {
    width: 80px;
    height: 80px;
  }

  .cart-item-title {
    font-size: 14px;
  }

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

  /* Checkout */
  .checkout-form-section {
    padding: 0.75rem;
  }

  .checkout-title {
    font-size: 16px;
  }

  .form-control,
  .form-select {
    font-size: 13px;
    padding: 8px 10px;
  }

  /* Bag Modal */
  .bag-item-image {
    width: 70px;
    height: 70px;
  }

  .bag-item-title {
    font-size: 13px;
  }

  .bag-item-price {
    font-size: 14px;
  }

  /* Footer */
  .footer-text {
    font-size: 12px;
  }

  .footer-links .links a {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 11px;
  }
}

/* Extra small devices (max-width: 375px) */
@media (max-width: 375px) {
  .heading-bg {
    padding: 0.5rem;
  }

  .product-title {
    font-size: 18px;
  }

  .price {
    font-size: 20px;
  }

  .bag-modal {
    max-width: 100%;
  }

  .bag-header {
    padding: 12px 15px;
  }

  .bag-title {
    font-size: 18px;
  }

  .bag-content {
    padding: 12px;
  }
}

/* My Account Page - Modal Style */
.my-account-wrapper {
  min-height: calc(100vh - 200px);
  padding: 40px 0;
  background: #f5f7f9;
}

.my-account-modal-style {
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 600px;
}

.my-account-wrapper .bg-light {
  background: #f8f9fa !important;
}

/* Account Navigation */
.amico-account-navigation .nav-pills {
  gap: 10px;
}

.amico-account-navigation .nav-link {
  color: #6c757d;
  font-weight: 400;
  font-size: 16px;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border: none !important;
  background: transparent !important;
}

.amico-account-navigation .nav-link:hover {
  color: #198754;
  background: rgba(25, 135, 84, 0.1) !important;
}

.amico-account-navigation .nav-link.active,
.amico-account-navigation .nav-link[aria-current="page"] {
  color: #198754;
  background: rgba(25, 135, 84, 0.1) !important;
  font-weight: 600;
}

/* My Account Content */
.woocommerce-MyAccount-content {
  font-size: 16px;
  line-height: 1.6;
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3,
.woocommerce-MyAccount-content h4 {
  color: #333;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.woocommerce-MyAccount-content .form-row {
  margin-bottom: 1rem;
}

.woocommerce-MyAccount-content .form-control {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.woocommerce-MyAccount-content .form-control:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

.woocommerce-MyAccount-content .woocommerce-Button,
.woocommerce-MyAccount-content .button {
  background-color: #198754;
  border-color: #198754;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.woocommerce-MyAccount-content .woocommerce-Button:hover,
.woocommerce-MyAccount-content .button:hover {
  background-color: #157347;
  border-color: #146c43;
  color: #fff;
}

/* Orders Table */
.woocommerce-MyAccount-content .woocommerce-orders-table {
  width: 100%;
  margin-top: 1.5rem;
}

.woocommerce-MyAccount-content .woocommerce-orders-table th,
.woocommerce-MyAccount-content .woocommerce-orders-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}

.woocommerce-MyAccount-content .woocommerce-orders-table th {
  font-weight: 600;
  color: #333;
  background: #f8f9fa;
}

/* Edit Account Form */
.woocommerce-MyAccount-content .woocommerce-EditAccountForm {
  max-width: 600px;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm input[type="text"],
.woocommerce-MyAccount-content .woocommerce-EditAccountForm input[type="email"],
.woocommerce-MyAccount-content
  .woocommerce-EditAccountForm
  input[type="password"] {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}

/* My Account Dashboard styles moved to dedicated file: assets/css/my-account.css */
/* This prevents conflicts with other page styles */
