*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Poppins", "Noto Sans Tamil", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #3D1F0A;
  background-color: #FDF6EC;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .section {
    padding: 2.5rem 0;
  }
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section__title {
  font-size: 2rem;
  font-weight: 700;
  color: #3D1F0A;
  position: relative;
}
.section__title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #C0440E;
  margin-top: 0.5rem;
  border-radius: 9999px;
}
@media (max-width: 767px) {
  .section__title {
    font-size: 1.5rem;
  }
}

.section__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #C0440E;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  gap: 0.25rem;
}
.section__link:hover {
  color: rgb(144.4660194175, 51.1650485437, 10.5339805825);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 9999px;
  font-family: "Poppins", "Noto Sans Tamil", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:focus-visible {
  outline: 2px solid #C0440E;
  outline-offset: 2px;
}
.btn--primary {
  background: #C0440E;
  color: #FFFFFF;
  border-color: #C0440E;
}
.btn--primary:hover {
  background: rgb(144.4660194175, 51.1650485437, 10.5339805825);
  border-color: rgb(144.4660194175, 51.1650485437, 10.5339805825);
}
.btn--secondary {
  background: #D4880A;
  color: #FFFFFF;
  border-color: #D4880A;
}
.btn--secondary:hover {
  background: rgb(163.2972972973, 104.7567567568, 7.7027027027);
}
.btn--outline {
  background: transparent;
  color: #C0440E;
  border-color: #C0440E;
}
.btn--outline:hover {
  background: #C0440E;
  color: #FFFFFF;
}
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}
.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  color: #3D1F0A;
  transition: all 0.15s ease;
  position: relative;
}
.icon-btn:hover {
  background: rgba(192, 68, 14, 0.1);
  color: #C0440E;
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #3D1F0A;
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 9999;
  transition: transform 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(61, 31, 10, 0.16);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}
.toast.toast--success {
  background: #2E7D32;
}
.toast.toast--error {
  background: #C62828;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.modal.open {
  display: block;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.modal__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(61, 31, 10, 0.16);
}
.modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3D1F0A;
  margin-bottom: 0.75rem;
}
.modal__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #6B4C30;
}
.modal__close:hover {
  background: #E8D5BF;
  color: #3D1F0A;
}

.skeleton {
  background: linear-gradient(90deg, #f0e8dc 25%, #ede0cc 50%, #f0e8dc 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 96px;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(61, 31, 10, 0.08);
  transition: box-shadow 0.25s ease;
}
.header.scrolled {
  box-shadow: 0 4px 12px rgba(61, 31, 10, 0.12);
}
@media (max-width: 767px) {
  .header {
    height: 72px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  height: 100%;
  gap: 1rem;
}
.header__logo {
  flex-shrink: 0;
}
.header__logo-img {
  height: 80px;
  width: auto;
}
@media (max-width: 767px) {
  .header__logo-img {
    height: 56px;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 992px) {
  .header__nav {
    display: block;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 1.5rem;
}
.header__nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #3D1F0A;
  padding: 0.5rem 0;
  position: relative;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #C0440E;
  transition: width 0.25s ease;
}
.header__nav-link:hover, .header__nav-link.active {
  color: #C0440E;
}
.header__nav-link:hover::after, .header__nav-link.active::after {
  width: 100%;
}
.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  gap: 0.5rem;
}

.lang-switcher {
  position: relative;
}
.lang-switcher__btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #3D1F0A;
  border: 1px solid #E8D5BF;
  transition: all 0.15s ease;
}
.lang-switcher__btn:hover {
  border-color: #C0440E;
  color: #C0440E;
}
.lang-switcher__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: #FFFFFF;
  border: 1px solid #E8D5BF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(61, 31, 10, 0.12);
  min-width: 140px;
  overflow: hidden;
  z-index: 200;
}
.lang-switcher__dropdown.open {
  display: block;
}

.lang-option {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  color: #3D1F0A;
  transition: all 0.15s ease;
}
.lang-option:hover {
  background: #FDF6EC;
  color: #C0440E;
}
.lang-option.active {
  color: #C0440E;
  font-weight: 600;
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #C0440E;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.auth-area {
  display: none;
}
@media (min-width: 768px) {
  .auth-area {
    display: block;
  }
}

.user-menu {
  position: relative;
}

.user-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: #FFFFFF;
  border: 1px solid #E8D5BF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(61, 31, 10, 0.12);
  min-width: 160px;
  overflow: hidden;
  z-index: 200;
}
.user-dropdown.open {
  display: block;
}
.user-dropdown li a,
.user-dropdown li button {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  color: #3D1F0A;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
}
.user-dropdown li a:hover,
.user-dropdown li button:hover {
  background: #FDF6EC;
  color: #C0440E;
}
.user-dropdown li:last-child {
  border-top: 1px solid #E8D5BF;
}
.user-dropdown li:last-child button {
  color: #C62828;
}
.user-dropdown li:last-child button:hover {
  background: rgba(198, 40, 40, 0.06);
  color: #C62828;
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
}
@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #3D1F0A;
  border-radius: 9999px;
  transition: all 0.25s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__nav.mobile-open {
  display: block;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  padding: 1.5rem 1.5rem;
  overflow-y: auto;
  z-index: 99;
}
.header__nav.mobile-open .header__nav-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.header__nav.mobile-open .header__nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  border-bottom: 1px solid #E8D5BF;
  width: 100%;
}

.search-bar {
  display: none;
  background: #FDF6EC;
  border-top: 1px solid #E8D5BF;
  padding: 0.75rem 0;
}
.search-bar.open {
  display: block;
}
.search-bar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.75rem;
  border: 1px solid #E8D5BF;
  border-radius: 9999px;
  background: #FFFFFF;
  padding: 0.5rem 1rem;
}
.search-bar__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.875rem;
  color: #3D1F0A;
}
.search-bar__input::placeholder {
  color: #6B4C30;
}
.search-bar__btn {
  color: #C0440E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #3D1F0A;
  height: 520px;
}
@media (max-width: 767px) {
  .slider {
    height: 320px;
  }
}
.slider__track {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  height: 100%;
  transition: transform 0.4s ease;
}
.slider__slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slider__slide--placeholder {
  background: linear-gradient(135deg, #3D1F0A 0%, #C0440E 100%);
}
.slider__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 100%);
}
.slider__content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 520px;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .slider__content {
    left: 1.5rem;
    max-width: 85%;
  }
}
.slider__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .slider__title {
    font-size: 2rem;
  }
}
.slider__subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
@media (max-width: 767px) {
  .slider__subtitle {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}
.slider__prev, .slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border-radius: 9999px;
  font-size: 2rem;
  transition: all 0.15s ease;
  backdrop-filter: blur(4px);
}
.slider__prev:hover, .slider__next:hover {
  background: rgba(255, 255, 255, 0.4);
}
@media (max-width: 575px) {
  .slider__prev, .slider__next {
    display: none;
  }
}
.slider__prev {
  left: 1rem;
}
.slider__next {
  right: 1rem;
}
.slider__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.5rem;
  z-index: 3;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
}
.slider-dot.active {
  background: #FFFFFF;
  width: 24px;
}

.offers-strip {
  position: sticky;
  top: 0;
  z-index: 101;
  background: #D4880A;
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.offers-strip__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 22s linear infinite;
}
.offers-strip__track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--marquee-translate, -50%));
  }
}
.offer-chip {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.75rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
}
.offer-chip__tag {
  background: #FFFFFF;
  color: #D4880A;
  border-radius: 9999px;
  padding: 2px 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.offer-sep {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}

.offer-chip {
  margin-right: 0.75rem;
}

.categories {
  background: #FFFFFF;
}
.categories .section__header {
  justify-content: center;
  text-align: center;
}
.categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 576px) {
  .categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .categories__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 992px) {
  .categories__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.category-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: #FDF6EC;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.category-card:hover, .category-card.active {
  border-color: #C0440E;
  background: rgba(192, 68, 14, 0.05);
}
.category-card__img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 9999px;
  background: #E8D5BF;
}
.category-card__icon {
  font-size: 2rem;
}
.category-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #3D1F0A;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.category-card__count {
  font-size: 0.75rem;
  color: #6B4C30;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 576px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .products__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(61, 31, 10, 0.1);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(61, 31, 10, 0.16);
}
.product-card {
  background: #FFFFFF;
  border: 1px solid #E8D5BF;
}
.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #FDF6EC;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img {
  transform: scale(1.06);
}
.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #C0440E;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 0.5rem;
  border-radius: 9999px;
}
.product-card__fav {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(61, 31, 10, 0.08);
  color: #6B4C30;
  transition: all 0.15s ease;
  cursor: pointer;
}
.product-card__fav:hover, .product-card__fav.active {
  color: #C0440E;
  background: rgba(192, 68, 14, 0.1);
}
.product-card__body {
  padding: 1rem;
}
.product-card__category {
  font-size: 0.75rem;
  color: #C0440E;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}
.product-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: #3D1F0A;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.product-card__price-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.product-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3D1F0A;
}
.product-card__original-price {
  font-size: 0.875rem;
  color: #6B4C30;
  text-decoration: line-through;
}
.product-card__unit {
  font-size: 0.75rem;
  color: #6B4C30;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 0.5rem;
}
.product-card__add-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 9999px;
  font-family: "Poppins", "Noto Sans Tamil", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.product-card__add-btn:focus-visible {
  outline: 2px solid #C0440E;
  outline-offset: 2px;
}
.product-card__add-btn {
  background: transparent;
  color: #C0440E;
  border-color: #C0440E;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
}
.product-card__add-btn:hover {
  background: #C0440E;
  color: #FFFFFF;
}
.product-card__buy-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 9999px;
  font-family: "Poppins", "Noto Sans Tamil", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.product-card__buy-btn:focus-visible {
  outline: 2px solid #C0440E;
  outline-offset: 2px;
}
.product-card__buy-btn {
  background: #C0440E;
  color: #FFFFFF;
  border-color: #C0440E;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
}
.product-card__buy-btn:hover {
  background: rgb(144.4660194175, 51.1650485437, 10.5339805825);
}
.product-card--out-of-stock {
  opacity: 0.7;
}
.product-card--out-of-stock .product-card__add-btn {
  background: #E8D5BF;
  border-color: #E8D5BF;
  color: #6B4C30;
  cursor: not-allowed;
}

.banner {
  padding: 2rem 0;
}
.banner__inner {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.banner__inner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .banner__inner img {
    height: 300px;
  }
}
.banner--bottom {
  padding-top: 0;
}

.why-us {
  background: #3D1F0A;
  color: #FFFFFF;
}
.why-us .section__title {
  color: #FFFFFF;
}
.why-us .section__title::after {
  background: #D4880A;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .why-us__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.why-us__item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.25s ease;
}
.why-us__item:hover {
  background: rgba(255, 255, 255, 0.12);
}
.why-us__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.why-us h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #D4880A;
  margin-bottom: 0.5rem;
}
.why-us p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.instagram {
  background: #FFFFFF;
}
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 576px) {
  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .instagram__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.insta-card {
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #FDF6EC;
  cursor: pointer;
}
.insta-card__video, .insta-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.insta-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.insta-card__overlay svg {
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.25s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}
.insta-card:hover .insta-card__video,
.insta-card:hover .insta-card__thumb {
  transform: scale(1.06);
}
.insta-card:hover .insta-card__overlay {
  background: rgba(0, 0, 0, 0.35);
}
.insta-card:hover .insta-card__overlay svg {
  opacity: 1;
}

.footer {
  background: #3D1F0A;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 576px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}
@media (max-width: 575px) {
  .footer__col--brand {
    text-align: center;
  }
}
.footer__logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}
@media (max-width: 575px) {
  .footer__logo {
    margin: 0 auto 1rem;
  }
}
.footer__tagline {
  font-size: 0.875rem;
  font-weight: 500;
  color: #D4880A;
  margin-bottom: 0.5rem;
}
.footer__origin {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer__heading {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #D4880A;
}
.footer__links {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s ease;
}
.footer__links a:hover {
  color: #D4880A;
}
.footer__links--contact li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer__links--contact li svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 575px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  gap: 1rem;
}
.footer__social a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s ease;
}
.footer__social a:hover {
  color: #D4880A;
}

.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: #6B4C30;
}
.breadcrumb a {
  color: #6B4C30;
  text-decoration: none;
  transition: color 0.15s ease;
}
.breadcrumb a:hover {
  color: #C0440E;
}
.breadcrumb__sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}
.breadcrumb__current {
  color: #3D1F0A;
  font-weight: 500;
}

.products-page-hero {
  background: #FFFFFF;
  border-bottom: 1px solid #E8D5BF;
  padding: 1.5rem 0 1.25rem;
}
.products-page-hero__title {
  font-size: 2rem;
  font-weight: 700;
  color: #3D1F0A;
  margin-bottom: 1rem;
}
.products-page-hero__search {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.75rem;
  max-width: 480px;
}
.products-page-hero__search .search-input {
  flex: 1;
  height: 42px;
  padding: 0 1rem;
  border: 1.5px solid #E8D5BF;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #3D1F0A;
  background: #FDF6EC;
  transition: border-color 0.15s ease;
  outline: none;
}
.products-page-hero__search .search-input:focus {
  border-color: #C0440E;
}
.products-page-hero__search .search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 9999px;
  font-family: "Poppins", "Noto Sans Tamil", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.products-page-hero__search .search-btn:focus-visible {
  outline: 2px solid #C0440E;
  outline-offset: 2px;
}
.products-page-hero__search .search-btn {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 9999px;
  background: #C0440E;
  color: #FFFFFF;
  border-color: #C0440E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.products-page-hero__search .search-btn:hover {
  background: rgb(144.4660194175, 51.1650485437, 10.5339805825);
}

.products-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0 4rem;
  align-items: start;
}
@media (min-width: 768px) {
  .products-layout {
    grid-template-columns: 240px 1fr;
  }
}

.filter-sidebar {
  background: #FFFFFF;
  border: 1px solid #E8D5BF;
  border-radius: 12px;
  padding: 1.25rem;
}
@media (max-width: 767px) {
  .filter-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    overflow-y: auto;
    z-index: 200;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(61, 31, 10, 0.16);
    transition: left 0.25s ease;
  }
  .filter-sidebar.open {
    left: 0;
  }
}

.filter-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 199;
}
.filter-backdrop.open {
  display: block;
}

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  margin-bottom: 1.25rem;
}
.filter-header__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #3D1F0A;
}
.filter-header__close {
  display: none;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #6B4C30;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .filter-header__close {
    display: block;
  }
}

.filter-section {
  margin-bottom: 1.5rem;
}
.filter-section:last-child {
  margin-bottom: 0;
}
.filter-section__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6B4C30;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.category-filter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.category-filter-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #3D1F0A;
  cursor: pointer;
  transition: all 0.15s ease;
}
.category-filter-btn:hover {
  background: #FDF6EC;
  color: #C0440E;
}
.category-filter-btn.active {
  background: rgba(192, 68, 14, 0.1);
  color: #C0440E;
  font-weight: 600;
}

.filter-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 9999px;
  font-family: "Poppins", "Noto Sans Tamil", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.filter-toggle-btn:focus-visible {
  outline: 2px solid #C0440E;
  outline-offset: 2px;
}
.filter-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.5rem;
  background: #FFFFFF;
  color: #3D1F0A;
  border-color: #E8D5BF;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .filter-toggle-btn {
    display: none;
  }
}
.filter-toggle-btn svg {
  flex-shrink: 0;
}

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: #FFFFFF;
  border: 1px solid #E8D5BF;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.products-count {
  font-size: 0.875rem;
  color: #6B4C30;
}
.products-count strong {
  color: #3D1F0A;
  font-weight: 600;
}

.products-sort {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.5rem;
}
.products-sort label {
  font-size: 0.875rem;
  color: #6B4C30;
  white-space: nowrap;
}
.products-sort select {
  border: 1.5px solid #E8D5BF;
  border-radius: 8px;
  padding: 0.25rem 1rem 0.25rem 0.5rem;
  font-size: 0.875rem;
  color: #3D1F0A;
  background: #FDF6EC;
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s ease;
}
.products-sort select:focus {
  border-color: #C0440E;
}

.products-main {
  min-width: 0;
}

.products-grid--page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 576px) {
  .products-grid--page {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .products-grid--page {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .products-grid--page {
    grid-template-columns: repeat(3, 1fr);
  }
}

.products-empty {
  grid-column: 1/-1;
  padding: 4rem 2rem;
  text-align: center;
}
.products-empty__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.products-empty__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3D1F0A;
  margin-bottom: 0.5rem;
}
.products-empty__text {
  font-size: 0.875rem;
  color: #6B4C30;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 0.75rem;
  border: 1.5px solid #E8D5BF;
  border-radius: 8px;
  background: #FFFFFF;
  color: #3D1F0A;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-btn:hover {
  border-color: #C0440E;
  color: #C0440E;
}
.page-btn.active {
  background: #C0440E;
  border-color: #C0440E;
  color: #FFFFFF;
  font-weight: 600;
}

.page-ellipsis {
  color: #6B4C30;
  padding: 0 0.25rem;
  line-height: 36px;
}

.delivery-story {
  background: linear-gradient(135deg, #3D1F0A 0%, #5C2D0E 100%);
  color: #FFFFFF;
  overflow: hidden;
  position: relative;
}
.delivery-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.delivery-story .container {
  position: relative;
}
.delivery-story__header {
  text-align: center;
  margin-bottom: 3rem;
}
.delivery-story__header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}
.delivery-story__header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #D4880A;
  margin: 0.75rem auto 0;
  border-radius: 9999px;
}
@media (max-width: 767px) {
  .delivery-story__header h2 {
    font-size: 1.5rem;
  }
}
.delivery-story__header p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto;
}
.delivery-story__track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 1.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .delivery-story__track {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.delivery-story__node {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  flex: 0 0 auto;
  z-index: 1;
}
.delivery-story__node-img {
  width: 120px;
  height: 120px;
  border-radius: 9999px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.12);
  padding: 1rem;
  box-shadow: 0 0 0 4px rgba(212, 136, 10, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .delivery-story__node-img {
    width: 96px;
    height: 96px;
  }
}
.delivery-story__node-icon {
  width: 120px;
  height: 120px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 0 0 4px rgba(74, 140, 140, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .delivery-story__node-icon {
    width: 96px;
    height: 96px;
    font-size: 2.5rem;
  }
}
.delivery-story__node-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}
.delivery-story__node-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
.delivery-story__path {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .delivery-story__path {
    width: 100%;
    flex-direction: column;
  }
}
.delivery-story__specialty-badge {
  background: #D4880A;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(212, 136, 10, 0.4);
  white-space: nowrap;
}
.delivery-story__dots {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
@media (max-width: 767px) {
  .delivery-story__dots {
    flex-direction: column;
    height: 60px;
    width: auto;
    gap: 8px;
  }
}
.delivery-story__dots span {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}
.delivery-story__dots span:nth-child(odd) {
  background: rgba(212, 136, 10, 0.7);
}
.delivery-story__features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .delivery-story__features {
    gap: 1rem;
  }
}
.delivery-story__feature {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  min-width: 180px;
}
.delivery-story__feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.delivery-story__feature-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #FFFFFF;
}
.delivery-story__feature-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 100vw;
  background: #FFFFFF;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-drawer__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.cart-drawer__backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #E8D5BF;
  flex-shrink: 0;
}
.cart-drawer__header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3D1F0A;
}
.cart-drawer__close {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B4C30;
  font-size: 1.25rem;
  transition: all 0.15s ease;
}
.cart-drawer__close:hover {
  background: #FDF6EC;
  color: #3D1F0A;
}
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-drawer__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  color: #6B4C30;
  text-align: center;
  padding: 2rem;
}
.cart-drawer__empty-icon {
  font-size: 3rem;
}
.cart-drawer__empty p {
  font-size: 0.875rem;
}
.cart-drawer__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #E8D5BF;
}
.cart-drawer__item:last-child {
  border-bottom: none;
}
.cart-drawer__item-img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #FDF6EC;
}
.cart-drawer__item-info {
  flex: 1;
  min-width: 0;
}
.cart-drawer__item-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #3D1F0A;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-drawer__item-price {
  font-size: 1rem;
  font-weight: 700;
  color: #C0440E;
  margin-bottom: 0.75rem;
}
.cart-drawer__item-unit {
  font-size: 0.75rem;
  color: #6B4C30;
}
.cart-drawer__item-qty {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.5rem;
}
.cart-drawer__item-qty button {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  border: 1px solid #E8D5BF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: #3D1F0A;
  transition: all 0.15s ease;
}
.cart-drawer__item-qty button:hover {
  border-color: #C0440E;
  color: #C0440E;
}
.cart-drawer__item-qty span {
  font-size: 0.875rem;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}
.cart-drawer__item-remove {
  color: #6B4C30;
  font-size: 0.75rem;
  padding: 0.25rem;
  transition: color 0.15s ease;
}
.cart-drawer__item-remove:hover {
  color: #C62828;
}
.cart-drawer__footer {
  border-top: 1px solid #E8D5BF;
  padding: 1.25rem 1.5rem;
  flex-shrink: 0;
  background: #FDF6EC;
}
.cart-drawer__totals {
  margin-bottom: 1rem;
}
.cart-drawer__totals .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  font-size: 0.875rem;
  color: #6B4C30;
  margin-bottom: 0.5rem;
}
.cart-drawer__totals .row.total {
  font-size: 1rem;
  font-weight: 700;
  color: #3D1F0A;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #E8D5BF;
}
.cart-drawer__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.75rem;
}
.cart-drawer__actions .btn {
  flex: 1;
}

.auth-body {
  background: #FDF6EC;
  min-height: 100vh;
  margin: 0;
}

.auth-page {
  display: flex;
  min-height: 100vh;
}

.auth-panel--brand {
  display: none;
}
@media (min-width: 992px) {
  .auth-panel--brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 420px;
    flex-shrink: 0;
    background: linear-gradient(160deg, #3D1F0A 0%, #5C2D0E 60%, #C0440E 100%);
    color: #FFFFFF;
    padding: 2.5rem 2.5rem;
    position: sticky;
    top: 0;
    height: 100vh;
  }
}

.auth-brand__logo-link {
  display: block;
}

.auth-brand__logo {
  height: 80px;
  width: auto;
}

.auth-brand__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.auth-brand__title {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.auth-brand__subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.auth-brand__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.auth-brand__features li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}
.auth-brand__features li span {
  font-size: 1.25rem;
}

.auth-brand__back {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s ease;
}
.auth-brand__back:hover {
  color: #FFFFFF;
}

.auth-panel--form {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding: 2rem 1.5rem;
  min-height: 100vh;
}

.auth-card {
  width: 100%;
  max-width: 440px;
}
@media (max-width: 991px) {
  .auth-card::before {
    content: "";
    display: block;
    width: 64px;
    height: 64px;
    background: url("../assets/images/logo.png") center/contain no-repeat;
    margin: 0 auto 1.5rem;
  }
}

.auth-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0;
  border-bottom: 2px solid #E8D5BF;
  margin-bottom: 1.5rem;
}

.auth-tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6B4C30;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color 0.15s ease;
}
.auth-tab::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #C0440E;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.auth-tab.active {
  color: #C0440E;
}
.auth-tab.active::after {
  transform: scaleX(1);
}
.auth-tab:hover:not(.active) {
  color: #3D1F0A;
}

.auth-section {
  display: none;
}
.auth-section.active {
  display: block;
}

.auth-step-pane {
  display: none;
}
.auth-step-pane.active {
  display: block;
}

.auth-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.auth-step {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  border: 2px solid #E8D5BF;
  background: #FFFFFF;
  color: #6B4C30;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.auth-step.active {
  border-color: #C0440E;
  background: #C0440E;
  color: #FFFFFF;
}
.auth-step.done {
  border-color: #2E7D32;
  background: #2E7D32;
  color: #FFFFFF;
}

.auth-step-line {
  flex: 1;
  height: 2px;
  background: #E8D5BF;
  border-radius: 9999px;
  max-width: 60px;
  transition: background 0.25s ease;
}
.auth-step-line.done {
  background: #2E7D32;
}

.auth-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3D1F0A;
  margin-bottom: 0.5rem;
}

.auth-card__sub {
  font-size: 0.875rem;
  color: #6B4C30;
  margin-bottom: 1.5rem;
}
.auth-card__sub strong {
  color: #3D1F0A;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.auth-field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #3D1F0A;
}
.auth-field input {
  padding: 0.75rem 1rem;
  border: 1.5px solid #E8D5BF;
  border-radius: 8px;
  background: #FFFFFF;
  color: #3D1F0A;
  font-size: 0.875rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
}
.auth-field input::placeholder {
  color: #b09880;
}
.auth-field input:focus {
  border-color: #C0440E;
  box-shadow: 0 0 0 3px rgba(192, 68, 14, 0.12);
}
.auth-field input.error {
  border-color: #C62828;
}
.auth-field__pw-wrap {
  position: relative;
}
.auth-field__pw-wrap input {
  width: 100%;
  padding-right: 44px;
}
.auth-field__eye {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6B4C30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  transition: color 0.15s ease;
}
.auth-field__eye svg {
  width: 18px;
  height: 18px;
}
.auth-field__eye:hover {
  color: #C0440E;
}

.auth-optional {
  font-size: 0.75rem;
  color: #6B4C30;
  font-weight: 400;
}

.auth-form__footer-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
}

.auth-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  margin-top: 0.5rem;
  border-radius: 8px;
}

.btn-spinner {
  display: inline-block;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.auth-link {
  font-size: 0.875rem;
  color: #C0440E;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color 0.15s ease;
}
.auth-link:hover {
  color: rgb(144.4660194175, 51.1650485437, 10.5339805825);
  text-decoration: underline;
}

.auth-back-link {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  color: #6B4C30;
}
.auth-back-link:hover {
  color: #3D1F0A;
}

.auth-resend {
  font-size: 0.875rem;
  color: #6B4C30;
  text-align: center;
}

.auth-otp-inputs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.auth-otp-digit {
  width: 52px;
  height: 60px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3D1F0A;
  border: 2px solid #E8D5BF;
  border-radius: 8px;
  background: #FFFFFF;
  outline: none;
  transition: all 0.15s ease;
  caret-color: #C0440E;
}
.auth-otp-digit:focus {
  border-color: #C0440E;
  box-shadow: 0 0 0 3px rgba(192, 68, 14, 0.12);
}
.auth-otp-digit.filled {
  border-color: #C0440E;
  background: rgba(192, 68, 14, 0.05);
}
@media (max-width: 575px) {
  .auth-otp-digit {
    width: 42px;
    height: 52px;
    font-size: 1.25rem;
  }
}

.auth-alert {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}
.auth-alert.auth-alert--error {
  background: rgba(198, 40, 40, 0.1);
  color: #C62828;
  border: 1px solid rgba(198, 40, 40, 0.3);
}
.auth-alert.auth-alert--success {
  background: rgba(46, 125, 50, 0.1);
  color: #2E7D32;
  border: 1px solid rgba(46, 125, 50, 0.3);
}

.auth-step-indicator--3 {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* ===== SEARCH AUTOCOMPLETE DROPDOWN ===== */
.search-autocomplete-wrap {
  position: relative;
}
.search-autocomplete {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #E8D5BF;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(61, 31, 10, 0.13);
  z-index: 2000;
  overflow: hidden;
  max-height: 380px;
  overflow-y: auto;
}
.search-autocomplete__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.12s;
  color: #3D1F0A;
}
.search-autocomplete__item:hover,
.search-autocomplete__item.kbd-active {
  background: #FDF6EC;
}
.search-autocomplete__img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: #F0E8DC;
}
.search-autocomplete__info {
  flex: 1;
  min-width: 0;
}
.search-autocomplete__name {
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #3D1F0A;
}
.search-autocomplete__price {
  font-size: 0.75rem;
  color: #C0440E;
  font-weight: 600;
  margin-top: 2px;
}
.search-autocomplete__see-all {
  display: block;
  padding: 10px 14px;
  text-align: center;
  font-size: 0.8rem;
  color: #C0440E;
  font-weight: 600;
  border-top: 1px solid #E8D5BF;
  cursor: pointer;
  background: #FDF6EC;
}
.search-autocomplete__see-all:hover {
  background: #f0dece;
}
.search-autocomplete__loading,
.search-autocomplete__empty {
  padding: 16px 14px;
  text-align: center;
  font-size: 0.85rem;
  color: #6B4C30;
}

/* ===== FAVORITES PAGE ===== */
.favorites-page {
  min-height: 60vh;
  padding: 2.5rem 0 4rem;
}
.favorites-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.favorites-page__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #3D1F0A;
}
.favorites-page__count {
  font-size: 0.9rem;
  color: #6B4C30;
}
.favorites-empty {
  text-align: center;
  padding: 60px 20px;
  color: #6B4C30;
}
.favorites-empty__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.favorites-empty__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3D1F0A;
  margin-bottom: 0.5rem;
}
.favorites-empty__text {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* ===================================================
   LARGE SCREEN & TV RESPONSIVE SUPPORT
   1440px = Large laptop/desktop
   1920px = Full HD monitor
   2560px+ = 4K / Smart TV
   =================================================== */

@media (min-width: 1440px) {
  .container { max-width: 1380px; }
  .section__title { font-size: 2.2rem; }
}

@media (min-width: 1920px) {
  html { font-size: 17px; }
  .container { max-width: 1680px; }
  .section { padding: 5rem 0; }
  .section__title { font-size: 2.4rem; }
  .header__logo-img { height: 52px; }
}

@media (min-width: 2560px) {
  html { font-size: 18px; }
  .container { max-width: 2200px; }
  .section__title { font-size: 2.8rem; }
  .header__logo-img { height: 60px; }
}

/* ===================================================
   PRINT STYLES — for invoice / order print
   =================================================== */
@media print {
  .header, .footer, .offers-strip, .cart-btn,
  .hamburger, .search-bar, .lang-switcher,
  .auth-area, .breadcrumb { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  a { color: #000; text-decoration: none; }
  .container { max-width: 100%; padding: 0; }
}

/* ===================================================
   SMALL PHONE (320px) — iPhone SE, older Android
   =================================================== */
@media (max-width: 360px) {
  html { font-size: 14px; }
  .container { padding: 0 0.75rem; }
  .btn { padding: 0.6rem 1rem; font-size: 0.85rem; }
  .header__logo-img { height: 36px; }
  .section__title { font-size: 1.3rem; }
}
