.hero-header.force-dark {
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
  color: var(--black);
}

.hero-header.force-dark .brand-title,
.hero-header.force-dark .brand-arabic,
.hero-header.force-dark .nav-links a,
.hero-header.force-dark .nav-icons a,
.hero-header.force-dark .menu-toggle {
  color: var(--black);
}

.nav-links a.active,
.mobile-menu a.active {
  color: var(--gold);
}

.nav-links a.active::after,
.mobile-menu a.active::after {
  width: 100%;
}

.shop-toolbar {
  padding: 110px 20px 0;
  background: var(--cream);
}

.shop-toolbar-inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 18px 0 22px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.shop-categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.shop-categories a {
  position: relative;
  font-size: 16px;
  color: rgba(17, 17, 17, 0.72);
  transition: color 0.25s ease;
}

.shop-categories a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.28s ease;
}

.shop-categories a:hover,
.shop-categories a.active {
  color: var(--gold);
}

.shop-categories a:hover::after,
.shop-categories a.active::after {
  width: 100%;
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(17, 17, 17, 0.6);
}

.shop-sort label {
  font-size: 15px;
}

.shop-sort select {
  border: 0;
  background: transparent;
  color: var(--black);
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  outline: none;
}

.products-meta {
  max-width: 1450px;
  margin: 0 auto;
  padding: 26px 20px 10px;
}

.products-meta p {
  font-size: 16px;
  color: rgba(17, 17, 17, 0.58);
}

.products {
  max-width: 1450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  padding: 20px 20px 70px;
}

.product {
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 0.25s ease;
}

.product:hover {
  transform: translateY(-4px);
}

.product img {
  width: 100%;
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  background: #ece8e1;
}

.product-info {
  padding: 18px 0 0;
}

.product-brand {
  display: block;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: rgba(17, 17, 17, 0.52);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.product h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.product p {
  font-size: 15px;
  color: rgba(17, 17, 17, 0.72);
}

.no-products {
  padding: 20px 0;
  color: rgba(17, 17, 17, 0.6);
  font-size: 16px;
}

@media (max-width: 950px) {
  .shop-toolbar {
    padding-top: 92px;
  }

  .shop-toolbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-categories {
    gap: 18px;
  }

  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .products {
    grid-template-columns: 1fr;
  }

  .shop-categories a {
    font-size: 15px;
  }

  .shop-sort select,
  .shop-sort label {
    font-size: 14px;
  }
}