.hd-container {
  width: 100%;
  max-width: 1530px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}



@media (max-width: 1399.98px) {
  .hd-container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 991.98px) {
  .hd-container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767.98px) {
  .hd-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ============================================================
   INTERACTIVE STATES & ENHANCEMENTS
   Fashion ecommerce premium feel
============================================================ */

/* --- Header icon buttons hover/focus states --- */
.header__icon-btn {
  transition: color 0.25s ease, transform 0.2s ease;
  color: var(--color-text-dark);
}

.header__icon-btn:hover {
  color: var(--color-primary);
  transform: translateY(-1px);
}

.header__icon-btn:active {
  transform: translateY(0) scale(0.95);
}

.header__icon-btn svg {
  transition: stroke 0.25s ease;
}

.header__icon-btn:hover svg {
  stroke: var(--color-primary);
}

/* --- Header search button --- */
.header__search-btn {
  transition: background-color 0.25s ease, transform 0.15s ease;
}

.header__search-btn:hover {
  background-color: var(--color-primary);
}

.header__search-btn:active {
  transform: scale(0.94);
}

/* --- Top nav link underline animation --- */
.header__top-nav a {
  position: relative;
  transition: color 0.25s ease;
}

.header__top-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease, left 0.3s ease;
}

.header__top-nav a:hover {
  opacity: 1;
  color: var(--color-primary);
}

.header__top-nav a:hover::after {
  width: 100%;
  left: 0;
}

/* ============================================================
   MEGAMENU STYLES
============================================================ */

/* --- Megamenu bar layout --- */
.megamenu-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
}

/* --- Separator dots --- */
.megamenu-sep {
  width: 1px;
  height: 50px;
  /* border-radius: 50%; */
  background: var(--color-border);
  flex-shrink: 0;
  margin: 0 6px;
  opacity: 0.6;
}

/* --- Individual megamenu item (category) --- */
.megamenu-item {
  position: static;
  flex-shrink: 0;
}

/* --- Trigger link (category label) --- */
.megamenu-trigger {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-14);
  color: var(--color-black);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

/* Gold accent underline on hover */
.megamenu-trigger::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-primary));
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), left 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.megamenu-item:hover .megamenu-trigger,
.megamenu-item.is-active .megamenu-trigger {
  color: var(--color-primary);
}

.megamenu-item:hover .megamenu-trigger::after,
.megamenu-item.is-active .megamenu-trigger::after {
  width: 80%;
  left: 10%;
}

/* --- Chevron icon animation --- */
.megamenu-chevron {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  opacity: 0.4;
  flex-shrink: 0;
}

.megamenu-item:hover .megamenu-chevron,
.megamenu-item.is-active .megamenu-chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--color-primary);
}

/* --- Dropdown Panel --- */
.megamenu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0.35s,
              transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.megamenu-item:hover .megamenu-dropdown,
.megamenu-item.is-active .megamenu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* --- Dropdown Inner Container --- */
.megamenu-dropdown__inner {
  max-width: 1530px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  padding: 36px 48px 40px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--color-gold), var(--color-primary), var(--color-gold)) 1;
  box-shadow: 0 20px 60px -10px rgba(142, 31, 70, 0.12),
              0 8px 24px -6px rgba(0, 0, 0, 0.06);
}

/* --- Megamenu Column (child category group) --- */
.megamenu-col {
  flex: 1;
  min-width: 0;
  padding: 0 28px;
  border-right: 1px solid rgba(218, 218, 218, 0.4);
  animation: megaColFadeIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.megamenu-col:first-child {
  padding-left: 0;
}

.megamenu-col:last-child {
  border-right: none;
  padding-right: 0;
}

/* Staggered animation delay for each column */
.megamenu-col:nth-child(1) { animation-delay: 0.05s; }
.megamenu-col:nth-child(2) { animation-delay: 0.1s; }
.megamenu-col:nth-child(3) { animation-delay: 0.15s; }
.megamenu-col:nth-child(4) { animation-delay: 0.2s; }

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

/* --- Column Title (child category name) --- */
.megamenu-col__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-primary);
  text-transform: capitalize;
  margin-bottom: 16px;
  padding-bottom: 10px;
  position: relative;
  letter-spacing: 0.01em;
}

.megamenu-col__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.megamenu-col:hover .megamenu-col__title::after {
  width: 50px;
}

/* --- Grandchild Links --- */
.megamenu-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.megamenu-col ul li a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-14);
  color: var(--color-text-mid);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  transition: color 0.25s ease, padding-left 0.3s cubic-bezier(0.22, 1, 0.36, 1), gap 0.3s ease;
}

.megamenu-col ul li a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

.megamenu-col ul li a:hover {
  color: var(--color-primary);
  padding-left: 4px;
  gap: 8px;
}

.megamenu-col ul li a:hover::before {
  width: 14px;
}

/* --- Highlight / Promo Column --- */
.megamenu-col--highlight {
  border-right: none;
  min-width: 220px;
  max-width: 260px;
  flex: 0 0 auto;
}

.megamenu-promo {
  background: linear-gradient(145deg, #fdf2f7, #fff5ee, #fef0f5);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.megamenu-promo:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(142, 31, 70, 0.12);
}

/* Decorative shimmer */
.megamenu-promo::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 166, 60, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.megamenu-promo__badge {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
}

.megamenu-promo__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-primary-dark);
  line-height: 1.2;
  margin: 0;
}

.megamenu-promo__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--color-text-mid);
  line-height: 1.5;
  margin: 0;
}

.megamenu-promo__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease, color 0.25s ease;
}

.megamenu-promo__link:hover {
  gap: 8px;
  color: var(--color-primary-dark);
}

/* --- Overlay --- */
.megamenu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  pointer-events: none; /* always none — never intercept mouse */
  /* backdrop-filter: blur(2px); ← remove this entirely */
}

.megamenu-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: none; /* keep none even when visible */
}
/* --- Ensure category-nav is positioned for dropdown --- */
#category-megamenu {
  position: relative;
  overflow: visible;
  height: auto;
  min-height: 54px;
}

/* --- Responsive Header (Mobile & Tablet) --- */
@media (max-width: 1024px) {
  /* Hide the megamenu completely on mobile/tablet */
  #category-megamenu {
    display: none;
  }
  .megamenu-dropdown,
  .megamenu-chevron,
  .megamenu-overlay {
    display: none !important;
  }

  /* Show hamburger menu */
  .header__hamburger {
    display: flex;
  }

  /* Hide top left navigation */
  .header__top-nav {
    display: none;
  }

  /* Override display: none from meraki.css to enable transition */
  .header__mobile-nav {
    display: flex;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .header__mobile-nav.is-open {
    padding: 16px 24px 24px;
  }

  /* Reduce header top height for smaller screens */
  .header__top {
    height: 70px;
  }
  .header__logo {
    height: 70%;
  }
}

@media (max-width: 767.98px) {
  /* Hide full search bar on very small screens to save space */
  .header__search {
    display: none;
  }
  
  /* Reduce gap between action icons */
  .header__actions {
    gap: 12px;
  }
  
  .header__icon-btn img,
  .header__icon-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* --- Responsive: smaller padding on medium screens --- */
@media (max-width: 1399.98px) {
  .megamenu-dropdown__inner {
    padding: 28px 32px 32px;
  }
  .megamenu-col {
    padding: 0 20px;
  }
  .megamenu-trigger {
    padding: 16px 8px;
    font-size: 13px;
  }
}


/* --- Category Card hover --- */
.category-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  /*width: unset;*/
}

.category-card:hover {
  transform: translateY(-6px);
}

.category-card__img-wrap img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-card:hover .category-card__img-wrap img {
  transform: scale(1.08);
}

.category-card__label {
  transition: color 0.25s ease;
}

.category-card:hover .category-card__label {
  color: var(--color-primary);
}

/* --- Product Card hover effects --- */
.product-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px 0 rgba(142, 31, 70, 0.1);
}

.product-card__image-wrap > img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card__image-wrap > img {
  transform: scale(1.05);
}

/* --- Quick View button states --- */
.product-card__quick-view {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.25s ease;
  cursor: pointer;
  width: auto;
}

.product-card:hover .product-card__quick-view {
  opacity: 1;
  transform: translateY(0);
}

.product-card__quick-view:hover {
  background: rgba(142, 31, 70, 0.95) !important;
}

.product-card__quick-view:hover span {
  color: #fff;
}

.product-card__quick-view:active {
  transform: translateY(0) scale(0.97);
}

.product-card__quick-view:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* --- Wishlist button states --- */
.product-card__wishlist {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

.product-card__wishlist:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 12px rgba(142, 31, 70, 0.15);
}

.product-card__wishlist:active {
  transform: scale(0.9);
}

.product-card__wishlist .wishlist-icon {
  transition: fill 0.3s ease, transform 0.3s ease;
}

.product-card__wishlist[data-wishlisted="true"] .wishlist-icon {
  fill: #8e1f46;
  animation: heartPop 0.4s cubic-bezier(0.17, 0.67, 0.24, 1.2);
}

@keyframes heartPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.product-card__wishlist:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* --- Add to Cart button states --- */
.product-card__add-btn {
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease, color 0.25s ease;
  color: var(--color-primary);
}

.product-card__add-btn:hover {
  background-color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(142, 31, 70, 0.25);
  transform: translateY(-1px);
}

.product-card__add-btn:hover span {
  color: #fff;
}

.product-card__add-btn:hover svg {
  stroke: #fff;
}

.product-card__add-btn:active {
  transform: translateY(0) scale(0.96);
  box-shadow: 0 2px 6px rgba(142, 31, 70, 0.15);
}

.product-card__add-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Add-to-cart "Added" state */
.product-card__add-btn.is-added {
  background-color: var(--color-primary);
  pointer-events: none;
}

.product-card__add-btn.is-added span {
  color: #fff;
}

.product-card__add-btn.is-added svg {
  stroke: #fff;
}

/* --- Color Swatch dots --- */
.swatch-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.swatch-dot:hover {
  transform: scale(1.25);
  box-shadow: 0 0 0 2px rgba(142, 31, 70, 0.15);
}

.swatch-dot--active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(142, 31, 70, 0.2);
}

.swatch-dot:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.product-card__swatches {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* --- Section CTA Buttons --- */
.section-cta-btn {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.section-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
  border-radius: inherit;
}

.section-cta-btn:hover {
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(142, 31, 70, 0.2);
  background: transparent;
}

.section-cta-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.section-cta-btn span,
.section-cta-btn {
  position: relative;
  z-index: 1;
}

.section-cta-btn:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 8px rgba(142, 31, 70, 0.15);
}

.section-cta-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* --- Collection Card hover effects --- */
.collection-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(107, 24, 56, 0.2);
}

.collection-card__bg img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.collection-card:hover .collection-card__bg img {
  transform: scale(1.06);
}

.collection-card__cta {
  transition: background-color 0.3s ease, padding 0.3s ease, gap 0.3s ease;
}

.collection-card:hover .collection-card__cta {
  background: rgba(255, 255, 255, 0.15);
  padding: 5px 12px;
}

.collection-card__cta svg {
  transition: transform 0.3s ease;
}

.collection-card:hover .collection-card__cta svg {
  transform: translateX(4px);
}

/* --- Occasion Card hover --- */
.occasion-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.occasion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(107, 24, 56, 0.2);
}

.occasion-card__bg img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.occasion-card__link {
  transition: letter-spacing 0.3s ease, opacity 0.3s ease;
}

.occasion-card:hover .occasion-card__link {
  letter-spacing: 0.1em;
}

/* --- Bestseller item hover --- */
.bestseller-item {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
  overflow: hidden;
}

.bestseller-item img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.bestseller-item:hover img {
  transform: scale(1.06);
}

.bestseller-item:hover {
  z-index: 2;
}

/* --- Footer interactive states --- */
.footer__social-icon {
  transition: background-color 0.25s ease, transform 0.2s ease;
  color: #fff;
}

.footer__social-icon:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.footer__social-icon:active {
  transform: translateY(0) scale(0.92);
}

.footer__social-icon svg {
  transition: stroke 0.25s ease;
}

.footer__payment-badge {
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.footer__payment-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.footer__col a {
  transition: opacity 0.2s ease, padding-left 0.25s ease;
}

.footer__col a:hover {
  opacity: 1;
  padding-left: 4px;
}

.footer__legal a {
  transition: opacity 0.2s ease;
}

/* --- Trending card image link --- */
.product-card__image-link {
  display: block;
  position: relative;
  overflow: hidden;
}

/* Ensure trending cards get correct height on the image link */
.product-card--trending .product-card__image-link {
  height: 400px;
  flex-shrink: 0;
}

.product-card--trending .product-card__image-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card--trending:hover .product-card__image-link img {
  transform: scale(1.05);
}

/* --- Announcement bar subtle shine --- */
.announcement-bar {
  position: relative;
  overflow: hidden;
}

.announcement-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: announcementShine 4s ease-in-out infinite;
}

@keyframes announcementShine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* --- Product badge pulse for 'Limited' --- */
.product-card__badge {
  transition: transform 0.2s ease;
}

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

/* --- Mobile nav link hover --- */
.header__mobile-nav a {
  transition: color 0.2s ease, padding-left 0.25s ease;
}

.header__mobile-nav a:hover {
  color: var(--color-primary);
  padding-left: 8px;
}

/* --- Star rating hover (subtle glow) --- */
.product-card__stars img {
  transition: transform 0.2s ease;
}

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

/* --- Focus-visible global for accessibility --- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}




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


.container {
    max-width: 1554px;
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 1399.98px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 991.98px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  
  #product-category h1, #shopping-cart h1, #checkout-checkout h1, #account-register h1, #account-forgotten h1, #account-account h1, #account-edit h1, #account-password h1, #account-address h1, #account-wishlist h1, #account-order h1, 
#account-return h1, #common-success h1, #product-search h1, #product-compare h1, #information-information h1, #information-contact h1, #cms-blog h1  {
    font-size: 42px !important;
}
#product-info h1 {
    font-size: 25px !important;
}
}

@media (max-width: 767.98px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.product-card__price-row {
    margin-bottom: unset;
}

#product-category, #product-info, #checkout-cart, #checkout-checkout, #account-login, #account-register, #account-forgotten, #account-account, #account-edit, #account-password, #account-address, #account-wishlist, 
#account-order, #account-return, #common-success, #product-search, #product-compare, #information-information, #information-contact, #product-special, #information-sitemap, #cms-blog {
    padding-top: 40px;
    padding-bottom: 40px;
}

#product-category h1, #shopping-cart h1, #checkout-checkout h1, #account-register h1, #account-forgotten h1, #account-account h1, #account-edit h1, #account-password h1, #account-address h1, #account-wishlist h1, #account-order h1, 
#account-return h1, #common-success h1, #product-search h1, #product-compare h1, #information-information h1, #information-contact h1, #product-special h1, #information-sitemap h1, #cms-blog h1 {
        font-family: var(--font-display);
    font-size: 52px;
    margin-bottom: 24px;

}

#product-category .input-group {
    margin-bottom: 32px;
}
.nav-link {
    color: #972544;
}
.breadcrumb {
    border: none;
    margin-bottom: 34px;
}

.breadcrumb > li.breadcrumb-item:after {
    top: 50%;
    width: unset;
    height: 9px;
    aspect-ratio: 1;
    border-right: 1px solid #9a9d9f;
    border-bottom: 1px solid #9a9d9f;
    transform: rotate(-45deg) translateY(-50%);
}

#product-category .product-card--trending .product-card__info {
    position: relative;
}

/*#product-category .product-card__footer {*/
/*     padding-top: unset; */
/*    position: absolute;*/
/*    right: 15px;*/
/*    top: 20px;*/
/*}*/
#product-category .product-card {
    padding-left: 0;
    padding-right: 0;
}

#product-category #product-list {
    gap: 1rem;
}

#product-info .img-thumbnail {
    border: none;
}

#product-info h1 {
    font-family: var(--font-display);
    font-size: 35px;
    font-weight: 600;
    color: #2B2224;
    margin-bottom: 16px;
}

#product-info .product-info-code {
    font-size: 16px;
    font-weight: 800;
    color: #b3b3b3;
}
#product-info .product-info-stock {
    font-size: 16px;
    font-weight: bold;
    color: #a96d7d;
}

#product-info .product-info-review {
    font-size: 14px;
    font-weight: 600;
    color: #9f9b9b;
}
#product-info .product-info-review .product-info-review-write {
       color: #c5a62a;
}
#product-info .price-new {
    font-size: 38px;
    font-weight: 600;
    color: #67091C;
}

#product-info #button-cart {
    width: 100%;
}

.btn-primary {
        font-family: var(--font-body);
    align-content: center;
    font-size: 13px;
font-weight: 700;
letter-spacing: 0.5px;
/*text-transform: uppercase;*/
color: #FFFFFF;
background: #67091C;
border-radius: 8px;
border: none;
min-height: 48px;
padding-left: 24px;
padding-right: 24px;
}
.btn-primary:hover {
    border: none;
    background: #8A1830;
}
.btn-primary:focus-visible, .btn-primary:first-child:active {
    background: #8A1830;
    box-shadow: 0 0 0 0.25rem rgb(151 36 68 / 38%);
}
.btn-primary:disabled {
    background: #99747c;
}

.btn-light {
        font-family: var(--font-body);
    min-height: 48px;
    align-content: center;
    color: #972544;
    font-weight: 700;
    border: 1px solid;
    background: #fff;
    padding-left: 24px;
padding-right: 24px;
}
.btn-light:hover {
    background: #000;
}
.btn-danger {
        font-family: var(--font-body);
        padding-left: 24px;
padding-right: 24px;
    min-height: 48px;
    align-content: center;
    color: #fff;
}
.btn-info {
    background-color: #dbb24e;
    border: 1px solid #dbb24e;
}
.btn-info:hover {
        background-color: #856923;
            border: 1px solid #856923;
}
#product-info .product-info-images {
        display: flex;
    flex-direction: row-reverse;
}

.sub-thumb img {
    width: 200px;
}
#output-cart {
    margin-bottom: 24px;
}
#product-info #output-cart > .table > thead > tr > th {
    padding: 15px 15px !important;
}
#shopping-cart h2, #account-login h2, #account-order h2, #product-search h2  {
    font-family: var(--font-display);
    font-size: 33px;
    font-weight: 600;
}
#shopping-cart .accordion-item {
    border-top: 1px solid #ffecf1;
    border-color: #ffecf1;
}
#shopping-cart .accordion-button {
        font-family: var(--font-body);
}
#shopping-cart .accordion-button:not(.collapsed) {
    background-color: #ffe3eb;
}
#output-cart .btn-primary, #output-cart .btn-danger {
           padding-left: 12px;
padding-right: 12px; 
}

#output-cart .cart-th, #wishlist .wish-list {
    font-size: 15px;
    font-weight: 800;
    padding: 15px 15px !important;
    border-color: #ffecf1;
}
#output-cart .cart-list-img, #wishlist .wish-img  {
        width: fit-content;
    display: block;
    margin: 0 auto;
}
#output-cart .cart-list-name, .checkout-list-name {
    font-size: 14px;
        color: #972544;
}
#output-cart tbody tr td, #output-cart tr, #wishlist tbody tr td, #wishlist tr {
    border-color: #ffecf1;
}

#checkout-checkout legend, #account-register legend, #account-forgotten legend, #account-edit legend, #account-password legend, #account-order legend, #information-contact legend, #account-return legend  {
    font-size: 18px;
    padding: 7px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    color: #1a1a1a;
    font-weight: 600;
}
.form-check-input:checked {
    background-color: #67091C;
    border-color: #67091C;
}
#account-login .new-customer-card {
    background: linear-gradient(to top, #ffe7ee, #ffffff);
    justify-content: center;
}
#account-login .login-forgot-pass {
    color: #972544;
        font-weight: 700;
}

#account-account .account-link {
    color: #972544;
} 
.main-color {
    color: #972544 !important;
}
#account-order .lead {
    font-family: var(--font-display);
    font-weight: 900;
    color: #972544;
}

.contact-main {
    font-size: 24px;
    color: #972544;
}

#information-sitemap .info-site li {
    color: #972544;
}

/*.category-card__img-wrap {*/
/*    width: 100px;*/
/*    height: 100px;*/
/*}*/


/* ============================================================
   SHOP BY CATEGORY SLIDER & SLICK ENHANCEMENTS
============================================================ */
.shop-category {
  background: var(--color-white);
  padding: 40px 0 50px;
}

.shop-category__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.shop-category__slider {
  width: 100%;
  position: relative;
}

.shop-category__slider .slick-list {
  padding: 10px 0 15px;
}

.shop-category__slider .category-card {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 0 12px;
  outline: none;
  width: auto;
}

.shop-category__slider .category-card__img-wrap {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 3px solid transparent;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  margin: 0 auto;
}

.shop-category__slider .category-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-category__slider .category-card:hover .category-card__img-wrap {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(142, 31, 70, 0.18);
  border-color: var(--color-primary, #8e1f46);
}

.shop-category__slider .category-card:hover .category-card__img-wrap img {
  transform: scale(1.08);
}

.shop-category__slider .category-card__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-black);
  text-align: center;
  text-transform: capitalize;
  margin-top: 14px;
  background: #ffffff;
  padding: 0 8px;
  width: 100%;
  transition: color 0.3s ease;
  margin-bottom: 0;
  margin-top: -20px;
}

.shop-category__slider .category-card:hover .category-card__label {
  color: var(--color-primary, #8e1f46);
}

/* Slick Carousel Arrow Styling */
.shop-category__slider .slick-prev,
.shop-category__slider .slick-next,
#bestseller-slider .slick-prev,
#bestseller-slider .slick-next {
  width: 42px;
  height: 42px;
  background: #ffffff;
  border-radius: 50%;
  /*box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);*/
      border: 1px solid #972544;
  z-index: 10;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  top: 45%;
}

.shop-category__slider .slick-prev,
#bestseller-slider .slick-prev {
  left: -16px;
}

.shop-category__slider .slick-next,
#bestseller-slider .slick-next {
  right: -16px;
}

.shop-category__slider .slick-prev:before,
.shop-category__slider .slick-next:before,
#bestseller-slider .slick-prev:before,
#bestseller-slider .slick-next:before {
  color: var(--color-primary, #8e1f46);
  font-size: 18px;
  line-height: normal;
  opacity: 1;
  transition: color 0.3s ease;
}
.shop-category__slider .slick-prev:before {
    content: '\276E';
}
.shop-category__slider .slick-next:before {
    content: '\276F';
}

.shop-category__slider .slick-prev:hover,
.shop-category__slider .slick-next:hover,
.shop-category__slider .slick-prev:focus,
.shop-category__slider .slick-next:focus,
#bestseller-slider .slick-prev:hover,
#bestseller-slider .slick-next:hover,
#bestseller-slider .slick-prev:focus,
#bestseller-slider .slick-next:focus {
  background: var(--color-primary, #8e1f46);
  box-shadow: 0 6px 18px rgba(142, 31, 70, 0.3);
  transform: translateY(-50%) scale(1.06);
}

.shop-category__slider .slick-prev:hover:before,
.shop-category__slider .slick-next:hover:before,
#bestseller-slider .slick-prev:hover:before,
#bestseller-slider .slick-next:hover:before {
  color: #ffffff;
}

@media (max-width: 1200px) {
  .shop-category__slider .category-card__img-wrap {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 991px) {
  .shop-category {
    padding: 32px 0 40px;
  }
  .shop-category__slider .category-card__img-wrap {
    width: 135px;
    height: 135px;
  }
  .shop-category__slider .category-card__label {
    font-size: 14px;
    margin-top: 10px;
  }
  .shop-category__slider .slick-prev,
  #bestseller-slider .slick-prev {
    left: -8px;
  }
  .shop-category__slider .slick-next,
  #bestseller-slider .slick-next {
    right: -8px;
  }
  
  
  
  
  #cms-blog .breadcrumb .breadcrumb-item:last-child a{
          width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }
}

@media (max-width: 575px) {
  .shop-category {
    padding: 24px 0 32px;
  }
  .shop-category__slider .category-card__img-wrap {
    width: 110px;
    height: 110px;
  }
  .shop-category__slider .category-card__label {
    font-size: 13px;
    margin-top: 8px;
  }
  .shop-category__slider .slick-prev,
  .shop-category__slider .slick-next {
    width: 34px;
    height: 34px;
  }
}

.blog-card:hover .blog-thumb {
    border: 1px solid #972544;
    transition: all 0.3s ease-in-out;
}

.blog-card:hover .blog-thumb-img {
    transform: scale(1.05);
}
.blog-card:hover h4 {
    color: #972544;
}
.blog-thumb {
    width: 100%;
    background-color: aliceblue;
    height: 270px;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid transparent;
}
.blog-thumb .blog-thumb-img {
    transition: all 0.3s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover
}
.blog-card h4 {
    line-height: 1.3;
    transition: all 0.3s ease-in-out;
}

#cms-blog .blog-info-desc p {
    font-size: 16px;
}
#cms-blog .blog-info-detail {
    font-size: 18px;
    color: #919191;
    font-weight: 600;
}
#cms-blog .blog-info-detail a {
    font-weight: 700;
    color: var(--color-primary);
}
#cms-blog .blog-info-img {
    object-fit: cover;
    aspect-ratio: 1464 / 500;
}

.header-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    aspect-ratio: 1;
    background-color: #972544;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    box-sizing: border-box;
    font-size: 11px;
}

footer {
    padding: 96px 0 32px 0;
}

.footer__social-icon.whatsapp {
    background-color: #25D366;
}
.footer__social-icon.insta {
    background-color: #C32AA3;
}
.footer__social-icon.fb {
    background-color: #1877F2;
}
.footer__social-icon.ytube {
    background-color: #FF0000;
}
.whtsp-no {
    color: #fff;
    transition: all .3s ease-in-out;
    font-size: 14px;
}
.whtsp-no:hover {
    color: #25D366;
}
