* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Ubuntu,
    Cantarell,
    Noto Sans,
    sans-serif;
  color: #111;
}
:root {
  --primary: #121826;
  --accent: #1f2937;
  --brand: #111827;
  --link: #0f172a;
  --muted: #6b7280;
  --bg: #ffffff;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
}
.logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.search-area {
  flex: 1;
  max-width: 640px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.search-area input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}
.search-area select {
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
  transition: all 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 32px;
  min-width: 180px;
}

.search-area select:hover {
  border-color: #111827;
  background-color: #f9fafb;
}

.search-area select:focus {
  outline: none;
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
}
#search-btn {
  padding: 10px 16px;
  border: none;
  background: #111827;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}
.icons {
  display: flex;
  gap: 10px;
}
.icon-btn {
  width: 38px;
  height: 38px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-button {
  position: relative;
}
.wish-button {
  position: relative;
}
.compare-button {
  position: relative;
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-badge[hidden] {
  display: none;
}
.wish-button .cart-badge {
  top: -2px;
  right: auto;
  left: 20px;
}
.compare-button .cart-badge {
  top: -4px;
  right: auto !important;
  left: -4px !important;
}

/* Navigation */
.main-nav {
  border-top: 1px solid #f3f4f6;
  padding: 10px 0;
  background: #fff;
}
.main-nav .container,
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.categories-wrapper {
  position: relative;
}
.categories-toggle {
  background: #f3f4f6;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.categories-panel {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 240px;
  display: none;
  z-index: 100;
  margin-top: 10px;
  border-radius: 8px;
}
.categories-panel.show {
  display: block;
}
.categories-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.categories-panel li {
  padding: 12px 16px;
  border-bottom: 1px solid #f9fafb;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.categories-panel li:hover {
  background: #f9fafb;
  color: var(--brand);
}
.categories-panel li > ul {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  min-width: 180px;
  padding: 8px 0;
  z-index: 200;
  border-radius: 8px;
}
.categories-panel li:hover > ul {
  display: block;
}
.categories-panel li > ul li {
  padding: 8px 12px;
  border-bottom: 1px solid #f9fafb;
  white-space: nowrap;
}
.categories-panel li > ul li:hover {
  background: #f9fafb;
  color: var(--brand);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--brand);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  display: none;
  list-style: none;
  padding: 8px 0;
  z-index: 100;
  border-radius: 8px;
}
.dropdown-container {
  position: relative;
}
.dropdown-container:hover .dropdown {
  display: block;
}
.dropdown li a {
  display: block;
  padding: 8px 16px;
}
.dropdown li a:hover {
  background: #f9fafb;
}

/* Mobile header and nav adjustments */
@media (max-width: 768px) {
  .search-area {
    display: none;
  }
  .nav-links {
    gap: 16px;
    font-size: 13px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 40px;
}
.carousel {
  position: relative;
  height: 500px;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  padding-left: 10%;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.2); */
}
.caption {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
}
.caption.dark-text {
  color: #111;
}
.caption h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.caption h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.1;
}
.caption p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}
.caption .btn {
  display: inline-block;
  padding: 12px 30px;
  background: #111;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  transition: transform 0.2s;
}
.caption .btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .caption h1 {
    font-size: 32px;
  }
  .caption h2 {
    font-size: 16px;
  }
  .caption p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .caption h1 {
    font-size: 24px;
  }
  .caption h2 {
    font-size: 14px;
  }
  .caption p {
    font-size: 14px;
  }
}
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.2s;
}
.carousel-control:hover {
  background: #fff;
}
.carousel-control.prev {
  left: 20px;
}
.carousel-control.next {
  right: 20px;
}

.indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border: none;
}
.indicator.active {
  background: #fff;
  transform: scale(1.2);
}

/* Our Categories */
.our-categories {
  padding: 60px 0;
  background: #f9fafb;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}
.view-all {
  font-weight: 600;
  color: var(--brand);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
.category-item {
  text-align: center;
  cursor: pointer;
  opacity: 0; /* for animation */
  transform: translateX(-20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.category-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.img-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    border-color 0.3s;
}
.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .img-wrapper {
    width: 90px;
    height: 90px;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .img-wrapper {
    width: 80px;
    height: 80px;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.category-item:hover .img-wrapper {
  transform: scale(1.05);
  border-color: var(--brand);
}
.category-item p {
  font-weight: 600;
  margin: 0;
  font-size: 14px;
}

/* Trusted Brands */
.trusted-brands {
  padding: 60px 40px;
  border-top: 1px solid #f3f4f6;
}
.brands-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
}
.brands-text {
  flex: 0 0 350px;
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.brands-text.visible {
  opacity: 1;
  transform: translateX(0);
}
.brands-text h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}
.brands-text strong {
  color: var(--brand);
}
.brands-grid {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}
.brand-item {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease-in;
}
.brand-item.visible {
  opacity: 1;
}
.brand-item img {
  max-width: 80px;
  height: auto;
  object-fit: contain;
  /* filter: grayscale(100%);
  transition: filter 0.3s; */
  opacity: 0.7;
}
.brand-item:hover img {
  /* filter: grayscale(0%); */
  opacity: 1;
}

/* New Arrivals */
.new-arrivals {
  padding: 60px 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  opacity: 2;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out,
    box-shadow 0.3s;
}
.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.product-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.product-img {
  position: relative;
  height: 260px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-actions {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}
.product-actions form {
  display: contents;
}
.product-actions button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition:
    background 0.2s,
    color 0.2s;
}
.product-actions a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition:
    background 0.2s,
    color 0.2s;
}
.product-actions button:hover {
  background: #111827;
  color: #fff;
}
.product-actions a:hover {
  background: #111827;
  color: #fff;
}
.product-info {
  padding: 16px;
}
.rating {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 8px;
}
.product-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--brand);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.price {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}
.old-price {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
}
.new-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
}
.add-to-cart {
  width: 100%;
  padding: 10px;
  border: none;
  background: #e5e7eb;
  color: #111827;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.add-to-cart:hover {
  background: #111827;
  color: #fff;
}
.add-to-cart:disabled {
  background: #9ca3af;
  color: #6b7280;
  cursor: not-allowed;
}
.add-to-cart:disabled:hover {
  background: #9ca3af;
  color: #6b7280;
}
.stock-info {
  margin: 8px 0;
  font-size: 13px;
  font-weight: 500;
}
.stock-available {
  color: #059669;
  background: #ecfdf5;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}
.stock-unavailable {
  color: #dc2626;
  background: #fee2e2;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}

.cart-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  z-index: 200;
}
.cart-panel-overlay[hidden] {
  display: none;
}
.cart-panel {
  position: relative;
  width: 360px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-shadow: -4px 0 25px rgba(0, 0, 0, 0.15);
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cart-header h2 {
  margin: 0;
  font-size: 20px;
}
.cart-close {
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}
.cart-message {
  min-height: 18px;
  font-size: 13px;
  color: #ef4444;
  margin-bottom: 8px;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}
.cart-item-info {
  flex: 1;
}
.cart-item-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cart-item-price {
  font-size: 13px;
  color: #6b7280;
}
.cart-quantity {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cart-quantity button {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  cursor: pointer;
}
.cart-quantity span {
  min-width: 18px;
  text-align: center;
  font-size: 13px;
}
.cart-footer {
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
  margin-top: 8px;
}
.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 700;
}
.cart-buy {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: #111827;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.cart-buy:disabled {
  opacity: 0.6;
  cursor: default;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
/* FAQ */
.faq-main {
  background: #0b1020;
  padding-top: 20px;
  padding-bottom: 80px;
}
.faq-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.faq-hero .hero-card {
  margin: 40px 0;
  padding: 36px;
  border-radius: 18px;
  background:
    radial-gradient(
      1200px 400px at 10% 0%,
      rgba(99, 102, 241, 0.3) 0%,
      rgba(14, 17, 30, 0.6) 40%,
      rgba(14, 17, 30, 1) 100%
    ),
    linear-gradient(135deg, #4c1d95 0%, #0ea5e9 100%);
  color: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}
.faq-hero h1 {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 800;
}
.faq-hero p {
  margin: 0 0 18px;
  opacity: 0.95;
}
.faq-search {
  display: flex;
  gap: 10px;
}
.faq-search input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.faq-search input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}
.faq-search button {
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: #fff;
  color: #0b1020;
  font-weight: 700;
  cursor: pointer;
}
.faq-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 24px;
}
.faq-categories {
  background: #0d1326;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 18px;
  color: #cbd5e1;
}
.faq-categories h3 {
  margin: 0 0 12px;
  color: #fff;
}
.faq-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.faq-categories li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #1f2a3a;
  background: #0f172a;
  color: #cbd5e1;
}
.faq-categories li.active {
  border-color: #6366f1;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.35) 0%,
    rgba(59, 130, 246, 0.25) 100%
  );
  color: #fff;
}
.faq-categories li:hover {
  border-color: #6366f1;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.25) 0%,
    rgba(59, 130, 246, 0.2) 100%
  );
  color: #fff;
}
.faq-list {
  background: #0d1326;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 18px;
  color: #cbd5e1;
}
.faq-list h3 {
  margin: 0 0 12px;
  color: #fff;
}
.faq-item {
  border: 1px solid #1e293b;
  border-radius: 12px;
  background: #0f172a;
  margin-bottom: 12px;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  font-weight: 700;
  color: #e5e7eb;
}
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #334155;
  background: #111827;
  color: #e5e7eb;
  cursor: pointer;
}
.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: #cbd5e1;
  font-size: 14px;
}
.faq-item.open .faq-toggle {
  background: #374151;
}
.faq-item.open .faq-answer {
  display: block;
}
.faq-cta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #1e293b;
  background: #0d1326;
  color: #cbd5e1;
}
.faq-cta h4 {
  margin: 0 0 6px;
  color: #fff;
}
.faq-cta .cta-btn {
  padding: 10px 16px;
  border-radius: 10px;
  background: #6366f1;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .faq-hero .hero-card {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
/* ── TRUST FEATURES ── */
.features-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.feature-card {
  position: relative;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.32s ease;
  background: #000;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition:
    transform 0.6s ease,
    opacity 0.4s ease;
}

.feature-card:hover img {
  transform: scale(1.08);
  opacity: 1;
}

.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    transparent 70%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 24px;
  color: white;
}

.feature-overlay h3 {
  font-size: 1.55rem;
  margin-bottom: 6px;
}

.plus-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  font-size: 1.8rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plus-btn:hover {
  background: #3b82f6;
  transform: scale(1.15) rotate(90deg);
}

.container2 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TRUST FEATURES ── */
.features-section {
  padding: 20px 0;
  background: white;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.feature-card {
  position: relative;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.32s ease;
  background: #000;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition:
    transform 0.6s ease,
    opacity 0.4s ease;
}

.feature-card:hover img {
  transform: scale(1.08);
  opacity: 1;
}

.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    transparent 70%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 24px;
  color: white;
}

.feature-overlay h3 {
  font-size: 1.55rem;
  margin-bottom: 6px;
}

.plus-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  font-size: 1.8rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plus-btn:hover {
  background: #3b82f6;
  transform: scale(1.15) rotate(90deg);
}

/* ── REVIEWS SECTION ── */
.reviews-section {
  padding: 90px 0;
  background: #f1f5f9;
  overflow: hidden;
}

.reviews-grid {
  position: relative;
  margin-top: 50px;
  overflow: hidden;
  height: 320px;
}

.reviews-track {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
  width: max-content;
  animation: reviews-marquee 40s linear infinite;
  position: relative;
  z-index: 1;
}

.review-card {
  flex: 0 0 auto;
  min-width: 320px;
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.big-score {
  position: absolute;
  z-index: 2;
  left: 16px;
  top: 30%;
  transform: translateY(-50%);
  width: 280px;
  background: #1d4ed8;
  color: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@keyframes reviews-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.big-score .score {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.big-score .based-on {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Reviews layout: mobile order and sizing */
@media (max-width: 768px) {
  .reviews-grid {
    height: 460px;
    overflow: hidden;
  }
  .big-score {
    position: static;
    width: 100%;
    margin-bottom: -20px;
    margin-top: 100px;
  }
  .reviews-track {
    animation: reviews-marquee 30s linear infinite;
    flex-wrap: nowrap;
    gap: 16px;
  }
  .review-card {
    min-width: 240px;
  }
}
.review-item .stars {
  color: #f59e0b;
  font-size: 1.3rem;
  margin: 12px 0 16px;
}

.review-item blockquote {
  font-style: italic;
  margin: 16px 0 20px;
  color: #4b5563;
}

.reviewer {
  font-weight: 600;
  color: #1f2937;
}

.reviewer small {
  color: #6b7280;
  font-size: 0.9rem;
}

/* ── TRENDING TAGS & BOTTOM BADGES ── */
.tags-section {
  padding: 70px 0 90px;
  background: white;
}

.trending-title {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 2rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 60px;
}

.tag {
  padding: 10px 18px;
  background: #f3f4f6;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.tag:hover {
  background: #dbeafe;
  color: #2563eb;
}

.tag.active {
  background: #2563eb;
  color: white;
}

.bottom-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 60px;
  text-align: center;
}
.badge-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  width: 250px;
}

.badge-item i {
  font-size: 3.2rem;
  color: #3b82f6;
  margin-bottom: 16px;
}

.badge-item h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.badge-item p {
  color: #6b7280;
  font-size: 0.95rem;
  max-width: 240px;
}

@media (max-width: 1024px) {
  .reviews-grid {
    animation-duration: 35s;
  }
}

@media (max-width: 768px) {
  .reviews-grid {
    animation-duration: 30s;
  }
  .section-title {
    font-size: 2.1rem;
  }
}

/* Discount Banners Section */
.discount-banners {
  padding: 40px 0;
}
.banners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.banner-item {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 40px;
}
.banner-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
  z-index: 1;
}
.banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.banner-tag {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}
.banner-content h2 {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 20px;
  font-weight: 700;
}
.banner-content .highlight {
  color: #ef4444; /* Red color for offer */
}
.shop-now-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.shop-now-btn:hover {
  background: #fff;
  color: #111827; /* Dark brand color */
  border-color: #fff;
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .brands-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .brands-text {
    transform: none !important; /* disable animation on mobile if needed */
  }
}
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .banners-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .banner-item {
    width: 100%;
    height: 300px;
    padding: 30px;
  }
  .banner-content h2 {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .brands-text h2 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.flash-sale {
  padding: 60px 0;
  border-top: 1px solid #f3f4f6;
}
.flash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.flash-header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}
.flash-countdown {
  display: flex;
  align-items: center;
  gap: 24px;
}
.count-item {
  text-align: center;
  min-width: 70px;
}
.count-item .number {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.count-item .label {
  font-size: 12px;
  color: var(--muted);
}
.count-days .number {
  color: #ef4444;
}
.count-hours .number {
  color: #3b82f6;
}
.count-minutes .number {
  color: #10b981;
}
.count-seconds .number {
  color: #f59e0b;
}
.flash-grid .product-img {
  background: #fff;
}
.flash-grid .product-card {
  border-color: #f3f4f6;
  opacity: 1;
  transform: none;
}
.flash-grid .add-to-cart {
  background: #f3f4f6;
}
.flash-grid .add-to-cart:hover {
  background: #111827;
  color: #fff;
}

body.contact-page {
  background: #0f1624;
}
.contact-main {
  background: #0f1624;
  padding: 70px 0;
}
.contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.contact-left h1 {
  margin: 0 0 8px;
  font-size: 36px;
  font-weight: 800;
  color: #e5e7eb;
}
.contact-left p {
  margin: 0 0 24px;
  color: #94a3b8;
}
.contact-info {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}
.info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-size: 18px;
}
.info-label {
  font-weight: 700;
  color: #e5e7eb;
}
.info-value {
  color: #cbd5e1;
}
.contact-apps .apps-title {
  color: #e5e7eb;
  font-weight: 700;
  margin-bottom: 10px;
}
.apps-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.app-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #111827;
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  border: 1px solid #1f2937;
  transition:
    transform 0.2s,
    background 0.3s,
    border-color 0.3s;
}
.app-badge:hover {
  background: #1f2937;
  border-color: #334155;
  transform: translateY(-2px);
}
.app-icon {
  font-size: 22px;
  line-height: 1;
}
.app-small {
  font-size: 11px;
  opacity: 0.9;
}
.app-big {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}
.contact-card {
  background: #111827;
  color: #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: 1px solid #1f2937;
}
.contact-card h2 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  color: #e5e7eb;
}
.contact-label {
  display: block;
  font-size: 13px;
  color: #cbd5e1;
  margin: 8px 0 6px;
}
.contact-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #334155;
  border-radius: 10px;
  background: #0f1624;
  color: #e5e7eb;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.contact-input::placeholder {
  color: #64748b;
}
.contact-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}
.contact-textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-submit {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: #3b82f6;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.2s;
}
.contact-submit:hover {
  background: #2563eb;
}
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.contact-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f1624;
  color: #cbd5e1;
  border: 1px solid #334155;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.contact-social a:hover {
  background: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
}
@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .contact-card {
    order: -1;
  }
}

.product-details {
  padding: 50px 0;
  background: #ffffff;
}
.pd-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
}
.pd-gallery .pd-main {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #f9fafb;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-main img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.pd-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.pd-thumbs img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  object-fit: cover;
}
.pd-info h1 {
  margin: 0 0 8px;
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
}
.pd-price {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 12px;
}
.pd-old {
  color: #6b7280;
  text-decoration: line-through;
}
.pd-new {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
}
.pd-options .pd-label {
  font-weight: 700;
  color: #334155;
  margin: 12px 0 8px;
}
.pd-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pd-chips button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
}
.pd-actions {
  display: flex;
  gap: 10px;
  margin: 16px 0;
}
.pd-add {
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  background: #111827;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.pd-wish {
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  font-weight: 700;
  cursor: pointer;
}
.pd-desc,
.pd-shipping {
  margin-top: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  background: #fff;
}
.pd-desc h3,
.pd-shipping h3 {
  margin: 0 0 8px;
}
.ship-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ship-item {
  padding: 10px;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  background: #f9fafb;
  text-align: center;
}
.pd-reviews {
  display: grid;
  grid-template-columns: 0.6fr 0.6fr 1fr;
  gap: 24px;
  margin-top: 40px;
  align-items: start;
}
.score-box {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.score-box .big {
  font-size: 64px;
  font-weight: 800;
  color: #111827;
}
.score-box .small {
  font-size: 20px;
  color: #6b7280;
}
.score-box .sub {
  color: #6b7280;
}
.bars {
  display: grid;
  gap: 10px;
}
.bar {
  height: 12px;
  background: #f1f5f9;
  border-radius: 999px;
  overflow: hidden;
}
.bar span {
  display: block;
  height: 100%;
  background: #10b981;
}
.review-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
}
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  display: grid;
  place-items: center;
  margin-right: 10px;
}
.pd-related {
  margin-top: 40px;
}
.pd-related h2 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 800;
}
@media (max-width: 1024px) {
  .pd-wrap {
    grid-template-columns: 1fr;
  }
  .pd-reviews {
    grid-template-columns: 1fr;
  }
}
.blog-main {
  background: #ffffff;
  padding: 50px 0;
}
.blog-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.blog-hero-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  padding: 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e0f2fe 0%, #fef3c7 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.blog-hero-left h1 {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
}
.blog-hero-left p {
  margin: 0 0 18px;
  color: #334155;
}
.blog-search {
  display: flex;
  gap: 10px;
}
.blog-search input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #0f172a;
}
.blog-search button {
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: #111827;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.blog-latest .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.blog-top-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.latest-post {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.06);
}
.latest-post .post-cover {
  height: 280px;
  overflow: hidden;
}
.latest-post .post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.latest-post .post-content {
  padding: 18px 20px;
}
.latest-post .post-meta {
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 6px;
}
.latest-post h2 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #111827;
}
.latest-post p {
  margin: 0;
  color: #4b5563;
}
.editors-picks h4 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}
.editors-picks ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.editors-picks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}
.editors-picks li img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}
.editors-picks li span {
  color: #111827;
  font-size: 14px;
  font-weight: 600;
}
.blog-grid-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.blog-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 26px 0 18px;
}
.filter-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
}
.filter-btn:hover {
  background: #111827;
  color: #fff;
  border-color: #111827;
}
.search-inline input {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.12);
}
.post-card .thumb {
  height: 160px;
  background: #f9fafb;
  overflow: hidden;
}
.post-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-card .info {
  padding: 16px;
}
.post-card .info h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #111827;
}
.post-card .info p {
  margin: 0 0 10px;
  color: #4b5563;
  font-size: 14px;
}
.post-card .info .meta {
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
}
.post-card.signup-card {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 60%, #06b6d4 100%);
  color: #fff;
}
.signup-inner {
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.signup-inner h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
}
.signup-inner form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.signup-inner input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
}
.signup-inner button {
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .blog-hero-card {
    grid-template-columns: 1fr;
  }
  .blog-top-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .latest-post {
    grid-template-columns: 1fr;
  }
  .post-card .thumb {
    height: 180px;
  }
  .signup-inner form .row {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.shop-list-main {
  background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 40%, #f9fafb 100%);
  padding: 60px 0 90px;
}
.shop-list-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.shop-list-hero .hero-content {
  background: linear-gradient(135deg, #3b82f6 0%, #f59e0b 100%);
  color: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.25);
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.shop-list-hero .hero-content:hover {
  transform: translateY(-3px);
}
.shop-list-hero h1 {
  margin: 0 0 8px;
  font-size: 34px;
  font-weight: 800;
}
.shop-list-hero p {
  margin: 0;
  opacity: 0.95;
}
.shop-list-controls .container {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 16px;
}
.list-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
}
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pill:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
  transform: translateY(-2px);
}
.pill.active {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}
.sort label {
  font-size: 13px;
  color: #6b7280;
  margin-right: 8px;
}
.sort select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
}
.shop-list .container {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 0 16px;
}
.shop-list-page .product-card {
  opacity: 1;
  transform: translateY(0);
}
.list-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.list-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
  opacity: 1;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.3s;
}
.list-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.list-item:hover {
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
}
.list-thumb {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #f3f4f6;
}
.list-thumb img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.list-item:hover .list-thumb img {
  transform: scale(1.05);
}
.list-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}
.list-meta {
  color: #f59e0b;
  font-weight: 700;
  margin-bottom: 8px;
}
.list-desc {
  color: #4b5563;
  margin: 0 0 12px;
}
.list-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.list-price {
  font-weight: 800;
  font-size: 20px;
  color: #111827;
}
.list-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.btn {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn.primary {
  background: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
}
.btn.primary:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-2px);
}
.btn.accent {
  background: #f59e0b;
  color: #fff;
  border-color: #f59e0b;
}
.btn.accent:hover {
  background: #d97706;
  border-color: #d97706;
  transform: translateY(-2px);
}
.btn.ghost {
  background: #fff;
  color: #111827;
  border-color: #e5e7eb;
}
.btn.ghost:hover {
  background: #111827;
  color: #fff;
  border-color: #111827;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .list-item {
    grid-template-columns: 1fr;
  }
  .list-thumb {
    height: 200px;
  }
  .list-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.best-sell {
  padding: 60px 0;
  background: #f9fafb;
}
.best-grid .product-img {
  background: #fff;
}
.best-grid .product-card {
  opacity: 0;
  transform: translateX(40px);
  border-color: #f3f4f6;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.04);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out,
    box-shadow 0.3s;
}
.best-grid .product-card.visible {
  opacity: 1;
  transform: translateX(0);
}
.best-grid .add-to-cart {
  background: #f3f4f6;
}
.best-grid .add-to-cart:hover {
  background: #111827;
  color: #fff;
}

.top-selling {
  padding: 60px 0;
  margin-top: 70px;
  background: #ffe4e926;
}
.top-grid .product-img {
  background: #fff;
}
.top-grid .product-card {
  border-color: #f3f4f6;
  box-shadow: 0 8px 24px rgba(255, 149, 164, 0.15);
}
.top-grid .add-to-cart {
  background: #f3f4f6;
}
.top-grid .add-to-cart:hover {
  background: #111827;
  color: #fff;
}

.home-products {
  padding: 60px 0;
  margin-top: 70px;
  background: #f9fafb;
}
.home-products .product-img {
  background: #fff;
}
.home-products .product-card {
  border-color: #f3f4f6;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.04);
}
.home-products .add-to-cart {
  background: #f3f4f6;
}
.home-products .add-to-cart:hover {
  background: #111827;
  color: #fff;
}

.site-footer {
  background: #0f1624;
  color: #cbd5e1;
}
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px;
}
.footer-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
}
.benefit .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.benefit .title {
  font-weight: 700;
  color: #e5e7eb;
}
.benefit .desc {
  font-size: 12px;
  color: #94a3b8;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}
.footer-brand .brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #e5e7eb;
  margin-bottom: 14px;
}
.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-col h4 {
  margin: 0 0 12px;
  color: #e5e7eb;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-links a {
  color: #cbd5e1;
}
.footer-links a:hover {
  color: #fff;
}
.contact-item {
  margin-bottom: 12px;
}
.contact-label {
  font-weight: 700;
  color: #e5e7eb;
  margin-bottom: 6px;
}
.contact-value {
  color: #cbd5e1;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  background: #0d1421;
}
.footer-bottom .container {
  padding: 0 16px;
}
.copyright {
  color: #94a3b8;
  font-size: 14px;
}
@media (max-width: 900px) {
  .footer-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-benefits {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
}
.style-offers {
  position: relative;
  padding: 60px 0;
  background: #f9fafb;
  overflow: hidden;
}
.style-offers::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 620px;
  background: url("../images/about/style-bg-three.webp") no-repeat left center;
  background-size: cover;
  opacity: 5;
  pointer-events: none;
}
.style-offers::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 620px;
  background: url("../images/about/style-bg-four.webp") no-repeat right center;
  background-size: cover;
  opacity: 5;
  pointer-events: none;
}
.style-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}
.style-card-one {
  margin-left: 50%;
}
.style-card-one .style-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.style-card .style-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.style-card-one h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--brand);
  margin: 0 0 20px;
  line-height: 1.2;
}
.style-card h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--brand);
  margin: 0 0 20px;
  line-height: 1.2;
}
.style-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-weight: 700;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.2s,
    border-color 0.3s;
  border: 2px solid transparent;
}
.style-btn:hover {
  background: #fff;
  color: #111827;
  border-color: #111827;
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .categories-toggle {
    font-size: 0; /* Hides the text */
  }
  .categories-toggle::before {
    content: "☰"; /* Keeps the icon visible */
    font-size: 16px; /* Reset font size for icon */
  }
  .style-offers::before,
  .style-offers::after {
    width: 180px;
    opacity: 18;
  }
  .style-card-one {
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .style-grid {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .style-card-one,
  .style-card {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 768px) {
  .flash-header {
    flex-wrap: wrap;
    gap: 12px;
  }
  .flash-countdown {
    width: 100%;
    justify-content: center;
  }
}
