/* Reset & Base Styles */
html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #111111;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
  overflow-x: hidden;
}

section[id],
.nav-target-anchor {
  scroll-margin-top: 85px;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* Containers */
.top-bar-content,
.nav-container,
.hero-container,
.features-grid,
.section-container,
.bottom-trust-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 0. Nuwun Galeri Demo CTA Bar */
.demo-top-bar {
  background: linear-gradient(90deg, #0d0d0d 0%, #1e130f 50%, #0d0d0d 100%);
  border-bottom: 1px solid rgba(243, 78, 29, 0.35);
  color: #FFFFFF;
  padding: 8px 16px;
  position: relative;
  z-index: 101;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.demo-top-bar-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.demo-top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.demo-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  background: rgba(243, 78, 29, 0.2);
  border: 1px solid rgba(243, 78, 29, 0.45);
  border-radius: 9999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: #ff7a50;
  text-transform: uppercase;
  flex-shrink: 0;
}

.demo-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: demoDotPulse 2s infinite ease-in-out;
}

@keyframes demoDotPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.demo-top-bar-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #F4F5F7;
  letter-spacing: -0.1px;
  margin: 0;
  white-space: nowrap;
}

.demo-sparkle-emoji {
  font-size: 14px;
  display: inline-block;
  animation: sparkleTwinkle 2.5s infinite ease-in-out;
}

@keyframes sparkleTwinkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.18) rotate(10deg); }
}

.demo-text-desktop {
  display: inline;
}

.demo-text-mobile {
  display: none;
}

.demo-top-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: linear-gradient(135deg, #ff6b3d 0%, #f34e1d 100%);
  color: #FFFFFF !important;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(243, 78, 29, 0.35);
  transition: all 0.2s ease;
  cursor: pointer;
}

.demo-top-bar-cta:hover {
  background: linear-gradient(135deg, #f34e1d 0%, #df3d0d 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(243, 78, 29, 0.5);
  color: #FFFFFF !important;
}

.demo-arrow-icon {
  transition: transform 0.2s ease;
}

.demo-top-bar-cta:hover .demo-arrow-icon {
  transform: translateX(3px);
}

.demo-cta-desktop {
  display: inline;
}

.demo-cta-mobile {
  display: none;
}

@media (max-width: 768px) {
  .demo-top-bar {
    padding: 6px 12px;
  }
  .demo-top-bar-text {
    font-size: 11.5px;
  }
  .demo-text-desktop {
    display: none;
  }
  .demo-text-mobile {
    display: inline;
  }
  .demo-top-bar-cta {
    padding: 4px 10px;
    font-size: 11px;
  }
  .demo-cta-desktop {
    display: none;
  }
  .demo-cta-mobile {
    display: inline;
  }
}

/* 1. Top Announcement Bar */
.top-bar {
  background-color: #0b0b0b;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 500;
  padding: 9px 0;
}

.top-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e5e5e5;
  letter-spacing: 0.1px;
}

.top-item svg {
  color: #f97316;
}

/* 2. Main Navigation */
.main-nav {
  background: #ffffff;
  border-bottom: 1px solid #f0f0f2;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #0d0d0d;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 26px;
  align-items: center;
}

.nav-menu li a {
  font-size: 13.5px;
  font-weight: 600;
  color: #2b2b2b;
  padding: 6px 0;
  position: relative;
  transition: color 0.15s ease;
}

.nav-menu li a:hover {
  color: #000000;
}

.nav-menu li a.active {
  color: #000000;
}

.nav-menu li a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f34e1d;
  border-radius: 2px;
}

.has-dropdown {
  position: relative;
}

.has-dropdown a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-chevron {
  transition: transform 0.2s ease;
}

.has-dropdown:hover .dropdown-chevron,
.has-dropdown.active-open .dropdown-chevron {
  transform: rotate(180deg);
}

/* Category Dropdown Menu */
.category-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 460px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(0, 0, 0, 0.04);
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 120;
}

.has-dropdown:hover .category-dropdown-menu,
.has-dropdown.active-open .category-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.category-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 8px;
  border-bottom: 1px solid #f2f2f4;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #71717a;
}

.dropdown-view-all {
  font-size: 12px;
  font-weight: 600;
  color: #f34e1d !important;
  text-transform: none;
  letter-spacing: 0;
}

.dropdown-view-all:hover {
  text-decoration: underline;
}

.category-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.cat-drop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background-color 0.15s ease, transform 0.15s ease;
  color: #1a1a1a !important;
}

.cat-drop-item:hover {
  background-color: #f8f8fa;
  transform: translateX(2px);
}

.cat-drop-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.cat-drop-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cat-drop-meta strong {
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  line-height: 1.25;
}

.cat-drop-meta small {
  font-size: 11px;
  color: #71717a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  position: relative;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.icon-btn:hover {
  background-color: #f4f4f5;
  transform: translateY(-1px);
}

.cart-btn,
.wishlist-icon-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #f34e1d;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(243, 78, 29, 0.4);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-badge.bump {
  transform: scale(1.35);
}

.wishlist-badge {
  background-color: #e11d48;
  box-shadow: 0 1px 3px rgba(225, 29, 72, 0.4);
}

/* 3. Hero Section - Exact Figma Node 1:880 */
.hero-section {
  background-color: #f6f6f7;
  padding: 30px 0 24px 0;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-left {
  flex: 460 0 0;
  max-width: 480px;
  padding-right: 20px;
}

.trending-badge {
  display: inline-block;
  color: #f34e1d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 57.2px;
  letter-spacing: -1.5px;
  color: #0b0b0b;
  margin-bottom: 0;
}

.hero-subtitle {
  font-size: 14.5px;
  color: #555555;
  line-height: 21.75px;
  margin-top: 18px;
  margin-bottom: 30px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #f34e1d;
  color: #ffffff;
  gap: 8px;
}

.btn-primary:hover {
  background-color: #df3d0d;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #ffffff;
  color: #111111;
  border: 1px solid #e2e4e8;
  box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
  background-color: #f9f9fb;
  border-color: #d1d5db;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-circle {
  width: 26px;
  height: 26px;
  border-radius: 13px;
  border: 2px solid #ffffff;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  position: relative;
}

.avatar-circle:not(:first-child) {
  margin-left: -8px;
}

.proof-text {
  font-size: 12px;
  color: #555555;
  font-weight: 500;
  line-height: 16.8px;
  padding-left: 2px;
}

.hero-right {
  flex: 622 0 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  padding: 10px 15px;
}

.hero-image-wrapper {
  position: relative;
  width: 600px;
  max-width: 600px;
  height: 335px;
  overflow: visible;
  flex-shrink: 0;
}

.hero-main-img {
  position: absolute;
  top: 0;
  left: -94px;
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  filter: drop-shadow(0px 15px 35px rgba(0, 0, 0, 0.08));
}

/* Floating Product Cards from Figma */
.hero-floating-card {
  position: absolute;
  width: 110px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-floating-card:hover {
  transform: scale(1.08) translateY(-4px) !important;
  box-shadow: 0px 16px 36px rgba(0, 0, 0, 0.15);
}

.float-card-img {
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 6px;
}

.float-card-text {
  text-align: center;
  width: 100%;
}

.float-name {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #111111;
  line-height: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 95px;
  margin: 0 auto;
}

.float-price {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  color: #0b0b0b;
  line-height: 14.7px;
  margin-top: 1px;
}

/* Exact Figma Positions */
.card-shoe {
  left: 12px;
  top: 12px;
  animation: floatShoe 4s ease-in-out infinite;
}
.card-shoe .float-card-img {
  height: 60px;
}
.card-shoe .float-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card-watch {
  left: 472px;
  top: 17px;
  animation: floatWatch 4.6s ease-in-out infinite 0.4s;
}
.card-watch .float-card-img {
  height: 60px;
}
.card-watch .float-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card-headphone {
  left: -6px;
  top: 172px;
  animation: floatHeadphone 4.2s ease-in-out infinite 0.8s;
}
.card-headphone .float-card-img {
  height: 72px;
}
.card-headphone .float-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card-bottle {
  left: 478px;
  top: 211px;
  animation: floatBottle 4.8s ease-in-out infinite 1.2s;
}
.card-bottle .float-card-img {
  height: 82px;
}
.card-bottle .float-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes floatShoe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatWatch {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatHeadphone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes floatBottle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* 4. Value Propositions Bar */
.features-bar-section {
  background-color: #ffffff;
  border-bottom: 1px solid #f0f0f2;
  padding: 28px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: #f8f9fa;
  border: 1px solid #ededed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 11.5px;
  color: #6b7280;
}

/* Sections Common */
.section {
  padding: 42px 0;
}

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

.section-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #0b0b0b;
}

.view-all-link {
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s ease;
}

.view-all-link:hover {
  color: #f34e1d;
}

/* 5. Shop by Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.category-card {
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 10px 10px 14px 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.cat-image-wrapper {
  width: 100%;
  height: 125px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f5f5f7;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.cat-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.category-card:hover .cat-image-wrapper img {
  transform: scale(1.06);
}

.cat-info h3 {
  font-size: 13.5px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
}

.cat-action {
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cat-action span {
  font-size: 13px;
  transition: transform 0.15s ease;
}

.category-card:hover .cat-action span {
  transform: translateX(3px);
}

/* 6. New Arrivals Carousel */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 17px;
  background: #ffffff;
  border: 1px solid #e2e4e8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  z-index: 10;
  transition: all 0.15s ease;
}

.carousel-nav-btn:hover {
  background-color: #0b0b0b;
  color: #ffffff;
  border-color: #0b0b0b;
}

.prev-btn {
  left: -17px;
}

.next-btn {
  right: -17px;
}

.products-carousel {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.products-carousel::-webkit-scrollbar {
  display: none;
}

.product-card {
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.product-thumb {
  position: relative;
  width: 100%;
  height: 130px;
  background-color: #f7f7f8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 10px;
  overflow: hidden;
}

.product-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.06);
}

.badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  padding: 2.5px 7px;
  border-radius: 5px;
  z-index: 2;
}

.badge-black {
  background-color: #000000;
  color: #ffffff;
}

.badge-orange {
  background-color: #f34e1d;
  color: #ffffff;
}

.wishlist-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  border-radius: 50%;
  z-index: 2;
  transition: transform 0.15s ease, color 0.15s ease;
}

.wishlist-btn:hover {
  transform: scale(1.15);
  color: #f34e1d;
}

.wishlist-btn.active svg {
  fill: #f34e1d;
  stroke: #f34e1d;
}

.product-details {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-size: 12.5px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.current-price {
  font-size: 13.5px;
  font-weight: 800;
  color: #0b0b0b;
}

.original-price {
  font-size: 11.5px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 500;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.stars {
  color: #f59e0b;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.reviews-count {
  font-size: 10.5px;
  color: #888888;
  font-weight: 500;
}

.add-cart-circle {
  margin-left: auto;
  width: 28px;
  height: 28px;
  background-color: #0b0b0b;
  color: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.add-cart-circle:hover {
  transform: scale(1.1);
  background-color: #f34e1d;
}

/* 7. Best Sellers Section */
.best-sellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.best-seller-card {
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.best-seller-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.best-thumb-wrap {
  position: relative;
  width: 135px;
  height: 135px;
  background-color: #f7f7f8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
  overflow: hidden;
}

.best-thumb-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.best-seller-card:hover .best-thumb-wrap img {
  transform: scale(1.06);
}

.bestseller-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: #f59e0b;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 700;
  padding: 2.5px 8px;
  border-radius: 5px;
  z-index: 2;
}

.best-info-wrap {
  flex: 179 0 0;
}

.best-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #0b0b0b;
  margin-bottom: 4px;
  line-height: 20.3px;
}

.best-price {
  font-size: 14.5px;
  font-weight: 800;
  color: #0b0b0b;
  margin-bottom: 4px;
  line-height: 20.3px;
}

.best-info-wrap .rating-row {
  margin-bottom: 8px;
}

.best-desc {
  font-size: 11px;
  color: #6b7280;
  line-height: 15.4px;
  margin-bottom: 12px;
}

.best-action-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-quick-add {
  background-color: #0b0b0b;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}

.btn-quick-add:hover {
  background-color: #f34e1d;
}

.btn-round-action {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  transition: all 0.15s ease;
}

.btn-round-action:hover {
  border-color: #0b0b0b;
  color: #0b0b0b;
}

/* 8. Promotional Banners Section - Exact Figma Specs */
.promo-banners-section {
  padding-bottom: 40px;
}

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

.promo-banner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
}

.banner-flash {
  background: linear-gradient(139deg, rgb(255, 76, 30) 8.5%, rgb(255, 107, 61) 58.3%, rgb(255, 160, 122) 91.5%);
}

.banner-summer {
  background: linear-gradient(139deg, rgb(17, 17, 17) 8.5%, rgb(31, 41, 55) 58.3%, rgb(11, 15, 25) 91.5%);
}

.banner-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.banner-media-card {
  width: 140px;
  height: 140px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
  z-index: 2;
}

.banner-media-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.banner-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 2px;
}

.banner-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 25.3px;
  margin-bottom: 10px;
}

.banner-sub {
  font-size: 11.5px;
  opacity: 0.85;
  line-height: 15.5px;
  margin-bottom: 12px;
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.timer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-num {
  font-size: 15px;
  font-weight: 800;
  line-height: 15px;
}

.timer-lbl {
  font-size: 8px;
  text-transform: capitalize;
  opacity: 0.8;
  margin-top: 1px;
}

.timer-colon {
  font-size: 14px;
  font-weight: 700;
  line-height: 19.6px;
  margin-bottom: 8px;
}

.btn-banner-white {
  display: inline-block;
  background-color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 7.5px 18px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease;
}

.btn-banner-white:hover {
  transform: translateY(-1px);
}

.text-orange {
  color: #f34e1d;
}

.text-dark {
  color: #0b0b0b;
}

/* 9. Bottom Trust Bar */
.bottom-trust-section {
  border-top: 1px solid #f0f0f2;
  padding: 30px 0;
  background-color: #ffffff;
}

.bottom-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: #f8f9fa;
  border: 1px solid #ededed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 2px;
}

.trust-text p {
  font-size: 11.5px;
  color: #6b7280;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #0b0b0b;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 1000;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .categories-grid,
  .products-carousel {
    grid-template-columns: repeat(3, 1fr);
  }
  .best-sellers-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 40px;
    line-height: 44px;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 6px;
  }
  .nav-menu {
    display: none;
  }
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-cta-group,
  .social-proof {
    justify-content: center;
  }
  .hero-right {
    margin-top: 30px;
    justify-content: center;
  }
  .features-grid,
  .bottom-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .banners-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================
   4. Blog & Journal Section
======================================================== */
.blog-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #f0f0f2;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.blog-thumb-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: #f4f4f5;
}

.blog-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-thumb-wrap img {
  transform: scale(1.05);
}

.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(13, 13, 13, 0.8);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
}

.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  font-size: 12px;
  color: #71717a;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  margin-bottom: 8px;
}

.blog-excerpt {
  font-size: 13px;
  line-height: 1.5;
  color: #52525b;
  margin-bottom: 16px;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #f34e1d;
  transition: gap 0.2s ease;
}

.blog-read-more:hover {
  gap: 9px;
}

/* ========================================================
   5. Main Footer
======================================================== */
.main-footer {
  background-color: #0d0d0d;
  color: #e4e4e7;
  padding-top: 50px;
  margin-top: 40px;
}

.footer-top-newsletter {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.footer-newsletter-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.newsletter-left {
  max-width: 480px;
}

.newsletter-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #f34e1d;
  background: rgba(243, 78, 29, 0.15);
  padding: 3px 10px;
  border-radius: 9999px;
  margin-bottom: 8px;
}

.newsletter-left h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.newsletter-left p {
  font-size: 13.5px;
  color: #a1a1aa;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 440px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 13.5px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.newsletter-form input:focus {
  border-color: #f34e1d;
}

.newsletter-form button {
  padding: 12px 24px;
  background-color: #f34e1d;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 9999px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.newsletter-form button:hover {
  background-color: #df3d0d;
  transform: translateY(-1px);
}

.footer-main-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  padding-bottom: 50px;
}

.footer-brand-logo {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #a1a1aa;
  margin-bottom: 18px;
  max-width: 320px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.social-icon:hover {
  background-color: #f34e1d;
  transform: translateY(-2px);
}

.footer-links-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col ul li a {
  font-size: 13px;
  color: #a1a1aa;
  transition: color 0.15s ease, transform 0.15s ease;
  display: inline-block;
}

.footer-links-col ul li a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.contact-line {
  font-size: 13px;
  color: #a1a1aa;
  margin-bottom: 8px;
  line-height: 1.5;
}

.contact-line strong {
  color: #ffffff;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 12.5px;
  color: #71717a;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-payment-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pay-chip {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* ========================================================
   6. Drawers & Backdrop (Cart & Wishlist)
======================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.drawer-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 100vw;
  background-color: #ffffff;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1010;
}

.side-drawer.show {
  transform: translateX(0);
}

.drawer-header {
  padding: 18px 24px;
  border-bottom: 1px solid #f0f0f2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: #f34e1d15;
  color: #f34e1d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-heart-wrap {
  background-color: #e11d4815;
  color: #e11d48;
}

.drawer-title {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin: 0;
  line-height: 1.2;
}

.drawer-subtitle {
  font-size: 12px;
  color: #71717a;
}

.drawer-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #71717a;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.drawer-close-btn:hover {
  background-color: #f4f4f5;
  color: #111111;
}

/* Shipping Progress Bar */
.shipping-meter {
  background-color: #fafafa;
  border-bottom: 1px solid #f0f0f2;
  padding: 12px 24px;
}

.shipping-meter-text {
  font-size: 12.5px;
  color: #27272a;
  margin-bottom: 6px;
}

.shipping-meter-bar {
  height: 6px;
  border-radius: 9999px;
  background-color: #e4e4e7;
  overflow: hidden;
}

.shipping-meter-fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, #f97316 0%, #22c55e 100%);
  transition: width 0.4s ease;
}

/* Drawer Body & Items */
.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  color: #71717a;
}

.empty-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #f4f4f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
  margin-bottom: 16px;
}

.drawer-empty-state h4 {
  font-size: 16px;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 6px;
}

.drawer-empty-state p {
  font-size: 13px;
  margin-bottom: 20px;
  max-width: 240px;
}

.btn-empty-shop {
  padding: 10px 20px;
  border-radius: 9999px;
  background-color: #111111;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.btn-empty-shop:hover {
  background-color: #f34e1d;
}

/* Item Card in Drawer */
.drawer-item-card {
  display: flex;
  gap: 14px;
  padding: 12px;
  border: 1px solid #f2f2f4;
  border-radius: 14px;
  transition: border-color 0.15s ease;
}

.drawer-item-card:hover {
  border-color: #e4e4e7;
}

.drawer-item-img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  background-color: #f4f4f5;
  flex-shrink: 0;
}

.drawer-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.drawer-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.drawer-item-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #111111;
  line-height: 1.3;
  margin: 0;
}

.drawer-item-remove {
  color: #a1a1aa;
  padding: 2px;
  transition: color 0.15s ease;
}

.drawer-item-remove:hover {
  color: #ef4444;
}

.drawer-item-price {
  font-size: 13px;
  font-weight: 700;
  color: #f34e1d;
  margin-top: 2px;
}

.drawer-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e4e4e7;
  border-radius: 9999px;
  overflow: hidden;
}

.qty-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #27272a;
  background-color: #fafafa;
  transition: background-color 0.15s ease;
}

.qty-btn:hover {
  background-color: #f4f4f5;
}

.qty-value {
  min-width: 26px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  color: #111111;
}

.btn-move-to-cart {
  padding: 6px 12px;
  background-color: #f34e1d;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 600;
  border-radius: 9999px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn-move-to-cart:hover {
  background-color: #df3d0d;
  transform: translateY(-1px);
}

/* Drawer Footer */
.drawer-footer {
  padding: 18px 24px;
  border-top: 1px solid #f0f0f2;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promo-input-row {
  display: flex;
  gap: 8px;
}

.promo-input-row input {
  flex: 1;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #e4e4e7;
  font-size: 12.5px;
  font-family: inherit;
  outline: none;
}

.promo-input-row input:focus {
  border-color: #f34e1d;
}

.promo-input-row button {
  padding: 8px 14px;
  background-color: #27272a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.15s ease;
}

.promo-input-row button:hover {
  background-color: #111111;
}

.promo-feedback {
  font-size: 11.5px;
  margin-top: 4px;
}

.promo-feedback.success {
  color: #16a34a;
}

.promo-feedback.error {
  color: #dc2626;
}

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 6px;
  border-top: 1px dashed #e4e4e7;
}

.price-row-calc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #52525b;
}

.price-row-calc.total-row {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  padding-top: 6px;
  border-top: 1px solid #f0f0f2;
}

.total-amount {
  font-size: 18px;
  color: #f34e1d;
}

.text-orange {
  color: #f34e1d;
}

.btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #ff6b3d 0%, #f34e1d 100%);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(243, 78, 29, 0.4);
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-checkout:hover {
  background: linear-gradient(135deg, #f34e1d 0%, #df3d0d 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(243, 78, 29, 0.55);
}

.btn-continue-shopping {
  font-size: 12.5px;
  color: #71717a;
  text-align: center;
  transition: color 0.15s ease;
}

.btn-continue-shopping:hover {
  color: #111111;
}

/* ========================================================
   7. Live Search Modal
======================================================== */
.search-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1020;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 16px 20px;
}

.search-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.search-modal-container {
  width: 100%;
  max-width: 600px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: translateY(-15px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.search-modal.show .search-modal-container {
  transform: translateY(0) scale(1);
}

.search-input-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f2;
}

.search-header-icon {
  color: #71717a;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  color: #111111;
  background: transparent;
}

.search-input::placeholder {
  color: #a1a1aa;
}

.search-clear-btn {
  font-size: 20px;
  color: #a1a1aa;
  padding: 0 6px;
  cursor: pointer;
  transition: color 0.15s ease;
}

.search-clear-btn:hover {
  color: #111111;
}

.search-close-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background-color: #f4f4f5;
  color: #52525b;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}

.search-close-btn:hover {
  background-color: #e4e4e7;
  color: #111111;
}

.search-quick-tags {
  padding: 12px 20px;
  background-color: #fafafa;
  border-bottom: 1px solid #f0f0f2;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.quick-tags-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #71717a;
}

.search-tag-chip {
  font-size: 12px;
  font-weight: 500;
  color: #27272a;
  background-color: #ffffff;
  border: 1px solid #e4e4e7;
  padding: 3px 10px;
  border-radius: 9999px;
  transition: all 0.15s ease;
}

.search-tag-chip:hover {
  border-color: #f34e1d;
  color: #f34e1d;
}

.search-results-wrapper {
  max-height: 380px;
  overflow-y: auto;
  padding: 12px 16px;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.search-result-item:hover {
  background-color: #f8f8fa;
  transform: translateX(3px);
}

.search-res-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.search-res-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  background-color: #f4f4f5;
  flex-shrink: 0;
}

.search-res-meta h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: #111111;
  margin: 0;
  line-height: 1.25;
}

.search-res-meta span {
  font-size: 11.5px;
  color: #71717a;
}

.search-res-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-res-price {
  font-size: 13.5px;
  font-weight: 700;
  color: #f34e1d;
}

.search-res-btn {
  padding: 4px 10px;
  border-radius: 9999px;
  background-color: #f4f4f5;
  color: #111111;
  font-size: 11px;
  font-weight: 600;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.search-result-item:hover .search-res-btn {
  background-color: #f34e1d;
  color: #ffffff;
}

.search-no-results {
  text-align: center;
  padding: 36px 20px;
  color: #71717a;
  font-size: 13.5px;
}

/* Product Card Highlight Glow when jumped to from search */
@keyframes cardPulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(243, 78, 29, 0.7);
    transform: scale(1.02);
  }
  50% {
    box-shadow: 0 0 24px 6px rgba(243, 78, 29, 0.45);
    transform: scale(1.03);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(243, 78, 29, 0);
    transform: scale(1);
  }
}

.highlight-pulse {
  animation: cardPulseGlow 1.8s ease-out;
  border-color: #f34e1d !important;
}

/* Tactile button press feedback & drawer curve */
.side-drawer {
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}

.btn:active,
.btn-checkout:active,
.btn-quick-add:active,
.add-cart-circle:active,
.btn-round-action:active,
.btn-move-to-cart:active,
.icon-btn:active {
  transform: scale(0.97);
}

/* In-Drawer Checkout Form & Order Success */
.drawer-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-form-group label {
  font-size: 12px;
  font-weight: 600;
  color: #27272a;
}

.drawer-form-group input,
.drawer-form-group textarea,
.drawer-form-group select {
  padding: 9px 12px;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  font-size: 13px;
  font-family: inherit;
  color: #111111;
  outline: none;
  transition: border-color 160ms ease-out;
}

.drawer-form-group input:focus,
.drawer-form-group textarea:focus,
.drawer-form-group select:focus {
  border-color: #f34e1d;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: #18181b;
  cursor: pointer;
  transition: border-color 150ms ease-out, background-color 150ms ease-out;
}

.payment-option input {
  accent-color: #f34e1d;
}

.payment-option.selected {
  border-color: #f34e1d;
  background-color: #fff5f2;
}

/* Responsive updates for Blog and Footer */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .footer-main-content {
    grid-template-columns: 1fr;
  }
  .side-drawer {
    width: 100vw;
  }
  .category-dropdown-menu {
    width: 320px;
    grid-template-columns: 1fr;
  }
  .category-dropdown-grid {
    grid-template-columns: 1fr;
  }
}

