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

html {
  scroll-behavior: smooth;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

body {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  color: #4a3f1a;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

ul {
  list-style: none;
}

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

.section {
  padding: 80px 0;
}

.section-title {
  font-family: 'Urbanist', 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: #4a3f1a;
  color: #ffffff;
}

.btn-primary:hover {
  background: #6d5e28;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(74, 144, 217, 0.2);
}

.btn-outline {
  border: 2px solid #4a3f1a;
  color: #4a3f1a;
}

.btn-outline:hover {
  background: #4a3f1a;
  color: #ffffff;
}

.btn-soft {
  background: #fef8ea;
  color: #4a3f1a;
}

.btn-soft:hover {
  background: #f5e0a8;
}

.site-header {
  position: relative;
  z-index: 1000;
  background: #fff;
}

.header-sticky-wrap {
  position: relative;
  z-index: 1002;
  background: #fff;
  border-bottom: 1px solid #faf6ed;
}

body.header-fixed .header-sticky-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 20px rgba(74, 63, 26, 0.08);
}

body.header-fixed .category-circles-bar {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1001;
  background: #fff;
  box-shadow: 0 2px 8px rgba(74, 63, 26, 0.04);
}

@media (min-width: 992px) {
  body.header-fixed .category-circles-bar {
    position: relative;
    top: auto;
    box-shadow: none;
  }
}

@media (max-width: 991.98px) {
  body.header-fixed .category-circles-bar {
    top: var(--header-top-h, 58px);
  }
}

.site-header.scrolled .header-sticky-wrap {
  box-shadow: 0 4px 24px rgba(74, 63, 26, 0.08);
}

body.header-fixed.site-header.scrolled .header-sticky-wrap {
  box-shadow: 0 4px 20px rgba(74, 63, 26, 0.08);
}

.site-header.scrolled {
  box-shadow: 0 2px 8px rgba(74, 63, 26, 0.06);
  padding: 4px 0;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.site-header .logo {
  font-family: 'Urbanist', 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: #4a3f1a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(180deg, #e0c060 0%, #fff9e8 100%);
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.site-header .main-nav {
  display: none;
}

@media (min-width: 992px) {
  .site-header .main-nav {
    display: flex;
    gap: 32px;
  }

  .site-header .main-nav a,
  .site-header .main-nav .nav-item {
    font-weight: 500;
    font-size: 0.95rem;
    color: #4a3f1a;
    position: relative;
  }

  .site-header .main-nav a:hover,
  .site-header .main-nav .nav-item:hover {
    color: #b8860b;
  }
}

.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header .header-actions .icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  position: relative;
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .header-actions .icon-btn:hover {
  background: #f1f5f9;
}

.site-header .header-actions .icon-btn svg {
  width: 22px;
  height: 22px;
}

.site-header .header-actions .icon-btn .badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #b8860b;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
}

.site-header .hamburger {
  display: block;
}

@media (min-width: 992px) {
  .site-header .hamburger {
    display: none;
  }
}

.category-circles {
  padding: 24px 0;
  border-bottom: 1px solid #f1f5f9;
}

.category-circles .swiper-slide {
  width: auto;
}

.category-circles .circle-item {
  text-align: center;
  width: 100px;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-circles .circle-item:hover {
  transform: translateY(-6px);
}

.category-circles .circle-item:hover .circle-img {
  box-shadow: 0 12px 40px rgba(74, 144, 217, 0.2);
  transform: scale(1.08);
}

.category-circles .circle-item .circle-img {
  width: 88px;
  height: 88px;
  margin: 0 auto 10px;
  border-radius: 9999px;
  background: linear-gradient(180deg, #e0c060 0%, #fff9e8 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(74, 63, 26, 0.06);
}

.category-circles .circle-item .circle-img img {
  width: 70%;
  object-fit: contain;
}

.category-circles .circle-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #4a3f1a;
}

.hero-slider {
  position: relative;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
}

.hero-slider .swiper-slide {
  min-height: 420px;
  background: linear-gradient(180deg, #e0c060 0%, #fff9e8 100%);
  position: relative;
}

@media (min-width: 768px) {
  .hero-slider .swiper-slide {
    min-height: 520px;
  }
}

.hero-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider .swiper-slide .hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 40px;
  background: linear-gradient(90deg, rgba(74, 63, 26, 0.7) 0%, transparent 60%);
  color: #ffffff;
}

.hero-slider .swiper-slide .hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-slider .swiper-slide .hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 500px;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 9999px;
  box-shadow: 0 8px 30px rgba(74, 63, 26, 0.08);
}

.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
  font-size: 18px;
  color: #4a3f1a;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f1f5f9;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(74, 63, 26, 0.12);
  border-color: transparent;
}

.product-card .card-image {
  position: relative;
  aspect-ratio: 1;
  background: #f8fafc;
  overflow: hidden;
}

.product-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-card .card-image .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #4a3f1a;
  color: #ffffff;
}

.product-card .card-image .badge.new {
  background: #b8860b;
}

.product-card .card-image .badge.sale {
  background: #ef4444;
}

.product-card .card-image .wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(74, 63, 26, 0.06);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .wishlist-btn {
  opacity: 1;
}

.product-card .card-body {
  padding: 16px;
}

.product-card .card-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 8px;
}

.product-card .rating .stars {
  color: #f59e0b;
}

.product-card .price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card .price .current {
  font-weight: 700;
  font-size: 1.1rem;
}

.product-card .price .compare {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 0.85rem;
}

.product-card .emi {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 4px;
}

.product-card .card-actions {
  display: flex;
  gap: 100px;
  margin-top: 12px;
}

.product-card .card-actions .btn {
  flex: 1;
  padding: 10px;
  font-size: 0.85rem;
  border-radius: 12px;
}

.shop-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .shop-categories-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
  }

  .shop-categories-grid .cat-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .shop-categories-grid .cat-card:nth-child(5) {
    grid-row: span 2;
  }

  .shop-categories-grid .cat-card:nth-child(7) {
    grid-column: span 2;
  }
}

.shop-categories-grid .cat-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 160px;
  background: #fef8ea;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-categories-grid .cat-card:hover {
  transform: scale(1.02);
}

.shop-categories-grid .cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-categories-grid .cat-card .cat-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}

.cart-drawer.open {
  pointer-events: auto;
}

.cart-drawer.open .drawer-overlay {
  opacity: 1;
}

.cart-drawer.open .drawer-panel {
  transform: translateX(0);
}

.cart-drawer .drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 63, 26, 0.5);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer .drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(74, 63, 26, 0.12);
}

.cart-drawer .drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-drawer .drawer-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  flex: 1;
}

.cart-drawer .drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-drawer .drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid #f1f5f9;
}

.cart-drawer .drawer-footer .summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.cart-drawer .drawer-footer .total-row {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 16px 0;
}

.mobile-bottom-nav {
  display: none;
}

.mobile-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 500;
  color: #64748b;
}

.mobile-bottom-nav a.active {
  color: #b8860b;
}

.mobile-bottom-nav a svg {
  width: 22px;
  height: 22px;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 20px 60px rgba(74, 63, 26, 0.12);
  padding: 32px;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  grid-template-columns: 220px 1fr;
  gap: 32px;
}

.mega-menu.show {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

.mega-menu .mega-sidebar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 500;
}

.mega-menu .mega-sidebar a.active,
.mega-menu .mega-sidebar a:hover {
  background: #fef8ea;
}

.mega-menu .mega-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mega-menu .mega-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 16px;
}

.mega-menu .mega-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
}

.mega-menu .mega-col a:hover {
  color: #b8860b;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.open {
  transform: translateY(0);
}

.search-overlay .search-input-wrap {
  display: flex;
  gap: 12px;
  max-width: 800px;
  margin: 80px auto 40px;
}

.search-overlay .search-input-wrap input {
  flex: 1;
  padding: 16px 24px;
  border: 2px solid #e2e8f0;
  border-radius: 9999px;
  font-size: 1.1rem;
  outline: none;
}

.search-overlay .search-input-wrap input:focus {
  border-color: #b8860b;
}

.site-footer {
  background: #4a3f1a;
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 24px;
}

.site-footer a:hover {
  color: #ffffff;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.site-footer h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 20px;
}

.site-footer ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.site-footer .footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}

.auth-modal.open {
  display: flex;
}

.auth-modal .modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 63, 26, 0.6);
}

.auth-modal .modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  width: 90%;
  max-width: 440px;
  box-shadow: 0 20px 60px rgba(74, 63, 26, 0.12);
}

.auth-modal .otp-inputs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 24px 0;
}

.auth-modal .otp-inputs input {
  width: 48px;
  height: 56px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
}

.skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 12px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 991px) {
  .d-none-mobile {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .d-none-desktop {
    display: none !important;
  }
}

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

.mb-4 {
  margin-bottom: 24px;
}

@media (max-width: 991.98px) {
  .pb-mobile-nav {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 992px) {
  .pb-mobile-nav {
    padding-bottom: 0 !important;
  }
}

/* === Premium header & homepage v2 === */
.site-header .logo-text {
  font-family: 'Urbanist', 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.site-header .main-nav .nav-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.site-header .main-nav .nav-item.active,
.site-header .main-nav .nav-item:hover {
  color: #5a4f24;
}

.site-header .btn-find-store {
  padding: 10px 20px;
  font-size: 0.88rem;
  gap: 6px;
}

/* category-circles-bar styles in premium-home.css */

.mega-menu {
  left: 0;
  right: 0;
  border-radius: 0 0 24px 24px;
  padding: 0;
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  border-bottom: 1px solid rgba(201, 162, 39, 0.16);
  box-shadow: 0 24px 64px rgba(74, 63, 26, 0.16);
  background: linear-gradient(180deg, #fffef9 0%, #fff9ee 100%);
}

@media (min-width: 992px) {
  .mega-menu {
    left: 50%;
    right: auto;
    width: min(980px, calc(100vw - 34px));
    transform: translateX(-50%) translateY(8px);
    border-radius: 0 0 18px 18px;
    max-height: 74vh;
    overflow: hidden;
  }

  .mega-menu.show {
    transform: translateX(-50%) translateY(0);
  }

  .mega-menu-inner {
    grid-template-columns: 200px minmax(0, 1fr);
    padding-top: 18px;
  }

  .mega-preview {
    display: none;
  }

  .mega-panels {
    max-height: calc(74vh - 96px);
    overflow: auto;
    padding: 0 22px 18px;
  }

  .mega-cols {
    gap: 18px;
  }

  .mega-col a {
    padding: 6px 8px;
    font-size: 0.85rem;
  }

  .mega-menu-footer {
    padding: 11px 22px;
    gap: 10px;
  }
}

@media (min-width: 1200px) {
  .mega-menu {
    width: min(1100px, calc(100vw - 36px));
  }

  .mega-menu-inner {
    grid-template-columns: 200px minmax(0, 1fr) 240px;
  }

  .mega-preview {
    display: block;
    border-left: 1px solid rgba(201, 162, 39, 0.2);
    background: #f9f3e4;
    overflow: hidden;
  }

  .mega-preview img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    object-position: right center;
    display: block;
  }
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  padding: 28px 0 0;
}

.mega-sidebar {
  border-right: 1px solid rgba(201, 162, 39, 0.22);
  padding-right: 8px;
  background: linear-gradient(180deg, rgba(255, 251, 240, 0.8) 0%, rgba(253, 245, 227, 0.55) 100%);
}

.mega-side-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.92rem;
  color: #4a3f1a;
  margin-bottom: 4px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mega-side-link.active,
.mega-side-link:hover {
  background: linear-gradient(135deg, #fff8e7 0%, #f8e5b5 100%);
  color: #5a4f24;
  transform: translateX(3px);
}

.mega-panels {
  padding: 0 30px 26px;
}

.mega-panel {
  display: none;
}

.mega-panel.active {
  display: block;
}

.mega-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mega-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #8f7f53;
  margin-bottom: 16px;
  font-weight: 600;
}

.mega-col a {
  display: block;
  padding: 8px 10px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 9px;
  transition: background 0.2s ease, color 0.2s ease;
}

.mega-col a:hover {
  color: #5a4f24;
  background: rgba(255, 244, 217, 0.7);
}

.mega-menu-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.9) 0%, rgba(249, 236, 201, 0.75) 100%);
  border-radius: 0 0 24px 24px;
}

.mega-footer-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: #64748b;
}

/* Hero image only */
.hero-image-only .swiper-slide {
  min-height: 380px;
}

@media (min-width: 768px) {
  .hero-image-only .swiper-slide {
    min-height: 480px;
  }
}

@media (min-width: 1200px) {
  .hero-image-only .swiper-slide {
    min-height: 560px;
  }
}

.hero-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hero-image-only .swiper-slide img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.hero-image-only .hero-content {
  display: none !important;
}

/* Shop by categories – horizontal scroll */
.shop-by-categories-section {
  padding-top: 56px;
  padding-bottom: 56px;
  overflow: hidden;
}

.shop-categories-scroll-wrap {
  position: relative;
  padding: 0 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.shop-cat-swiper .swiper-slide {
  width: auto;
}

.shop-cat-card {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fef8ea;
  box-shadow: 0 4px 20px rgba(74, 63, 26, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.shop-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(74, 63, 26, 0.12);
}

.shop-cat-card.square {
  width: 220px;
  height: 260px;
}

.shop-cat-card.wide {
  width: 320px;
  height: 240px;
}

.shop-cat-card.tall {
  width: 240px;
  height: 320px;
}

.shop-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-cat-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 8px 18px;
  background: rgba(232, 242, 252, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.88rem;
  color: #4a3f1a;
}

.shop-cat-prev,
.shop-cat-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  font-size: 1.5rem;
  z-index: 2;
  color: #4a3f1a;
  display: grid;
  place-items: center;
}

.shop-cat-prev { left: 8px; }
.shop-cat-next { right: 8px; }

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-title-left {
  text-align: left;
  margin-bottom: 0;
}

.section-view-all {
  font-weight: 600;
  color: #b8860b;
  font-size: 0.95rem;
}

.product-section.alt-bg {
  background: #f8fafc;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(74, 63, 26, 0.08);
  max-width: 400px;
}

.testimonial-card .stars {
  color: #f59e0b;
  margin-bottom: 12px;
}

.testimonial-card .loc {
  color: #64748b;
  font-weight: 400;
}

.video-card-slide {
  width: 180px;
}

.video-card {
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  background: #fef8ea;
  position: relative;
}

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

.video-card .play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 1.2rem;
}

.faq-wrap {
  max-width: 800px;
}

.newsletter-section {
  background: linear-gradient(135deg, #4a3f1a, #6d5e28);
  color: #fff;
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-inner h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border: none;
  border-radius: 9999px;
}

.seo-block {
  background: #f8fafc;
  color: #64748b;
  line-height: 1.8;
}

.seo-block h2 {
  color: #4a3f1a;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
