/* =============================================================================
   IMTY VAI CUSTOM THEME — main.css
   All component styles. CSS variables are defined in style.css (root file).
   ============================================================================= */

/* =============================================================================
   1. TOP BAR
   ============================================================================= */

.top-bar {
  background-color: var(--color-yellow);
  color: var(--color-black);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  padding: 0;
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--spacing-md, 1.5rem);
  height: 100%;
  gap: 1rem;
}

/* Marquee promo text — left */
.top-bar__marquee {
  flex: 1 1 auto;
  overflow: hidden;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.top-bar__marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  gap: 3rem;
}

.top-bar__marquee-track:hover {
  animation-play-state: paused;
}

.top-bar__marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-black);
  font-weight: 600;
}

.top-bar__marquee-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Contact links — right */
.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.top-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-black);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8125rem;
  transition: opacity 0.2s ease;
}

.top-bar__link:hover {
  opacity: 0.72;
  text-decoration: none;
  color: var(--color-black);
}

.top-bar__link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.top-bar__divider {
  width: 1px;
  height: 16px;
  background: rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

/* =============================================================================
   2. SITE HEADER
   ============================================================================= */

.site-header {
  background-color: var(--color-white);
  border-bottom: 3px solid var(--color-yellow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
  will-change: box-shadow, padding;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--spacing-md, 1.5rem);
  height: 76px;
  gap: 2rem;
  transition: height 0.3s ease;
}

/* Sticky state */
.site-header.is-sticky {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.site-header.is-sticky .site-header__inner {
  height: 60px;
}

/* Header right actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-black);
  position: relative;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.header-action-btn:hover {
  background-color: var(--color-yellow);
  color: var(--color-black);
}

.header-action-btn svg {
  width: 22px;
  height: 22px;
}

.header-action-btn .badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  pointer-events: none;
}

.header-action-btn:hover .badge {
  background: var(--color-black);
  color: var(--color-yellow);
}

/* =============================================================================
   3. LOGO
   ============================================================================= */

.header-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.header-logo:hover {
  opacity: 0.88;
  transform: scale(1.02);
}

.header-logo img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: height 0.3s ease;
}

.site-header.is-sticky .header-logo img {
  height: 40px;
}

.header-logo .site-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-black);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.header-logo .site-title span {
  color: var(--color-yellow);
}

/* =============================================================================
   4. PRIMARY NAVIGATION
   ============================================================================= */

.primary-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.primary-menu > .menu-item {
  position: relative;
}

.primary-menu > .menu-item > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0 1rem;
  height: 76px;
  color: var(--color-black);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.site-header.is-sticky .primary-menu > .menu-item > a {
  height: 60px;
}

/* Yellow underline slide-in effect */
.primary-menu > .menu-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: var(--color-yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.primary-menu > .menu-item > a:hover,
.primary-menu > .menu-item.current-menu-item > a,
.primary-menu > .menu-item.current-menu-ancestor > a {
  color: var(--color-yellow);
}

.primary-menu > .menu-item > a:hover::after,
.primary-menu > .menu-item.current-menu-item > a::after,
.primary-menu > .menu-item.current-menu-ancestor > a::after {
  transform: scaleX(1);
}

/* Dropdown arrow for items with children */
.primary-menu .menu-item-has-children > a .nav-arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-top: -2px;
}

.primary-menu .menu-item-has-children:hover > a .nav-arrow,
.primary-menu .menu-item-has-children:focus-within > a .nav-arrow {
  transform: rotate(-135deg) translateY(-2px);
}

/* Active state */
.primary-menu > .menu-item.current-menu-item > a,
.primary-menu > .menu-item.current-menu-parent > a {
  color: var(--color-yellow);
}

/* =============================================================================
   5. MEGA MENU DROPDOWN
   ============================================================================= */

.primary-menu .menu-item-has-children.has-mega-menu {
  position: static;
}

.mega-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 100vw;
  max-width: var(--container-max-width, 1280px);
  background: var(--color-white);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
  border-top: 3px solid var(--color-yellow);
  border-radius: 0 0 8px 8px;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 999;
}

.primary-menu .menu-item-has-children.has-mega-menu:hover .mega-menu-dropdown,
.primary-menu .menu-item-has-children.has-mega-menu:focus-within .mega-menu-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

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

.mega-menu-col__heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-grey-dark, #555);
  margin: 0 0 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-yellow);
}

/* Category thumbnail item in mega menu */
.mega-menu-cat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  text-decoration: none;
  color: var(--color-black);
  transition: background-color 0.18s ease;
}

.mega-menu-cat-item:hover {
  background-color: var(--color-yellow-light, #fffbea);
  color: var(--color-black);
}

.mega-menu-cat-item__thumb {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-grey-light, #f5f5f5);
}

.mega-menu-cat-item__name {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.3;
}

.mega-menu-cat-item__count {
  font-size: 0.75rem;
  color: var(--color-grey-dark, #888);
  margin-top: 1px;
}

/* =============================================================================
   6. DROPDOWN MENUS (regular sub-menu)
   ============================================================================= */

.primary-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  border-top: 3px solid var(--color-yellow);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 998;
}

/* Nested sub-menus */
.primary-menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  border-top: none;
  border-left: 3px solid var(--color-yellow);
  border-radius: 0 8px 8px 8px;
}

.primary-menu .menu-item-has-children:not(.has-mega-menu):hover > .sub-menu,
.primary-menu .menu-item-has-children:not(.has-mega-menu):focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.primary-menu .sub-menu .menu-item > a {
  display: block;
  padding: 0.55rem 1.25rem;
  color: var(--color-black);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}

.primary-menu .sub-menu .menu-item > a:hover {
  background-color: var(--color-yellow);
  color: var(--color-black);
  padding-left: 1.625rem;
}

.primary-menu .sub-menu .menu-item + .menu-item > a {
  border-top: 1px solid var(--color-grey-light, #f0f0f0);
}

/* =============================================================================
   7. SEARCH DRAWER
   ============================================================================= */

.search-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-grey-light, #f0f0f0);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 1.5rem var(--spacing-md, 1.5rem);
  z-index: 997;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
}

.search-drawer.is-open {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  padding: 1.5rem var(--spacing-md, 1.5rem);
}

.search-drawer__inner {
  max-width: var(--container-max-width, 1280px);
  margin: 0 auto;
}

.search-drawer__form {
  display: flex;
  gap: 0;
  border: 2px solid var(--color-black);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-drawer__form:focus-within {
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.2);
}

.search-drawer__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 0.875rem 1.5rem;
  font-size: 1.0625rem;
  color: var(--color-black);
  font-family: inherit;
}

.search-drawer__input::placeholder {
  color: var(--color-grey-dark, #aaa);
}

.search-drawer__submit {
  border: none;
  background: var(--color-yellow);
  color: var(--color-black);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  border-radius: 0 50px 50px 0;
}

.search-drawer__submit:hover {
  background: var(--color-black);
  color: var(--color-yellow);
}

.search-drawer__submit svg {
  width: 18px;
  height: 18px;
}

/* Autocomplete results */
.search-drawer__results {
  margin-top: 0.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-grey-light, #eee);
  border-radius: 8px;
  overflow: hidden;
  display: none;
}

.search-drawer__results.is-visible {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.6rem 1rem;
  text-decoration: none;
  color: var(--color-black);
  border-bottom: 1px solid var(--color-grey-light, #f5f5f5);
  transition: background-color 0.15s ease;
}

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

.search-result-item:hover {
  background: var(--color-yellow-light, #fffbea);
}

.search-result-item__thumb {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  background: var(--color-grey-light, #f5f5f5);
}

.search-result-item__name {
  font-weight: 600;
  font-size: 0.875rem;
}

.search-result-item__price {
  font-size: 0.8125rem;
  color: var(--color-grey-dark, #777);
}

.search-drawer__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-grey-dark, #888);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.search-drawer__close:hover {
  color: var(--color-black);
}

/* =============================================================================
   8. MOBILE MENU TOGGLE / HAMBURGER
   ============================================================================= */

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.mobile-menu-toggle:hover {
  background-color: var(--color-yellow);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  pointer-events: none;
}

.hamburger__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-black);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

/* Active (X) state */
.mobile-menu-toggle.is-active .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active .hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.is-active .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================================================
   9. MOBILE DRAWER
   ============================================================================= */

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--color-white);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 2px solid var(--color-yellow);
  flex-shrink: 0;
}

.mobile-drawer__logo img {
  height: 40px;
  width: auto;
}

.mobile-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  color: var(--color-black);
}

.mobile-drawer__close:hover {
  background-color: var(--color-yellow);
}

.mobile-drawer__close svg {
  width: 20px;
  height: 20px;
}

.mobile-drawer__nav {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0;
}

/* Accordion sub-menus in mobile drawer */
.mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu .menu-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  color: var(--color-black);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--color-grey-light, #f0f0f0);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.mobile-menu .menu-item > a:hover,
.mobile-menu .menu-item.current-menu-item > a {
  background-color: var(--color-yellow-light, #fffbea);
  color: var(--color-black);
}

.mobile-menu .menu-item-has-children > a .accordion-arrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.mobile-menu .menu-item-has-children > a .accordion-arrow::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  display: block;
}

.mobile-menu .menu-item-has-children.is-open > a .accordion-arrow {
  transform: rotate(180deg);
}

.mobile-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--color-grey-light, #f9f9f9);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.mobile-menu .menu-item-has-children.is-open > .sub-menu {
  max-height: 600px;
}

.mobile-menu .sub-menu .menu-item > a {
  padding-left: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom-color: var(--color-grey-light, #e8e8e8);
}

.mobile-menu .sub-menu .sub-menu .menu-item > a {
  padding-left: 3rem;
}

/* WhatsApp button at bottom of drawer */
.mobile-drawer__footer {
  flex-shrink: 0;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--color-grey-light, #eee);
}

.mobile-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.mobile-whatsapp-btn:hover {
  background: #1da851;
  color: #fff;
  transform: scale(1.02);
}

.mobile-whatsapp-btn svg {
  width: 22px;
  height: 22px;
}

/* =============================================================================
   10. HERO SLIDER
   ============================================================================= */

.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
}

.hero-slide {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Dark overlay */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max-width, 1280px);
  margin: 0 auto;
  padding: 4rem var(--spacing-md, 1.5rem);
  width: 100%;
}

.hero-content__eyebrow {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.875rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.hero-content__heading {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  margin: 0 0 1.25rem;
  max-width: 700px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-content__heading span {
  color: var(--color-yellow);
}

.hero-content__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 2rem;
  max-width: 560px;
  line-height: 1.6;
}

.hero-content__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-content__actions .btn-primary {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  background: var(--color-yellow);
  color: var(--color-black);
  border: 2px solid var(--color-yellow);
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-content__actions .btn-primary:hover {
  background: var(--color-black);
  color: var(--color-yellow);
  border-color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.hero-content__actions .btn-secondary {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-content__actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* Swiper customizations for hero */
.hero-section .swiper-pagination {
  bottom: 1.5rem;
}

.hero-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-section .swiper-pagination-bullet-active {
  background: var(--color-yellow);
  transform: scale(1.3);
}

.hero-section .swiper-button-prev,
.hero-section .swiper-button-next {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  color: var(--color-white);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  margin-top: -24px;
}

.hero-section .swiper-button-prev:hover,
.hero-section .swiper-button-next:hover {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-black);
  transform: scale(1.08);
}

.hero-section .swiper-button-prev::after,
.hero-section .swiper-button-next::after {
  font-size: 1rem;
  font-weight: 900;
}

/* =============================================================================
   11. FEATURES BAR
   ============================================================================= */

.features-bar {
  background: var(--color-black);
  padding: 3rem 0;
}

.features-bar__inner {
  max-width: var(--container-max-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--spacing-md, 1.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.875rem;
  padding: 0 1rem;
}

.feature-item + .feature-item {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.feature-item:hover .feature-item__icon {
  background: rgba(255, 204, 0, 0.15);
  transform: scale(1.08);
}

.feature-item__icon svg {
  width: 40px;
  height: 40px;
  color: var(--color-yellow);
  fill: var(--color-yellow);
}

.feature-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
  line-height: 1.3;
}

.feature-item__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

/* =============================================================================
   12. CATEGORY GRID
   ============================================================================= */

.category-grid-section {
  background: var(--color-white);
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-yellow);
  margin-bottom: 0.5rem;
}

.section-header__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-black);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.section-header__subtitle {
  color: var(--color-grey-dark, #777);
  font-size: 1.0625rem;
  max-width: 520px;
  margin: 0 auto;
}

.category-grid {
  max-width: var(--container-max-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--spacing-md, 1.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Dark gradient overlay */
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  transition: background 0.3s ease;
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.category-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.25rem 1.25rem;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.category-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  line-height: 1.3;
}

.category-card__count {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

/* =============================================================================
   13. FEATURED PRODUCTS
   ============================================================================= */

.featured-products {
  background: var(--color-grey-bg, #f8f8f8);
  padding: 5rem 0;
}

.featured-products .section-header {
  max-width: var(--container-max-width, 1280px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--spacing-md, 1.5rem);
}

.product-slider-wrap {
  max-width: var(--container-max-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--spacing-md, 1.5rem);
  position: relative;
}

.product-swiper {
  overflow: hidden;
  padding-bottom: 2rem;
}

/* Swiper nav buttons for products */
.product-slider-prev,
.product-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 1rem));
  z-index: 10;
  width: 44px;
  height: 44px;
  background: var(--color-black);
  color: var(--color-yellow);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.product-slider-prev {
  left: -8px;
}

.product-slider-next {
  right: -8px;
}

.product-slider-prev:hover,
.product-slider-next:hover {
  background: var(--color-yellow);
  color: var(--color-black);
  transform: translateY(calc(-50% - 1rem)) scale(1.08);
}

.product-slider-prev svg,
.product-slider-next svg {
  width: 20px;
  height: 20px;
}

.product-slider-prev.swiper-button-disabled,
.product-slider-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* =============================================================================
   14. PRODUCT CARD
   ============================================================================= */

.product-card,
ul.products li.product,
.wc-block-grid__product {
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  height: 100%;
}

.product-card:hover,
ul.products li.product:hover,
.wc-block-grid__product:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px);
}

/* Image area */
.product-card__image-wrap,
ul.products li.product a:first-child,
.wc-block-grid__product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
}

.product-card__image-wrap img,
ul.products li.product a:first-child img,
.wc-block-grid__product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.product-card:hover .product-card__image-wrap img,
ul.products li.product:hover a:first-child img,
.wc-block-grid__product:hover .wc-block-grid__product-image img {
  transform: scale(1.06);
}

/* Sale badge */
.product-card .onsale,
ul.products li.product .onsale,
.wc-block-grid__product .wc-block-grid__product-onsale {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  z-index: 5;
  line-height: 1.4;
  margin: 0;
}

/* Wishlist icon */
.product-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 34px;
  height: 34px;
  background: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: background-color 0.2s ease, color 0.2s ease;
  color: var(--color-grey-dark, #aaa);
}

.product-card__wishlist:hover,
.product-card__wishlist.is-wishlisted {
  background: var(--color-yellow);
  color: var(--color-black);
}

.product-card__wishlist svg {
  width: 16px;
  height: 16px;
}

/* Product body */
.product-card__body,
.wc-block-grid__product-title-link + * {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

.product-card__title,
ul.products li.product .woocommerce-loop-product__title,
.wc-block-grid__product-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-black);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price,
ul.products li.product .price,
.wc-block-grid__product-price {
  margin: 0.25rem 0;
}

.product-card__price .woocommerce-Price-amount,
ul.products li.product .price .woocommerce-Price-amount,
.wc-block-grid__product-price .woocommerce-Price-amount {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-black);
}

ul.products li.product .price del .woocommerce-Price-amount,
.product-card__price del .woocommerce-Price-amount {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-grey-dark, #aaa);
  margin-right: 0.35rem;
}

ul.products li.product .price ins,
.product-card__price ins {
  text-decoration: none;
  color: var(--color-black);
}

/* Add to Cart button */
.product-card .add_to_cart_button,
.product-card .button,
ul.products li.product .add_to_cart_button,
ul.products li.product a.button,
.wc-block-grid__product-add-to-cart .wp-block-button__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.65rem 1rem;
  margin-top: auto;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--color-black);
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  font-family: inherit;
  line-height: 1.4;
}

.product-card .add_to_cart_button:hover,
.product-card .button:hover,
ul.products li.product .add_to_cart_button:hover,
ul.products li.product a.button:hover,
.wc-block-grid__product-add-to-cart .wp-block-button__link:hover {
  background: var(--color-yellow);
  color: var(--color-black);
  border-color: var(--color-yellow);
}

/* Star rating */
.product-card .star-rating,
ul.products li.product .star-rating {
  font-size: 0.75rem;
  color: var(--color-yellow);
}

/* =============================================================================
   15. WHY CHOOSE US
   ============================================================================= */

.why-choose-us {
  background: var(--color-black);
  padding: 5rem 0;
}

.why-choose-us__inner {
  max-width: var(--container-max-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--spacing-md, 1.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-choose-us__image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.why-choose-us__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.why-choose-us__image::before {
  content: '';
  position: absolute;
  inset: -4px -4px 4px 4px;
  border: 3px solid var(--color-yellow);
  border-radius: 16px;
  z-index: 0;
  pointer-events: none;
}

.why-choose-us__content {
  color: var(--color-white);
}

.why-choose-us__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-yellow);
  margin-bottom: 0.75rem;
}

.why-choose-us__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.why-choose-us__heading em {
  font-style: normal;
  color: var(--color-yellow);
}

.why-choose-us__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.75rem;
}

.why-choose-us__features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.why-choose-us__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* Yellow checkmark bullet */
.why-choose-us__features li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--color-yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 10.5l3.5 3.5 6.5-7' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.why-choose-us__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--color-yellow);
  color: var(--color-black);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.why-choose-us__btn:hover {
  background: var(--color-white);
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* =============================================================================
   16. TESTIMONIALS
   ============================================================================= */

.testimonials-section {
  background: var(--color-grey-bg, #f5f5f5);
  padding: 5rem 0;
}

.testimonials-section .section-header {
  max-width: var(--container-max-width, 1280px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--spacing-md, 1.5rem);
}

.testimonials-swiper-wrap {
  max-width: var(--container-max-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--spacing-md, 1.5rem);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: auto;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: var(--color-yellow);
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-yellow);
}

.testimonial-card__quote {
  font-size: 1rem;
  color: var(--color-grey-dark, #555);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  position: relative;
}

.testimonial-card__quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--color-yellow);
  line-height: 0;
  position: relative;
  top: 0.5rem;
  margin-right: 0.25rem;
  font-style: normal;
  font-family: Georgia, serif;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-yellow);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-black);
  margin: 0;
}

.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--color-grey-dark, #888);
  margin: 0;
}

.testimonials-section .swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

.testimonials-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--color-grey-dark, #ccc);
  opacity: 1;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.testimonials-section .swiper-pagination-bullet-active {
  background: var(--color-yellow);
  transform: scale(1.3);
}

/* =============================================================================
   17. FAQ SECTION
   ============================================================================= */

.faq-section {
  background: var(--color-white);
  padding: 5rem 0;
}

.faq-section .section-header {
  max-width: var(--container-max-width, 1280px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--spacing-md, 1.5rem);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--spacing-md, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-grey-light, #eee);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-grey-light, #eee);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-black);
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
}

.faq-item[open] summary {
  color: var(--color-black);
}

/* Arrow icon */
.faq-item summary::after {
  content: '';
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--color-black);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5l5 5 5-5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  transition: transform 0.3s ease, background-color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
  background-color: var(--color-yellow);
  border-color: var(--color-yellow);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5l5 5 5-5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.faq-item__answer {
  padding: 0 0 1.25rem;
  color: var(--color-grey-dark, #666);
  font-size: 0.9375rem;
  line-height: 1.75;
  animation: faqFadeIn 0.25s ease;
}

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

/* =============================================================================
   18. CTA BANNER
   ============================================================================= */

.cta-banner {
  background: var(--color-yellow);
  padding: 5rem var(--spacing-md, 1.5rem);
  text-align: center;
}

.cta-banner__inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner__heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--color-black);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.cta-banner__subtitle {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.7);
  margin: 0 0 2rem;
  line-height: 1.6;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-banner__actions .btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--color-black);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-banner__actions .btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
  color: var(--color-white);
}

.cta-banner__actions .btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-black);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cta-banner__actions .btn-outline-dark:hover {
  background: var(--color-black);
  color: var(--color-yellow);
  transform: translateY(-2px);
}

/* =============================================================================
   19. FOOTER
   ============================================================================= */

.site-footer {
  background: var(--color-grey-bg, #f5f5f5);
  color: var(--color-grey-dark, #555);
  padding-top: 4rem;
}

.footer-widgets {
  max-width: var(--container-max-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--spacing-md, 1.5rem) 3rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-col__logo img {
  height: 48px;
  width: auto;
  margin-bottom: 0.5rem;
}

.footer-col__desc {
  font-size: 0.9rem;
  color: var(--color-grey-dark, #777);
  line-height: 1.7;
  margin: 0;
}

.footer-col__heading,
.widget-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid var(--color-yellow);
  display: inline-block;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  color: var(--color-grey-dark, #777);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--color-yellow);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--color-grey-dark, #777);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-yellow);
}

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: var(--color-yellow);
}

/* Newsletter in footer */
.footer-newsletter-form {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid var(--color-grey-light, #ddd);
  background: var(--color-white);
}

.footer-newsletter-form input[type="email"] {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  background: transparent;
  color: var(--color-black);
}

.footer-newsletter-form button {
  background: var(--color-yellow);
  border: none;
  padding: 0.65rem 1.1rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-black);
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.footer-newsletter-form button:hover {
  background: var(--color-black);
  color: var(--color-yellow);
}

/* =============================================================================
   20. FOOTER BOTTOM BAR
   ============================================================================= */

.footer-bottom {
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.65);
  padding: 1.125rem var(--spacing-md, 1.5rem);
}

.footer-bottom__inner {
  max-width: var(--container-max-width, 1280px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom__copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-bottom__copy a {
  color: var(--color-yellow);
  text-decoration: none;
}

.footer-bottom__copy a:hover {
  text-decoration: underline;
}

/* Payment icons */
.footer-payment-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-payment-icons img {
  height: 24px;
  width: auto;
  border-radius: 3px;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.footer-payment-icons img:hover {
  opacity: 1;
}

/* =============================================================================
   21. SOCIAL LINKS
   ============================================================================= */

.social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.social-link:hover {
  background: var(--color-yellow);
  color: var(--color-black);
  transform: scale(1.1);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Footer col social links (light bg variant) */
.footer-col .social-links .social-link {
  background: rgba(0, 0, 0, 0.08);
  color: var(--color-grey-dark, #777);
}

.footer-col .social-links .social-link:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}

/* =============================================================================
   22. WIDGET STYLES
   ============================================================================= */

.widget {
  margin-bottom: 2rem;
}

.widget:last-child {
  margin-bottom: 0;
}

.widget-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-black);
  margin: 0 0 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid var(--color-yellow);
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-grey-light, #f0f0f0);
  font-size: 0.9rem;
}

.widget ul li:last-child {
  border-bottom: none;
}

.widget ul li a {
  color: var(--color-grey-dark, #666);
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  justify-content: space-between;
}

.widget ul li a:hover {
  color: var(--color-yellow);
}

/* Price filter widget */
.widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: var(--color-grey-light, #ddd);
  height: 4px;
}

.widget_price_filter .price_slider_wrapper .ui-slider-range {
  background: var(--color-yellow);
}

.widget_price_filter .price_slider_wrapper .ui-slider-handle {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  width: 16px;
  height: 16px;
  top: -6px;
  cursor: pointer;
}

.widget_price_filter .price_label {
  font-size: 0.875rem;
  color: var(--color-black);
  font-weight: 600;
}

.widget_price_filter button {
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  padding: 0.45rem 1rem;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: inherit;
}

.widget_price_filter button:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}

/* =============================================================================
   23. SHOP LAYOUT
   ============================================================================= */

.woocommerce-page .wc-layout,
.shop-layout {
  max-width: var(--container-max-width, 1280px);
  margin: 0 auto;
  padding: 2.5rem var(--spacing-md, 1.5rem);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.woocommerce-sidebar,
.shop-sidebar {
  position: sticky;
  top: calc(76px + 1rem);
}

.wc-main,
.shop-main {
  min-width: 0;
}

/* Product loop grid */
.woocommerce-page ul.products,
ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 4-column option */
.products-grid--4col ul.products,
ul.products.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* =============================================================================
   24. BREADCRUMBS
   ============================================================================= */

.breadcrumbs-bar {
  background: var(--color-grey-bg, #f8f8f8);
  border-bottom: 1px solid var(--color-grey-light, #eee);
  padding: 0.75rem 0;
}

.breadcrumbs,
.woocommerce-breadcrumb {
  max-width: var(--container-max-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--spacing-md, 1.5rem);
  font-size: 0.8125rem;
  color: var(--color-grey-dark, #888);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.breadcrumbs a,
.woocommerce-breadcrumb a {
  color: var(--color-grey-dark, #888);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover,
.woocommerce-breadcrumb a:hover {
  color: var(--color-yellow);
}

.breadcrumbs .sep,
.woocommerce-breadcrumb .sep {
  color: var(--color-grey-dark, #ccc);
  padding: 0 0.2rem;
}

.breadcrumbs .current {
  color: var(--color-black);
  font-weight: 600;
}

/* =============================================================================
   25. SHOP FILTERS / TOOLBAR
   ============================================================================= */

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-grey-light, #eee);
  flex-wrap: wrap;
}

.woocommerce-result-count {
  font-size: 0.875rem;
  color: var(--color-grey-dark, #888);
  margin: 0;
}

.woocommerce-ordering {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.woocommerce-ordering label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-grey-dark, #666);
  white-space: nowrap;
}

.woocommerce-ordering select,
.shop-toolbar select {
  border: 1px solid var(--color-grey-light, #ddd);
  border-radius: 6px;
  padding: 0.45rem 2.2rem 0.45rem 0.75rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--color-black);
  background-color: var(--color-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 8l5 5 5-5' stroke='%23333' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 16px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce-ordering select:focus,
.shop-toolbar select:focus {
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2);
}

/* View toggle (grid / list) */
.shop-view-toggle {
  display: flex;
  gap: 0.25rem;
}

.shop-view-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-grey-light, #ddd);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  color: var(--color-grey-dark, #aaa);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.shop-view-btn.is-active,
.shop-view-btn:hover {
  border-color: var(--color-yellow);
  background: var(--color-yellow);
  color: var(--color-black);
}

.shop-view-btn svg {
  width: 18px;
  height: 18px;
}

/* =============================================================================
   26. SINGLE PRODUCT
   ============================================================================= */

.single-product-layout {
  max-width: var(--container-max-width, 1280px);
  margin: 0 auto;
  padding: 2.5rem var(--spacing-md, 1.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Product Gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  position: sticky;
  top: calc(76px + 1rem);
}

.product-gallery__main {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--color-grey-light, #f5f5f5);
}

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

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

.product-gallery__thumbs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.product-gallery__thumb {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
  background: var(--color-grey-light, #f5f5f5);
}

.product-gallery__thumb.is-active,
.product-gallery__thumb:hover {
  border-color: var(--color-yellow);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Product Details */
.product-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-details__category {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-yellow);
  margin: 0;
}

.product-details__title,
.single-product h1.product_title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-black);
  margin: 0 0 0.25rem;
  line-height: 1.25;
}

.product-details__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.product-details__price,
.single-product .price {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--color-black);
  margin: 0.5rem 0;
}

.single-product .price del {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-grey-dark, #aaa);
  margin-right: 0.5rem;
}

.single-product .price ins {
  text-decoration: none;
}

.product-details__short-desc,
.single-product .woocommerce-product-details__short-description {
  font-size: 0.9375rem;
  color: var(--color-grey-dark, #666);
  line-height: 1.7;
}

/* Variations */
.variations {
  width: 100%;
  border: none;
  border-spacing: 0;
}

.variations tr {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.875rem;
}

.variations label {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-black);
}

.variations select {
  border: 1.5px solid var(--color-grey-light, #ddd);
  border-radius: 6px;
  padding: 0.55rem 2.2rem 0.55rem 0.75rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--color-black);
  background-color: var(--color-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 8l5 5 5-5' stroke='%23333' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 16px;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease;
}

.variations select:focus {
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(255,204,0,0.2);
}

/* Quantity */
.quantity-atc-row {
  display: flex;
  gap: 0.875rem;
  align-items: center;
  flex-wrap: wrap;
}

.quantity,
.woocommerce .quantity {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-grey-light, #ddd);
  border-radius: 6px;
  overflow: hidden;
}

.quantity__btn {
  width: 38px;
  height: 46px;
  background: var(--color-grey-bg, #f5f5f5);
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--color-black);
  transition: background-color 0.15s ease;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity__btn:hover {
  background: var(--color-yellow);
}

.quantity input[type=number],
input.qty {
  width: 52px;
  height: 46px;
  border: none;
  border-left: 1px solid var(--color-grey-light, #ddd);
  border-right: 1px solid var(--color-grey-light, #ddd);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--color-black);
  outline: none;
  -moz-appearance: textfield;
}

.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* Add to Cart button */
.single_add_to_cart_button,
.woocommerce .single_add_to_cart_button {
  flex: 1;
  padding: 0.875rem 1.5rem;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--color-black);
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.single_add_to_cart_button:hover,
.woocommerce .single_add_to_cart_button:hover {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-black);
}

/* Custom quote buttons */
.product-quote-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-quote,
.btn-whatsapp-order {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  font-family: inherit;
}

.btn-quote {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}

.btn-quote:hover {
  background: var(--color-black);
  color: var(--color-yellow);
}

.btn-whatsapp-order {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn-whatsapp-order:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
}

/* Product meta */
.product-meta,
.product_meta {
  font-size: 0.8125rem;
  color: var(--color-grey-dark, #888);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-grey-light, #eee);
}

.product-meta span,
.product_meta span {
  display: inline-block;
}

.product-meta a,
.product_meta a {
  color: var(--color-black);
  text-decoration: none;
  font-weight: 600;
}

.product-meta a:hover,
.product_meta a:hover {
  color: var(--color-yellow);
}

/* =============================================================================
   27. CART PAGE
   ============================================================================= */

.woocommerce-cart-wrap {
  max-width: var(--container-max-width, 1280px);
  margin: 0 auto;
  padding: 2.5rem var(--spacing-md, 1.5rem);
}

.cart-table,
.woocommerce-cart-form table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-grey-light, #eee);
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.9375rem;
}

.cart-table thead,
.woocommerce-cart-form table.shop_table thead {
  background: var(--color-black);
  color: var(--color-white);
}

.cart-table thead th,
.woocommerce-cart-form table.shop_table thead th {
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cart-table tbody tr,
.woocommerce-cart-form table.shop_table tbody tr {
  border-bottom: 1px solid var(--color-grey-light, #f0f0f0);
  transition: background-color 0.15s ease;
}

.cart-table tbody tr:hover,
.woocommerce-cart-form table.shop_table tbody tr:hover {
  background: var(--color-grey-bg, #fafafa);
}

.cart-table td,
.woocommerce-cart-form table.shop_table td {
  padding: 1rem;
  vertical-align: middle;
}

/* Product image in cart */
.woocommerce-cart-form table.shop_table td.product-thumbnail img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
}

/* Remove button */
.woocommerce-cart-form td.product-remove a.remove,
td.product-remove a.remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-grey-light, #f0f0f0);
  color: var(--color-grey-dark, #888);
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.woocommerce-cart-form td.product-remove a.remove:hover {
  background: #ff3b3b;
  color: var(--color-white);
}

/* Coupon + update row */
.woocommerce-cart-form .actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  flex-wrap: wrap;
}

.woocommerce-cart-form .coupon {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.woocommerce-cart-form .coupon input[type=text],
.woocommerce-cart-form input.input-text {
  border: 1.5px solid var(--color-grey-light, #ddd);
  border-radius: 6px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
  color: var(--color-black);
}

.woocommerce-cart-form .coupon input[type=text]:focus {
  border-color: var(--color-yellow);
}

/* Cart totals */
.cart_totals {
  margin-top: 2rem;
  max-width: 400px;
  margin-left: auto;
}

.cart_totals h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cart_totals table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-grey-light, #eee);
  border-radius: 10px;
  overflow: hidden;
}

.cart_totals table th,
.cart_totals table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-grey-light, #f0f0f0);
  font-size: 0.9375rem;
}

.cart_totals table th {
  font-weight: 700;
  color: var(--color-grey-dark, #666);
  background: var(--color-grey-bg, #f8f8f8);
  width: 40%;
  text-align: left;
}

.cart_totals table .order-total th,
.cart_totals table .order-total td {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-black);
  border-bottom: none;
}

.wc-proceed-to-checkout .checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 1.0625rem;
  font-weight: 700;
  border: 2px solid var(--color-yellow);
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  gap: 0.5rem;
}

.wc-proceed-to-checkout .checkout-button:hover {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-yellow);
}

/* =============================================================================
   28. CHECKOUT PAGE
   ============================================================================= */

.woocommerce-checkout-wrap,
.woocommerce-checkout {
  max-width: var(--container-max-width, 1280px);
  margin: 0 auto;
  padding: 2.5rem var(--spacing-md, 1.5rem);
}

.checkout-two-col {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.5rem;
  align-items: start;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.checkout-form h3,
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-black);
  margin: 0 0 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid var(--color-yellow);
}

/* Form fields */
.woocommerce-billing-fields .form-row,
.woocommerce-shipping-fields .form-row,
.woocommerce-checkout .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.875rem;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  display: inline-flex;
  width: calc(50% - 0.4rem);
  flex-direction: column;
}

.woocommerce-checkout .form-row-first {
  margin-right: 0.5rem;
}

.woocommerce-checkout label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-grey-dark, #555);
}

.woocommerce-checkout label .required {
  color: #e00;
}

.woocommerce-checkout input[type=text],
.woocommerce-checkout input[type=email],
.woocommerce-checkout input[type=tel],
.woocommerce-checkout input[type=number],
.woocommerce-checkout textarea,
.woocommerce-checkout select {
  border: 1.5px solid var(--color-grey-light, #ddd);
  border-radius: 6px;
  padding: 0.65rem 0.875rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--color-black);
  background: var(--color-white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus {
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2);
}

.woocommerce-checkout textarea {
  min-height: 100px;
  resize: vertical;
}

/* Order review */
.order-review,
#order_review {
  background: var(--color-grey-bg, #f8f8f8);
  border-radius: 12px;
  padding: 1.75rem;
  position: sticky;
  top: calc(76px + 1rem);
}

.order-review h3,
#order_review_heading {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-black);
  margin: 0 0 1rem;
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.woocommerce-checkout-review-order-table thead th {
  text-align: left;
  font-weight: 700;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-grey-light, #ddd);
  color: var(--color-grey-dark, #666);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.woocommerce-checkout-review-order-table tbody tr,
.woocommerce-checkout-review-order-table tfoot tr {
  border-bottom: 1px solid var(--color-grey-light, #f0f0f0);
}

.woocommerce-checkout-review-order-table td,
.woocommerce-checkout-review-order-table th {
  padding: 0.625rem 0;
  vertical-align: middle;
}

.woocommerce-checkout-review-order-table tfoot .order-total th,
.woocommerce-checkout-review-order-table tfoot .order-total td {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-black);
}

/* Payment methods */
#payment {
  margin-top: 1.5rem;
}

#payment .payment_methods {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--color-grey-light, #ddd);
  border-radius: 8px;
  overflow: hidden;
}

#payment .payment_methods li {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--color-grey-light, #f0f0f0);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

#payment .payment_methods li:last-child {
  border-bottom: none;
}

#payment .payment_methods li:hover {
  background: var(--color-grey-bg, #fafafa);
}

#payment .payment_methods li label {
  font-weight: 600;
  cursor: pointer;
}

#payment #place_order {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  margin-top: 1.25rem;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 1.0625rem;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  font-family: inherit;
  letter-spacing: 0.02em;
}

#payment #place_order:hover {
  background: var(--color-black);
  color: var(--color-yellow);
  transform: translateY(-1px);
}

/* =============================================================================
   29. MY ACCOUNT PAGE
   ============================================================================= */

.woocommerce-account-wrap {
  max-width: var(--container-max-width, 1280px);
  margin: 0 auto;
  padding: 2.5rem var(--spacing-md, 1.5rem);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Tab navigation */
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: var(--color-grey-bg, #f8f8f8);
  border-radius: 10px;
  overflow: hidden;
  position: sticky;
  top: calc(76px + 1rem);
  border: 1px solid var(--color-grey-light, #eee);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  color: var(--color-grey-dark, #555);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--color-grey-light, #eee);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child a {
  border-bottom: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  background: var(--color-yellow);
  color: var(--color-black);
}

/* Account content */
.woocommerce-account .woocommerce-MyAccount-content {
  min-width: 0;
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-black);
  margin: 0 0 1.25rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid var(--color-yellow);
}

/* Account forms */
.woocommerce-account .woocommerce-EditAccountForm fieldset,
.woocommerce-account .woocommerce-address-fields fieldset {
  border: 1px solid var(--color-grey-light, #eee);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 0 0 1.5rem;
}

.woocommerce-account .woocommerce-EditAccountForm legend,
.woocommerce-account .woocommerce-address-fields legend {
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 0.5rem;
  color: var(--color-black);
}

.woocommerce-account input[type=text],
.woocommerce-account input[type=email],
.woocommerce-account input[type=tel],
.woocommerce-account input[type=password],
.woocommerce-account textarea {
  border: 1.5px solid var(--color-grey-light, #ddd);
  border-radius: 6px;
  padding: 0.65rem 0.875rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--color-black);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.woocommerce-account input:focus,
.woocommerce-account textarea:focus {
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2);
}

/* Orders table in account */
.woocommerce-account .woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-grey-light, #eee);
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.9rem;
}

.woocommerce-account .woocommerce-orders-table thead {
  background: var(--color-black);
  color: var(--color-white);
}

.woocommerce-account .woocommerce-orders-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.woocommerce-account .woocommerce-orders-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-grey-light, #f0f0f0);
  vertical-align: middle;
}

.woocommerce-account .woocommerce-orders-table tbody tr:last-child td {
  border-bottom: none;
}

.woocommerce-account .woocommerce-orders-table tbody tr:hover {
  background: var(--color-grey-bg, #fafafa);
}

/* Order status badges */
.woocommerce-order-status {
  display: inline-block;
  padding: 0.2rem 0.625rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.woocommerce-order-status.status-processing {
  background: rgba(255, 204, 0, 0.2);
  color: #7a5e00;
}

.woocommerce-order-status.status-completed {
  background: rgba(37, 211, 102, 0.15);
  color: #0e6630;
}

.woocommerce-order-status.status-on-hold {
  background: rgba(0, 0, 0, 0.08);
  color: #555;
}

.woocommerce-order-status.status-cancelled,
.woocommerce-order-status.status-refunded {
  background: rgba(220, 50, 50, 0.1);
  color: #9e1a1a;
}

/* =============================================================================
   30. BUTTONS — WooCommerce OVERRIDES
   ============================================================================= */

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.5rem;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 700;
  border: 2px solid var(--color-black);
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  font-family: inherit;
  text-decoration: none;
  line-height: 1.4;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .button:hover {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-black);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-black);
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-yellow);
}

.woocommerce a.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* =============================================================================
   UTILITIES & HELPERS
   ============================================================================= */

.container {
  max-width: var(--container-max-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--spacing-md, 1.5rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* WooCommerce notices */
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
  border-radius: 8px;
  padding: 0.875rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.woocommerce-notices-wrapper .woocommerce-message {
  background: rgba(37, 211, 102, 0.1);
  border-left: 4px solid #25d366;
  color: #0e5e2e;
}

.woocommerce-notices-wrapper .woocommerce-info {
  background: rgba(255, 204, 0, 0.15);
  border-left: 4px solid var(--color-yellow);
  color: #6b5000;
}

.woocommerce-notices-wrapper .woocommerce-error {
  background: rgba(220, 50, 50, 0.1);
  border-left: 4px solid #dc3232;
  color: #7a1010;
  list-style: none;
  padding-left: 1.25rem;
}

/* =============================================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================================= */

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

  .feature-item + .feature-item:nth-child(3) {
    border-left: none;
  }

  .footer-widgets {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .woocommerce-page .wc-layout,
  .shop-layout {
    grid-template-columns: 220px 1fr;
    gap: 1.75rem;
  }

  .woocommerce-page ul.products,
  ul.products {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-us__inner {
    gap: 2.5rem;
  }

  .checkout-two-col {
    grid-template-columns: 1fr 360px;
    gap: 1.75rem;
  }

  .single-product-layout {
    gap: 2rem;
  }
}

/* =============================================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================================= */

@media (max-width: 768px) {
  /* Top bar */
  .top-bar__contact {
    display: none;
  }

  /* Header */
  .site-header__inner {
    height: 60px;
  }

  .site-header.is-sticky .site-header__inner {
    height: 56px;
  }

  .primary-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

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

  /* Hero */
  .hero-slide {
    min-height: 60vh;
  }

  .hero-content__heading {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
  }

  .hero-content__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-section .swiper-button-prev,
  .hero-section .swiper-button-next {
    display: none;
  }

  /* Features */
  .features-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .feature-item + .feature-item {
    border-left: none;
  }

  /* Category grid */
  .category-grid {
    grid-template-columns: 1fr;
  }

  /* Why choose us */
  .why-choose-us__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-choose-us__image {
    order: -1;
  }

  /* Footer */
  .footer-widgets {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  /* Shop layout */
  .woocommerce-page .wc-layout,
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .woocommerce-sidebar,
  .shop-sidebar {
    position: static;
    order: -1;
  }

  .woocommerce-page ul.products,
  ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }

  /* Single product */
  .single-product-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .product-gallery {
    position: static;
  }

  /* Cart */
  .cart-table thead {
    display: none;
  }

  .cart-table tbody tr {
    display: flex;
    flex-direction: column;
    padding: 0.875rem;
    border: 1px solid var(--color-grey-light, #eee);
    border-radius: 8px;
    margin-bottom: 0.875rem;
  }

  .cart-table td {
    padding: 0.25rem 0;
    border: none;
  }

  .cart_totals {
    max-width: 100%;
  }

  /* Checkout */
  .checkout-two-col {
    grid-template-columns: 1fr;
  }

  .order-review,
  #order_review {
    position: static;
    order: -1;
  }

  /* Account */
  .woocommerce-account-wrap {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    position: static;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: flex;
    overflow-x: auto;
    gap: 0;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    border-bottom: none;
    border-right: 1px solid var(--color-grey-light, #eee);
    white-space: nowrap;
    padding: 0.65rem 1rem;
  }

  /* CTA Banner */
  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  /* Product slider arrows */
  .product-slider-prev,
  .product-slider-next {
    display: none;
  }
}

/* =============================================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================================= */

@media (max-width: 480px) {
  .woocommerce-page ul.products,
  ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }

  .features-bar__inner {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    min-height: 50vh;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .checkout-two-col .woocommerce-checkout .form-row-first,
  .checkout-two-col .woocommerce-checkout .form-row-last {
    width: 100%;
    display: flex;
    margin-right: 0;
  }
}
