/* ---------------------------------------------------------
   PREMIUM AUTOCARE THEME STYLESHEET (theme.css)
   Built with modern styling, layout grids, and elegant animations.
------------------------------------------------------------ */

/* Reset & Base Elements */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  margin: 0;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* Typography Utilities */
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.letter-spacing-wide { letter-spacing: 0.1em; }
.serif-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .serif-heading {
    font-size: 1.8rem;
  }
}

/* Common Layout Containers */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.section-padding {
  padding: 4.5rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 0;
  }
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-desktop-vertical-gap);
}

.grid-4-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-desktop-vertical-gap);
}

@media (max-width: 1024px) {
  .grid-3-col { grid-template-columns: repeat(2, 1fr); }
  .grid-4-col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid-3-col, .grid-4-col { grid-template-columns: 1fr; }
}

/* Premium Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--color-text);
  color: var(--color-background);
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--color-text);
  transition: all 0.3s ease;
}

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

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--color-text);
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--color-text);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--color-text);
  color: var(--color-background);
}

/* Visually Hidden Utility */
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
}

/* 1. Announcement Bar */
.announcement-bar {
  background-color: #f8f8f8;
  border-bottom: 1px solid var(--color-border);
  padding: 0.5rem 0;
  font-size: 0.75rem;
}

.announcement-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.announcement-bar__left {
  display: flex;
  gap: 1.5rem;
  color: var(--color-text-secondary);
}

.announcement-bar__left span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.announcement-bar__right {
  display: flex;
  gap: 1rem;
}

.announcement-bar__social-icon {
  color: var(--color-text-secondary);
  transition: color 0.3s;
}

.announcement-bar__social-icon:hover {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .announcement-bar__inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .announcement-bar__left {
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* 2. Header Section */
.site-header {
  background-color: var(--color-background);
  border-bottom: 1px solid var(--color-border);
  padding: 1.2rem 0;
  position: relative;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header__logo a {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.site-header__nav {
  display: block;
}

.site-header__menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-header__menu-item {
  position: relative;
  padding: 0.8rem 0;
}

/* For full-width mega menu, set position to static on parent item */
.site-header__menu-item--mega {
  position: static;
}

.site-header__menu-link {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.3s ease;
  padding: 0.25rem 0;
}

.site-header__menu-link:hover {
  color: var(--color-accent);
}

.chevron-down-icon {
  transition: transform 0.3s ease;
}

.site-header__menu-item:hover .chevron-down-icon {
  transform: rotate(180deg);
}

/* 1. Sleek Dropdown styling */
.dropdown-menu-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 1rem 0;
  margin: 0;
  list-style: none;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.site-header__menu-item--dropdown:hover .dropdown-menu-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-item {
  padding: 0;
}

.dropdown-menu-link {
  display: block;
  padding: 0.65rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
}

.dropdown-menu-link:hover {
  background-color: #f7f7f7;
  color: var(--color-accent);
  padding-left: 1.75rem;
}

/* 2. Full-Width Mega Menu Panel */
.mega-menu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid var(--color-border);
  border-bottom: 2px solid var(--color-text);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 2.5rem 0;
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.site-header__menu-item--mega:hover .mega-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.mega-menu-columns-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.mega-menu-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mega-menu-column__title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}

.mega-menu-column__title:hover {
  color: var(--color-accent);
}

.mega-menu-column__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mega-menu-column__link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all 0.25s;
}

.mega-menu-column__link:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

/* 3. Mega Menu Right-side Promo Banner Card */
.mega-menu-promo-col {
  width: 100%;
}

.mega-menu-promo {
  background-color: #fcfcfc;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mega-menu-promo__img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 1.6 / 1;
  overflow: hidden;
  background-color: #f7f7f7;
}

.mega-menu-promo__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mega-menu-promo:hover .mega-menu-promo__img-wrap img {
  transform: scale(1.05);
}

.mega-menu-promo__overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.mega-menu-promo__badge {
  background-color: var(--color-accent, #c5a880);
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}

.mega-menu-promo__title {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0.8rem 1rem 0.25rem;
  color: var(--color-text);
}

.mega-menu-promo__desc {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  margin: 0 1rem 1rem;
}

.mega-menu-promo--fallback {
  background-color: #fafafa;
  padding: 1.5rem;
  border: 1px dashed var(--color-border);
}

.mega-menu-promo__box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-header__action-btn {
  color: var(--color-text);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.site-header__action-btn:hover {
  transform: scale(1.1);
  color: var(--color-accent);
}

.site-header__cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--color-text);
  color: var(--color-background);
  font-size: 0.65rem;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3. Hero Banner (Slideshow) */
.hero-slideshow {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: var(--color-dark-bg);
}

.hero-slideshow__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
  background-color: var(--color-dark-bg);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-slide__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-slide__container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-slide__content {
  max-width: 650px;
  width: 100%;
}

/* Slide Content Entrance Animations */
.hero-slide .hero-banner__subtitle,
.hero-slide .hero-banner__title,
.hero-slide .hero-banner__description,
.hero-slide .hero-banner__btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero-slide.active .hero-banner__subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.hero-slide.active .hero-banner__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.hero-slide.active .hero-banner__description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.hero-slide.active .hero-banner__btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.hero-banner__subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  display: block;
}

.hero-banner__title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-banner__description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-banner__btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.hero-banner__btn:hover {
  background-color: transparent !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

/* Slider Controls */
.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-slider-nav:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-dark-bg);
}

.hero-slider-nav--prev {
  left: 2rem;
}

.hero-slider-nav--next {
  right: 2rem;
}

.hero-slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-slider-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.hero-slider-dot.active {
  background-color: var(--color-accent);
  width: 24px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .hero-slider-nav {
    display: none; /* Hide navigation arrows on mobile */
  }
  .hero-banner__title {
    font-size: 2.2rem;
  }
  .hero-banner__description {
    font-size: 0.95rem;
  }
  .hero-slider-dots {
    bottom: 1.5rem;
  }
}

/* 4. Shop By Category */
.category-carousel {
  position: relative;
}

.category-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide standard scrollbar */
  padding-bottom: 1.5rem;
}

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

.category-card {
  flex: 0 0 calc((100% - 7.5rem) / 6);
  min-width: 150px;
  text-align: center;
  transition: transform 0.3s;
}

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

.category-card__image-wrapper {
  aspect-ratio: 1;
  background-color: #f7f7f7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 1.5rem;
  overflow: hidden;
  transition: background-color 0.3s;
}

.category-card:hover .category-card__image-wrapper {
  background-color: #eaeaea;
}

.category-card__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.category-card:hover .category-card__image {
  transform: scale(1.1);
}

.category-card__title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-border);
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-dot.active {
  background-color: var(--color-text);
  width: 20px;
  border-radius: 4px;
}

/* 5. Tabbed Collection ("OUR COLLECTION") */
.collection-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background-color: transparent;
  color: var(--color-text);
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: var(--color-text);
}

.tab-btn.active {
  background-color: var(--color-text);
  color: var(--color-background);
  border-color: var(--color-text);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

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

/* Product Card Snippet */
.product-card {
  position: relative;
  background-color: var(--color-background);
  transition: all 0.3s ease;
}

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background-color: #f7f7f7;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border-radius: 4px;
}

.product-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.product-card__image.hover-image {
  opacity: 0;
}

.product-card:hover .product-card__image.hover-image {
  opacity: 1;
}

.product-card:hover .product-card__image:not(.hover-image) {
  opacity: 0;
}

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

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--color-accent);
  color: var(--color-dark-text);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  z-index: 5;
}

.product-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  z-index: 8;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card__overlay-btn {
  background-color: var(--color-text);
  color: var(--color-background);
  padding: 0.65rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 100%;
  text-align: center;
  border: 1px solid var(--color-text);
  transition: all 0.3s;
}

.product-card__overlay-btn:hover {
  background-color: transparent;
  color: var(--color-text);
}

.product-card__overlay-btn.secondary-overlay-btn {
  background-color: transparent;
  color: var(--color-text);
}

.product-card__overlay-btn.secondary-overlay-btn:hover {
  background-color: var(--color-text);
  color: var(--color-background);
}

.product-card__info {
  text-align: center;
}

.product-card__vendor {
  font-size: 0.7rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  display: block;
}

.product-card__title {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.product-card__price-wrapper {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.product-card__price {
  color: var(--color-text);
}

.product-card__price.compare {
  color: var(--color-text-secondary);
  text-decoration: line-through;
  font-weight: 400;
}

/* 6. Best Sellers Section */
.best-seller-section {
  text-align: center;
}

.best-seller-section .section-header {
  margin-bottom: 3rem;
}

/* 7. Hot Deal Section */
.hot-deal-section {
  background-color: #fcfcfc;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.hot-deal-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.hot-deal__info {
  flex: 1;
}

.hot-deal__featured {
  flex: 1.2;
}

.countdown-box {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.countdown-item {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  min-width: 75px;
  padding: 0.75rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.countdown-number {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  display: block;
  line-height: 1;
  color: var(--color-text);
}

.countdown-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
}

.deal-stock-bar {
  margin-top: 1.5rem;
}

.deal-stock-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.deal-stock-progress {
  height: 6px;
  background-color: var(--color-border);
  border-radius: 3px;
  overflow: hidden;
}

.deal-stock-progress-fill {
  height: 100%;
  background-color: var(--color-accent);
  width: 65%; /* Default fallback */
}

@media (max-width: 900px) {
  .hot-deal-layout {
    flex-direction: column;
    gap: 2.5rem;
  }
}

/* 8. Latest News Section */
.latest-news-section {
  text-align: center;
}

.news-heading-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.news-line {
  flex-grow: 0.1;
  height: 2px;
  background-color: var(--color-accent);
  width: 100px;
}

.blog-card {
  text-align: left;
  background: var(--color-background);
}

.blog-card__image-wrapper {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  background-color: #f7f7f7;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image {
  transform: scale(1.05);
}

.blog-card__meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
  display: block;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.blog-card__readmore {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--color-text);
  padding-bottom: 2px;
  display: inline-block;
}

.blog-card__readmore:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* 9. Footer Section */
.site-footer {
  background-color: #f4f4f4;
  border-top: 1px solid var(--color-border);
  padding: 5rem 0 2rem;
  font-size: 0.85rem;
  color: var(--color-text);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-column__heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column__list li {
  margin-bottom: 0.75rem;
}

.footer-column__list a {
  color: var(--color-text-secondary);
}

.footer-column__list a:hover {
  color: var(--color-accent);
}

.footer-contact-info {
  color: var(--color-text-secondary);
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social-btn {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social-btn:hover {
  background-color: var(--color-text);
  color: var(--color-background);
  border-color: var(--color-text);
}

.footer-newsletter-text {
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
}

.footer-newsletter-form {
  display: flex;
  border-bottom: 2px solid var(--color-text);
  padding-bottom: 0.5rem;
}

.footer-newsletter-input {
  border: none;
  background: transparent;
  flex: 1;
  font-size: 0.85rem;
  padding: 0.25rem 0.5rem 0.25rem 0;
}

.footer-newsletter-input:focus {
  outline: none;
}

.footer-newsletter-submit {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-newsletter-submit:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-secondary);
  font-size: 0.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* 10. Ajax Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background-color: var(--color-background);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer__header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.cart-drawer__close {
  font-size: 1.5rem;
  color: var(--color-text-secondary);
}

.cart-drawer__close:hover {
  color: var(--color-text);
}

.cart-drawer__content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-drawer__empty {
  text-align: center;
  margin-top: 4rem;
  color: var(--color-text-secondary);
}

.cart-drawer__empty-icon {
  margin-bottom: 1.5rem;
  color: var(--color-border);
}

.cart-drawer__items-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-drawer__item {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.25rem;
}

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

.cart-drawer__item-image-wrapper {
  width: 80px;
  aspect-ratio: 1;
  background-color: #f7f7f7;
  border-radius: 4px;
  overflow: hidden;
}

.cart-drawer__item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-drawer__item-details {
  flex: 1;
}

.cart-drawer__item-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.cart-drawer__item-price {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cart-drawer__item-qty-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer__qty-selector {
  display: flex;
  border: 1px solid var(--color-border);
  border-radius: 2px;
}

.cart-drawer__qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.cart-drawer__qty-input {
  width: 32px;
  border: none;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  background: transparent;
}

.cart-drawer__item-remove {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
}

.cart-drawer__item-remove:hover {
  color: #ff3333;
}

.cart-drawer__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  background-color: #fafafa;
}

.cart-drawer__summary {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cart-drawer__checkout-btn {
  width: 100%;
  text-align: center;
}

/* Scroll To Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--color-text);
  color: var(--color-background);
  border: 1px solid var(--color-text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 99;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-dark-bg);
  transform: translateY(-3px);
}

/* ---------------------------------------------------------
   PRODUCT DETAILS PAGE STYLES (Same as Mockup)
------------------------------------------------------------ */

/* Breadcrumbs */
.product-breadcrumbs {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-breadcrumbs a:hover {
  color: var(--color-accent);
}

.product-breadcrumbs span {
  color: #ccc;
}

/* 2-Column Product Layout */
.product-details-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .product-details-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Gallery Column */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-gallery__main {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

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

.product-gallery__thumbnails {
  display: flex;
  gap: 0.75rem;
}

.product-gallery__thumbnail {
  width: 80px;
  height: 80px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  aspect-ratio: 1;
}

.product-gallery__thumbnail:hover,
.product-gallery__thumbnail.active {
  opacity: 1;
  border-color: var(--color-text);
}

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

/* Info Column */
.product-info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-info__title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

.product-info__title {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
  margin: 0;
}

.product-info__wishlist-btn {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  transition: all 0.3s;
  flex-shrink: 0;
}

.product-info__wishlist-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: scale(1.05);
}

/* Price Box */
.product-info__price-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-info__price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-accent);
}

.product-info__compare-price {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  text-decoration: line-through;
}

.product-info__tax {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

.product-info__save-badge {
  background-color: #ff3333;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Countdown */
.product-countdown-wrapper {
  background-color: #fffbef;
  border: 1px dashed var(--color-accent);
  border-radius: 4px;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-countdown-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.product-countdown-timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--color-accent);
}

.product-countdown-timer .time-block {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  min-width: 45px;
  padding: 0.3rem 0.5rem;
  text-align: center;
  font-size: 1rem;
  color: var(--color-text);
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

/* Live Viewer count */
.product-info__viewers {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
}

/* Special Offer Box */
.product-info__special-offer {
  border: 1px solid #e2f2ef;
  background-color: #fafdfd;
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
}

.product-info__special-offer-title {
  color: #308a86;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.product-info__special-offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-info__special-offer-list li {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-info__special-offer-list li svg {
  color: #308a86;
  flex-shrink: 0;
}

/* Actions Share/Ask */
.product-info__actions {
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
}

.product-info__action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  border: none;
  background: none;
  cursor: pointer;
}

.product-info__action-btn:hover {
  color: var(--color-accent);
}

/* Buy Form Grid */
.product-info__buy-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-info__qty-form-row {
  display: flex;
  gap: 1rem;
}

.product-info__qty-selector {
  display: flex;
  border: 1px solid var(--color-border);
  height: 50px;
  align-items: center;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}

.product-info__qty-selector button {
  width: 40px;
  height: 100%;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-text-secondary);
  transition: background-color 0.2s;
}

.product-info__qty-selector button:hover {
  background-color: #f7f7f7;
  color: var(--color-text);
}

.product-info__qty-selector input {
  width: 45px;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  background: transparent;
}

/* Remove numeric arrows */
.product-info__qty-selector input::-webkit-outer-spin-button,
.product-info__qty-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-info__add-to-cart {
  flex: 1;
  height: 50px;
  border: 1px solid var(--color-text);
  background-color: #ffffff;
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s;
}

.product-info__add-to-cart:hover {
  background-color: var(--color-text);
  color: var(--color-background);
}

.product-info__buy-it-now {
  width: 100%;
  height: 50px;
  background-color: #000000;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.product-info__buy-it-now:hover {
  background-color: #222222;
}

/* Trust Checkout Card */
.product-info__checkout-card {
  background-color: #f7f7f7;
  border-radius: 4px;
  padding: 1.25rem;
  text-align: center;
}

.product-info__checkout-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin-top: 0;
  margin-bottom: 0;
}

/* Trust Delivery Items */
.product-info__trust-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.product-info__trust-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.product-info__trust-item svg {
  color: var(--color-text);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Collapsible Details summary Accordions */
.product-accordions {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
}

.product-accordion {
  border-bottom: 1px solid var(--color-border);
}

.product-accordion__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  list-style: none;
}

.product-accordion__summary::-webkit-details-marker {
  display: none;
}

.product-accordion__icon {
  transition: transform 0.3s ease;
}

.product-accordion[open] .product-accordion__icon {
  transform: rotate(180deg);
}

.product-accordion__content {
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Shopify Promo Image */
.product-info__promo-banner {
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.product-info__promo-banner img {
  width: 100%;
  display: block;
}

/* ---------------------------------------------------------
   PRODUCT FULL DESCRIPTION & SHIPPING TABS (Underneath)
------------------------------------------------------------ */
.product-tabs-section {
  border-top: 1px solid var(--color-border);
  margin-top: 3rem;
}

.product-tabs__nav {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--color-border);
}

.product-tabs__nav-btn {
  background: none;
  border: none;
  padding: 1.25rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.product-tabs__nav-btn:hover {
  color: var(--color-text);
}

.product-tabs__nav-btn.active {
  color: var(--color-text);
}

.product-tabs__nav-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
}

.product-tabs__content {
  padding: 3rem 0;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.product-tabs__panel {
  display: none;
}

.product-tabs__panel.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

/* ---------------------------------------------------------
   SEARCH DRAWER POPUP (Slides down from top)
------------------------------------------------------------ */
.search-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
}

.search-drawer.active {
  transform: translateY(0);
}

.search-drawer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.search-drawer__logo {
  flex: 0 0 200px;
}

.search-drawer__logo a {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.search-drawer__form-wrapper {
  flex: 1;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.search-drawer__form {
  position: relative;
  width: 100%;
}

.search-drawer__label {
  position: absolute;
  top: -16px;
  left: 16px;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  background-color: #ffffff;
  padding: 0 4px;
  font-weight: 600;
}

.search-drawer__input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 0 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text);
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.3s;
}

.search-drawer__input:focus {
  border-color: var(--color-accent);
}

.search-drawer__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 0 0 240px;
  justify-content: flex-end;
}

.search-drawer__close-btn {
  font-size: 1.5rem;
  color: var(--color-text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, color 0.2s;
  margin-left: 0.5rem;
}

.search-drawer__close-btn:hover {
  transform: scale(1.1);
  color: var(--color-text);
}

/* Dim Overlay */
.search-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

@media (max-width: 768px) {
  .search-drawer {
    height: 160px;
    align-items: flex-start;
    padding-top: 1rem;
  }
  .search-drawer__inner {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .search-drawer__logo {
    flex: 0 0 auto;
  }
  .search-drawer__form-wrapper {
    order: 3;
    max-width: 100%;
    margin-top: 0.5rem;
  }
  .search-drawer__actions {
    flex: 0 0 auto;
    gap: 1rem;
  }
}

/* ---------------------------------------------------------
   CUSTOMER CUSTOM ACCOUNT STYLES (Login & Register Pages)
------------------------------------------------------------ */
.customer-page-section {
  background-color: #fafafa;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.customer-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  width: 100%;
  max-width: 480px;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.customer-card__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.customer-card__title {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.customer-card__subtitle {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin: 0;
}

.customer-card__subtitle a {
  color: var(--color-accent);
  font-weight: 600;
}

.customer-card__subtitle a:hover {
  text-decoration: underline;
}

.customer-form__row {
  margin-bottom: 1.5rem;
  position: relative;
}

.customer-form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
  text-align: left;
}

.customer-form__input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 0 1rem;
  font-size: 0.95rem;
  outline: none;
  background-color: #ffffff;
  transition: all 0.3s;
}

.customer-form__input:focus {
  border-color: var(--color-text);
  box-shadow: 0 0 0 1px var(--color-text);
}

.customer-form__recover-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  float: right;
  margin-top: -1.25rem;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.customer-form__recover-link:hover {
  color: var(--color-accent);
}

.customer-form__submit-btn {
  width: 100%;
  height: 50px;
  background-color: var(--color-text);
  color: var(--color-background);
  border: 1px solid var(--color-text);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.customer-form__submit-btn:hover {
  background-color: transparent;
  color: var(--color-text);
}

.customer-form__cancel-btn {
  width: 100%;
  height: 50px;
  background-color: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.75rem;
}

.customer-form__cancel-btn:hover {
  border-color: var(--color-text);
  color: var(--color-text);
}

.customer-form__errors {
  background-color: #fff2f2;
  border: 1px solid #ffcccc;
  color: #cc0000;
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  list-style: none;
  text-align: left;
}

.customer-form__errors ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 0;
}

/* ---------------------------------------------------------
   COLLECTION HEADER & 2-COLUMN FILTER PAGE STYLES (Mockup)
------------------------------------------------------------ */

/* Full Width Dark Banner */
.collection-header-banner {
  background-color: #000000;
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.collection-header-title {
  font-family: var(--font-body);
  font-size: 2.5rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}

.collection-header-breadcrumbs {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.collection-header-breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  transition: color 0.3s;
}

.collection-header-breadcrumbs a:hover {
  color: var(--color-accent);
}

.collection-header-breadcrumbs span {
  color: rgba(255, 255, 255, 0.4);
}

/* 2-Column Collection Layout */
.collection-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .collection-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Left Sidebar Filter Column */
.collection-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.collection-filter-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.collection-filter-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

/* Gold Left Accent Line */
.collection-filter-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-accent);
}

.collection-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.collection-filter-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
}

.collection-filter-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  cursor: pointer;
  outline: none;
}

/* Price Range Slider Styling */
.collection-price-slider {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.collection-price-slider__range {
  position: relative;
  width: 100%;
  height: 4px;
  background-color: var(--color-text);
  border-radius: 2px;
}

.collection-price-slider__handle {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-color: #ffffff;
  border: 3px solid var(--color-text);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s;
}

.collection-price-slider__handle:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

.collection-price-slider__handle--min {
  left: 0;
}

.collection-price-slider__handle--max {
  right: 0;
}

.collection-price-slider__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.collection-price-slider__label strong {
  font-weight: 700;
}

/* Shopify Promo Image */
.collection-promo-card {
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.collection-promo-card img {
  width: 100%;
  display: block;
}

/* Right Grid Area Column */
.collection-grid-area {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Top Toolbar */
.collection-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.collection-grid-view-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  transition: all 0.3s;
}

.collection-grid-view-toggle:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.collection-sort-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.collection-sort-select {
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  background-color: transparent;
  outline: none;
  cursor: pointer;
  padding-right: 1.5rem;
  position: relative;
  text-align: right;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right center;
}

.collection-sort-select:hover {
  color: var(--color-text);
}

/* Product Card Diagonal Ribbons (Sale Ribbon) */
.product-card__ribbon {
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: #ff3333;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 2.5rem;
  transform: rotate(45deg);
  z-index: 5;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ---------------------------------------------------------
   COLLECTION LIST PAGE STYLES (Our Collections list-collections)
------------------------------------------------------------ */
.collection-list-card {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.collection-list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.collection-list-card__image-wrapper {
  position: relative;
  aspect-ratio: 1.1 / 1;
  overflow: hidden;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-list-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-list-card:hover .collection-list-card__image {
  transform: scale(1.06);
}

/* Hover overlay drawer style */
.collection-list-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  z-index: 5;
  transition: opacity 0.4s ease;
  padding: 1.5rem;
}

.collection-list-card:hover .collection-list-card__overlay {
  opacity: 1;
}

.collection-list-card__count {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.collection-list-card__btn {
  background-color: #ffffff !important;
  color: var(--color-text) !important;
  border-color: #ffffff !important;
  transform: translateY(15px);
  transition: transform 0.4s ease;
  padding: 0.65rem 1.75rem !important;
  font-size: 0.75rem !important;
}

.collection-list-card:hover .collection-list-card__count,
.collection-list-card:hover .collection-list-card__btn {
  transform: translateY(0);
}

.collection-list-card__info {
  padding: 1.25rem;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.collection-list-card__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
