/* =========================
COMPONENTS CSS
========================= */

/* =========================
GLOBAL BUTTONS
========================= */

button,
.btn {
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

button:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #d4a017, #f5c542);
  color: #111;
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f0c86d, #ffe09a);
  color: #111;
  box-shadow: 0 14px 32px rgba(212, 160, 23, 0.34);
  filter: brightness(1.04);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: #111;
}

.btn-secondary:hover {
  background: #fff;
}

.btn-outline {
  background: transparent;
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.9);
}

.btn-outline:hover {
  background: #d4af37;
  color: #111;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.22);
}

/* =========================
LOGO
========================= */

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  font-size: 22px;
  font-weight: 700;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
  transition: transform 0.25s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* =========================
NAV LINKS
========================= */

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.72;
}

/* =========================
CART BUTTON
========================= */

.cart-btn {
  position: relative;
  background: none;
  font-size: 20px;
  color: inherit;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

/* =========================
PRODUCT CARD
========================= */

.product-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #161c18;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 175, 55, 0.3);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.product-card:hover::after {
  background: rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.35s ease;
}

.product-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.product-card a,
.product-card button,
.product-card .product-card-media,
.product-card .product-card-content {
  position: relative;
  z-index: 2;
}

.product-card button {
  width: 100%;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.product-card button:hover {
  background: #000;
}

.product-card button:active {
  transform: scale(0.97);
}

.product-info {
  padding: 18px;
}

.product-title {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: #fff;
}

.product-price {
  font-size: 15px;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 12px;
}

.product-urgency {
  margin-top: 10px;
  color: #d4af37;
  font-size: 14px;
}

.product-shipping {
  margin-top: 4px;
  font-size: 13px;
  opacity: 0.8;
}

/* =========================
PRODUCT PAGE MEDIA
========================= */

.product-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.product-image img {
  transition: transform 0.45s ease;
  cursor: zoom-in;
}

.product-image:hover img {
  transform: scale(1.08);
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.product-thumbnails img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-thumbnails img:hover {
  border-color: #d4af37;
  transform: translateY(-2px);
}

/* =========================
PRODUCT PAGE CONTENT
========================= */

.product-option-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-option-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.product-option-select {
  width: 100%;
  padding: 12px 14px;
  background: #101512;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
}

.product-option-select:focus {
  outline: none;
  border-color: #d4af37;
}

.product-variant-selectors {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 24px;
}

.product-purchase-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 18px 0 20px;
}

#product-title {
  max-width: 320px;
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 0.95;
  color: #fff;
}

#product-price {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #d4af37;
}

#product-description {
  max-width: 420px;
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  white-space: normal;
  overflow-wrap: break-word;
}

#add-to-cart-btn {
  width: fit-content;
  min-width: 140px;
}

/* =========================
PRODUCT TRUST
========================= */

.product-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 260px;
  margin-top: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 160, 23, 0.18);
  border-radius: 14px;
}

.product-trust::before {
  content: "Why choose this product";
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: 0.02em;
}

.trust-item:last-child {
  border-bottom: none;
}

.trust-item::before {
  content: "✔";
  color: #d4a017;
  font-size: 13px;
  flex-shrink: 0;
}

/* =========================
STICKY ADD TO CART
========================= */

#add-to-cart-btn,
#sticky-add-to-cart {
  background: linear-gradient(135deg, #d4a017, #f5c542);
  color: #111;
  border: none;
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.22);
}

#add-to-cart-btn:hover,
#sticky-add-to-cart:hover {
  opacity: 0.98;
  box-shadow: 0 12px 30px rgba(212, 160, 23, 0.35);
}

#add-to-cart-btn:disabled,
#sticky-add-to-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.sticky-cart {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 760px;
  z-index: 999;
  display: none;
}

.sticky-cart-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

#sticky-product-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}

#sticky-add-to-cart {
  flex-shrink: 0;
  min-width: 160px;
  padding: 12px 18px;
}

/* =========================
MOBILE MENU
========================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  padding: 40px 30px;
  background: #fff;
  color: #111;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1200;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  list-style: none;
}

.mobile-links a {
  text-decoration: none;
  color: inherit;
  font-size: 18px;
}

.mobile-close {
  background: none;
  font-size: 22px;
  color: inherit;
}

/* =========================
CART TOAST
========================= */

.cart-toast {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1200;
  padding: 14px 22px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cart-toast.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
PAYMENT ICONS
========================= */

.payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.payment-icons img {
  width: auto;
  height: 26px;
  opacity: 0.92;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.payment-icons img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* =========================
CART ICON ANIMATION
========================= */

.cart-bounce {
  animation: cartBounce 0.4s ease;
}

@keyframes cartBounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

/* =========================
SHOP STATES
========================= */

.shop-loading {
  padding: 80px 0;
  text-align: center;
  opacity: 0.7;
}

.shop-loading span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  border-radius: 50%;
  background: #d4af37;
  animation: loadingDots 1.2s infinite;
}

.shop-loading span:nth-child(2) {
  animation-delay: 0.2s;
}

.shop-loading span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes loadingDots {
  0% { transform: scale(0); }
  50% { transform: scale(1); }
  100% { transform: scale(0); }
}

.shop-empty {
  max-width: 500px;
  margin: auto;
  padding: 100px 20px;
  text-align: center;
  opacity: 0.8;
}

.shop-empty h2 {
  margin-bottom: 10px;
}

.shop-empty p {
  margin-bottom: 20px;
  color: #aaa;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 768px) {
  .product-card img {
    height: 220px;
  }

  #product-title {
    font-size: 36px;
    max-width: none;
  }

  #product-description {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .sticky-cart {
    bottom: 12px;
    width: calc(100% - 20px);
  }

  .sticky-cart-inner {
    padding: 12px;
    gap: 12px;
  }

  #sticky-product-title {
    font-size: 13px;
  }

  #sticky-add-to-cart {
    min-width: 140px;
  }
}

/* =========================
SHOP FILTERS PREMIUM
========================= */

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-btn {
  position: relative;
  padding: 11px 18px;
  border: 1px solid rgba(198, 167, 107, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.filter-btn:hover {
  border-color: rgba(198, 167, 107, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.filter-btn.active {
  background: linear-gradient(135deg, rgba(198, 167, 107, 0.18), rgba(198, 167, 107, 0.3));
  color: #fff;
  border-color: rgba(198, 167, 107, 0.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* =========================
PRODUCT GRID PREMIUM
========================= */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* =========================
PRODUCT CARD PREMIUM
========================= */

.product-card {
  position: relative;
  min-width: 0;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.product-card-shell {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(198, 167, 107, 0.26);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.product-card-media {
  position: relative;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(198, 167, 107, 0.14), transparent 45%),
    #121714;
}

.product-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.35s ease;
}

.product-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.02);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11, 15, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 22px 20px;
}

.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-meta-label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 92px;
}

.product-title {
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #fff;
}

.product-subtitle {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.96rem;
  line-height: 1.65;
}

.product-price {
  margin: 0;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 8px;
}

.product-view-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.82;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-view-link:hover {
  opacity: 1;
  transform: translateX(2px);
}

.add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4a017, #f5c542);
  color: #111;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 26px rgba(212, 160, 23, 0.2);
}

.add-to-cart-btn:hover {
  box-shadow: 0 14px 30px rgba(212, 160, 23, 0.3);
}

/* =========================
SHOP STATUS
========================= */

.shop-status-message {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 280px;
  padding: 40px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.shop-status-message p,
.shop-status-message h3 {
  margin: 0;
}

.shop-status-loading {
  color: rgba(255, 255, 255, 0.7);
}

.shop-status-loading span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  animation: loadingDots 1.2s infinite;
}

.shop-status-loading span:nth-child(2) {
  animation-delay: 0.2s;
}

.shop-status-loading span:nth-child(3) {
  animation-delay: 0.4s;
}

/* =========================
PRODUCT PAGE COMPONENT POLISH
========================= */

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.product-thumbnails img {
  width: 100%;
  height: 84px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
  opacity: 0.78;
  transition: transform 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.product-thumbnails img:hover,
.product-thumbnails img.active {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(198, 167, 107, 0.52);
}

.product-variant-selectors {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}

.product-option-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-option-label {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
}

.product-option-select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: #0f1411;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #fff;
  font-size: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.product-option-select:focus {
  outline: none;
  border-color: rgba(198, 167, 107, 0.6);
  box-shadow: 0 0 0 4px rgba(198, 167, 107, 0.08);
}

.product-trust {
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.product-trust::before {
  content: "Why customers choose it";
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-item {
  padding: 10px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.trust-item::before {
  content: "✓";
  color: var(--accent);
  font-size: 14px;
}

.product-back-link:hover {
  opacity: 1;
  transform: translateX(-2px);
}

#sticky-product-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}

/* =========================
NAVBAR + HOME COMPONENTS
========================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: min(92%, 1240px);
  margin: 14px auto 0;
  padding: 10px 18px;
  min-height: 68px;
  border-radius: 18px;
  background: rgba(10, 14, 11, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.navbar.nav-scrolled {
  background: rgba(10, 14, 11, 0.9);
  border-color: rgba(198, 167, 107, 0.2);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
  min-width: 0;
}

.nav-left {
  justify-self: start;
}

.nav-center {
  justify-self: center;
}

.nav-right {
  justify-self: end;
  gap: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: color 0.22s ease, opacity 0.22s ease;
}

.nav-links a:hover {
  color: var(--accent-soft);
  opacity: 1;
}

.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 20px;
}

.cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-count {
  top: -3px;
  right: -3px;
  background: var(--accent);
  color: #111;
}

.category-card-premium {
  border-radius: 22px;
}

.category-card-premium img {
  height: 280px;
}

.category-card-premium .category-overlay {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 6px;
  padding: 22px;
}

.category-kicker {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-card-premium strong {
  font-size: 1.2rem;
  color: #fff;
}

.instagram-grid img {
  border-radius: 18px;
}

@media (max-width: 900px) {
  .navbar {
    grid-template-columns: 1fr auto;
    width: min(94%, 1240px);
    margin-top: 12px;
    padding: 10px 14px;
    min-height: 62px;
  }

  .nav-center {
    display: none;
  }

  .nav-right {
    gap: 10px;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }
}

/* =========================
HOME REFINEMENTS
========================= */

.featured-grid-home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card-compact .product-card-media {
  aspect-ratio: 1 / 0.88;
}

.product-card-compact .product-info {
  gap: 14px;
  padding: 18px 18px 16px;
}

.product-card-compact .product-copy {
  min-height: 72px;
}

.product-card-compact .product-title {
  font-size: 1.05rem;
}

.product-card-compact .product-subtitle {
  font-size: 0.9rem;
  line-height: 1.55;
}

.home-grinders-layout {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  align-items: start;
}

.home-grinder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-grinder-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-grinder-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 167, 107, 0.26);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.home-grinder-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.home-grinder-card-media {
  aspect-ratio: 1 / 0.95;
  overflow: hidden;
  background: #111613;
}

.home-grinder-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-grinder-card-copy {
  padding: 14px 14px 16px;
}

.home-grinder-card-copy h3 {
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.2;
}

.home-grinder-card-copy p {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
}

.category-card-premium img {
  height: 240px;
}

.cart-item-title {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.35;
}

.cart-item-price {
  color: var(--accent-soft);
  font-size: 13px;
  font-weight: 700;
}

.cart-qty button {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-weight: 700;
  box-shadow: none;
}

.cart-qty button:hover {
  background: #fff;
  transform: translateY(-1px);
}

.cart-remove {
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1024px) {
  .featured-grid-home,
  .home-grinder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-grinders-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .featured-grid-home,
  .home-grinder-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
HOME FINAL POLISH
========================= */

.featured-grid-home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card-compact {
  border-radius: 20px;
}

.product-card-compact .product-card-media {
  aspect-ratio: 1 / 0.78;
}

.product-card-compact .product-badge {
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  font-size: 10px;
}

.product-card-compact .product-info {
  gap: 12px;
  padding: 16px 16px 14px;
}

.product-card-compact .product-copy {
  min-height: 58px;
  gap: 6px;
}

.product-card-compact .product-title {
  font-size: 0.98rem;
  line-height: 1.2;
}

.product-card-compact .product-subtitle {
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.56);
}

.product-card-compact .product-card-footer {
  gap: 10px;
  padding-top: 2px;
}

.product-card-compact .product-view-link {
  font-size: 13px;
}

.product-card-compact .add-to-cart-btn {
  min-height: 40px;
  padding: 0 14px;
  font-size: 12px;
}

.home-grinders-layout {
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: 26px;
}

.home-grinder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-grinder-card {
  border-radius: 18px;
}

.home-grinder-card-media {
  aspect-ratio: 1 / 0.82;
}

.home-grinder-card-copy {
  padding: 12px 12px 14px;
}

.home-grinder-card-copy h3 {
  margin-bottom: 4px;
  font-size: 0.92rem;
  line-height: 1.2;
}

.home-grinder-card-copy p {
  font-size: 0.88rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.category-card-premium {
  border-radius: 18px;
  overflow: hidden;
}

.category-card-premium img {
  height: 200px;
}

.category-card-premium .category-overlay {
  padding: 16px;
  gap: 4px;
}

.category-kicker {
  font-size: 10px;
}

.category-card-premium strong {
  font-size: 1rem;
  line-height: 1.15;
}

.cart-item-title {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12.5px;
  line-height: 1.35;
}

.cart-item-price {
  color: var(--accent);
  font-size: 12.5px;
  font-weight: 700;
}

.cart-qty {
  gap: 8px;
}

.cart-qty button {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.cart-qty button:hover {
  background: #fff;
  transform: translateY(-1px);
}

.cart-remove {
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

@media (max-width: 1100px) {
  .featured-grid-home,
  .home-grinder-grid,
  .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .featured-grid-home,
  .home-grinder-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
HOME LAUNCH COMPONENTS
========================= */

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hero-buttons .btn,
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, #d4a017, #f5c542);
  color: #111;
  box-shadow: 0 14px 30px rgba(212, 160, 23, 0.24);
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(212, 160, 23, 0.32);
}

.hero-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.hero-buttons .btn-secondary:hover {
  transform: translateY(-2px);
  background: #fff;
}

.product-card-compact {
  border-radius: 20px;
}

.product-card-compact .product-card-media {
  aspect-ratio: 1 / 0.78;
}

.product-card-compact .product-badge {
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  font-size: 10px;
}

.product-card-compact .product-info {
  gap: 12px;
  padding: 16px 16px 14px;
}

.product-card-compact .product-copy {
  min-height: 58px;
  gap: 6px;
}

.product-card-compact .product-title {
  font-size: 0.98rem;
  line-height: 1.2;
}

.product-card-compact .product-subtitle {
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.56);
}

.product-card-compact .product-card-footer {
  gap: 10px;
  padding-top: 2px;
}

.product-card-compact .product-view-link {
  font-size: 13px;
}

.product-card-compact .add-to-cart-btn {
  min-height: 40px;
  padding: 0 14px;
  font-size: 12px;
}

.home-grinders-layout {
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: 26px;
}

.home-grinder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-grinder-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-grinder-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 167, 107, 0.26);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.home-grinder-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.home-grinder-card-media {
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  background: #111613;
}

.home-grinder-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.home-grinder-card:hover .home-grinder-card-media img {
  transform: scale(1.04);
}

.home-grinder-card-copy {
  padding: 12px 12px 14px;
}

.home-grinder-card-copy h3 {
  margin-bottom: 4px;
  font-size: 0.92rem;
  line-height: 1.2;
}

.home-grinder-card-copy p {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 700;
}

.trust-card {
  position: relative;
  padding: 22px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 167, 107, 0.22);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.trust-icon {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 18px;
}

.category-card-premium {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.category-card-premium img {
  height: 210px;
  transition: transform 0.45s ease;
}

.category-card-premium:hover img {
  transform: scale(1.04);
}

.category-card-premium .category-overlay {
  padding: 16px;
  gap: 4px;
}

.category-kicker {
  font-size: 10px;
}

.category-card-premium strong {
  font-size: 1rem;
  line-height: 1.15;
}

.footer-column a,
.footer-links a,
footer a {
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.footer-column a:hover,
.footer-links a:hover,
footer a:hover {
  color: var(--accent-soft);
  opacity: 1;
  transform: translateX(2px);
}

@media (max-width: 1100px) {
  .featured-grid-home,
  .home-grinder-grid,
  .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .home-grinders-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-buttons {
    width: 100%;
    flex-direction: column;
  }

  .hero-buttons .btn,
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 320px;
  }

  .featured-grid-home,
  .home-grinder-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
HOME LAUNCH COMPONENTS
========================= */

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hero-buttons .btn,
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, #d4a017, #f5c542);
  color: #111;
  box-shadow: 0 14px 30px rgba(212, 160, 23, 0.24);
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(212, 160, 23, 0.32);
}

.hero-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.hero-buttons .btn-secondary:hover {
  transform: translateY(-2px);
  background: #fff;
}

.product-card-compact {
  border-radius: 20px;
}

.product-card-compact .product-card-media {
  aspect-ratio: 1 / 0.78;
}

.product-card-compact .product-badge {
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  font-size: 10px;
}

.product-card-compact .product-info {
  gap: 12px;
  padding: 16px 16px 14px;
}

.product-card-compact .product-copy {
  min-height: 58px;
  gap: 6px;
}

.product-card-compact .product-title {
  font-size: 0.98rem;
  line-height: 1.2;
}

.product-card-compact .product-subtitle {
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.56);
}

.product-card-compact .product-card-footer {
  gap: 10px;
  padding-top: 2px;
}

.product-card-compact .product-view-link {
  font-size: 13px;
}

.product-card-compact .add-to-cart-btn {
  min-height: 40px;
  padding: 0 14px;
  font-size: 12px;
}

.home-grinders-layout {
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: 26px;
}

.home-grinder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-grinder-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-grinder-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 167, 107, 0.26);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.home-grinder-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.home-grinder-card-media {
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  background: #111613;
}

.home-grinder-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.home-grinder-card:hover .home-grinder-card-media img {
  transform: scale(1.04);
}

.home-grinder-card-copy {
  padding: 12px 12px 14px;
}

.home-grinder-card-copy h3 {
  margin-bottom: 4px;
  font-size: 0.92rem;
  line-height: 1.2;
}

.home-grinder-card-copy p {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 700;
}

.trust-card {
  position: relative;
  padding: 22px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 167, 107, 0.22);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.trust-icon {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 18px;
}

.category-card-premium {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.category-card-premium img {
  height: 210px;
  transition: transform 0.45s ease;
}

.category-card-premium:hover img {
  transform: scale(1.04);
}

.category-card-premium .category-overlay {
  padding: 16px;
  gap: 4px;
}

.category-kicker {
  font-size: 10px;
}

.category-card-premium strong {
  font-size: 1rem;
  line-height: 1.15;
}

.instagram-home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.instagram-home-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.instagram-home-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 167, 107, 0.24);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.24);
}

.instagram-home-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.instagram-home-card:hover img {
  transform: scale(1.03);
}

.instagram-home-card::after {
  content: "View on Instagram";
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-home-card:hover::after {
  opacity: 1;
}

.instagram-home-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.footer-column a,
.footer-links a,
footer a {
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.footer-column a:hover,
.footer-links a:hover,
footer a:hover {
  color: var(--accent-soft);
  opacity: 1;
  transform: translateX(2px);
}

@media (max-width: 1100px) {
  .featured-grid-home,
  .home-grinder-grid,
  .categories-grid,
  .instagram-home-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .home-grinders-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-buttons {
    width: 100%;
    flex-direction: column;
  }

  .hero-buttons .btn,
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 320px;
  }

  .featured-grid-home,
  .home-grinder-grid,
  .categories-grid,
  .instagram-home-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
SHOP + PRODUCT + CART LAUNCH POLISH
========================= */

.product-card,
.product-card-compact {
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.product-card:hover,
.product-card-compact:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 167, 107, 0.24);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

.product-card .product-card-media,
.product-card-compact .product-card-media {
  overflow: hidden;
  background: #111613;
}

.product-card .product-card-media img,
.product-card-compact .product-card-media img {
  transition: transform 0.45s ease;
}

.product-card:hover .product-card-media img,
.product-card-compact:hover .product-card-media img {
  transform: scale(1.035);
}

.product-card .product-info,
.product-card-compact .product-info {
  gap: 14px;
}

.product-card .product-copy,
.product-card-compact .product-copy {
  gap: 6px;
}

.product-card .product-title,
.product-card-compact .product-title {
  line-height: 1.2;
}

.product-card .product-subtitle,
.product-card-compact .product-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.product-card .product-card-footer,
.product-card-compact .product-card-footer {
  align-items: center;
  gap: 12px;
}

.product-card .product-view-link,
.product-card-compact .product-view-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.product-card .product-view-link:hover,
.product-card-compact .product-view-link:hover {
  color: var(--accent-soft);
}

.add-to-cart-btn,
.product-card .add-to-cart-btn,
.product-card-compact .add-to-cart-btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(198, 167, 107, 0.26);
  background: linear-gradient(135deg, rgba(198, 167, 107, 0.98), rgba(232, 205, 143, 0.98));
  color: #111;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(198, 167, 107, 0.18);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.add-to-cart-btn:hover,
.product-card .add-to-cart-btn:hover,
.product-card-compact .add-to-cart-btn:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 18px 30px rgba(198, 167, 107, 0.28);
  filter: brightness(1.08);
  background: linear-gradient(135deg, #f0c86d, #ffe09a);
  color: #111;
}

.product-card .product-price,
.product-card-compact .product-price,
.home-grinder-card-copy p {
  color: var(--accent-soft);
  font-weight: 700;
}

.collection-filters,
.shop-filters,
.filter-bar {
  gap: 12px;
}

.collection-filters button,
.shop-filters button,
.filter-btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.collection-filters button:hover,
.shop-filters button:hover,
.filter-btn:hover,
.collection-filters button.active,
.shop-filters button.active,
.filter-btn.active {
  background: rgba(198, 167, 107, 0.12);
  border-color: rgba(198, 167, 107, 0.3);
  color: #fff;
  transform: translateY(-1px);
}

.product-page .product-gallery,
.product-details-layout .product-gallery,
.product-main-image {
  border-radius: 24px;
  overflow: hidden;
}

.product-page .product-info,
.product-details,
.product-summary {
  gap: 18px;
}

.product-page h1,
.product-details h1,
.product-summary h1 {
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.product-price-large,
.product-price,
.product-summary .price {
  color: var(--accent-soft);
  font-weight: 700;
}

.product-option-select {
  min-height: 50px;
  border-radius: 16px;
  background: rgba(10, 14, 11, 0.92);
}

.product-option-select:hover {
  border-color: rgba(198, 167, 107, 0.28);
}

.product-actions .btn,
.product-actions .btn-primary,
.product-actions .add-to-cart-btn,
.product-buy-actions .btn,
.product-buy-actions .btn-primary {
  min-height: 52px;
  border-radius: 999px;
}

.product-trust {
  margin-top: 4px;
}

.product-trust .trust-item {
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.82);
}



@media (max-width: 768px) {
  .collection-filters,
  .shop-filters,
  .filter-bar {
    gap: 10px;
  }

  .collection-filters button,
  .shop-filters button,
  .filter-btn {
    min-height: 40px;
    padding: 0 14px;
    font-size: 11px;
  }

  .product-card,
  .product-card-compact {
    border-radius: 20px;
  }
}

/* =========================
LAUNCH MICRO POLISH
========================= */

.faq-question {
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.faq-question:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(198, 167, 107, 0.22);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.contact-info,
.contact-form-container,
.about-container,
.policy-container,
.faq-container {
  backdrop-filter: blur(10px);
}

.contact-details p,
.contact-details a {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.contact-details a:hover {
  color: var(--accent-soft);
}

.contact-form .btn,
.contact-form .btn-primary {
  background: linear-gradient(135deg, #d4a017, #f5c542);
  color: #111;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(212, 160, 23, 0.2);
}

.contact-form .btn:hover,
.contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(212, 160, 23, 0.28);
}

footer {
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 167, 107, 0.28),
    transparent
  );
  pointer-events: none;
}

.footer-column h3,
.footer-column h4,
.footer-title {
  margin-bottom: 14px;
  color: #fff;
  letter-spacing: 0.02em;
}

.footer-column p,
.footer-column li,
.footer-links a,
footer p,
footer a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-column a,
.footer-links a,
footer a {
  transition:
    color 0.22s ease,
    opacity 0.22s ease,
    transform 0.22s ease;
}

.footer-column a:hover,
.footer-links a:hover,
footer a:hover {
  color: var(--accent-soft);
  opacity: 1;
  transform: translateX(2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-newsletter input,
.newsletter-form input {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.footer-newsletter input:focus,
.newsletter-form input:focus {
  outline: none;
  border-color: rgba(198, 167, 107, 0.38);
  box-shadow: 0 0 0 4px rgba(198, 167, 107, 0.08);
}

.footer-newsletter button,
.newsletter-form button {
  min-height: 48px;
  border-radius: 14px;
}

.page-header h1,
.page-banner h1,
.hero h1,
.product-details h1,
.product-summary h1 {
  text-wrap: balance;
}

.page-header p,
.page-banner p,
.hero p,
.about-container p,
.policy-container p,
.faq-answer p,
.contact-info p {
  text-wrap: pretty;
}

body.checkout-loading {
  overflow: hidden;
}

.checkout-loading-screen {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 99999;
}

.checkout-loading-screen.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.checkout-loading-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  color: #ffffff;
}

.checkout-loading-spinner {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: limitlessCheckoutSpin 0.7s linear infinite;
}

.checkout-loading-text {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
}

@keyframes limitlessCheckoutSpin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================
PRODUCT CARD LUXURY MICRO POLISH
Safe append-only block
========================= */

.product-card {
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.18);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.product-card img,
.product-image-wrap img,
.product-media img {
  transition: transform 0.45s ease, filter 0.3s ease;
}

.product-card:hover img,
.product-card:hover .product-image-wrap img,
.product-card:hover .product-media img {
  transform: scale(1.03);
}

.product-card .product-info,
.product-card .product-content {
  padding: 18px 18px 20px;
}

.product-card .product-title,
.product-card h3 {
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.product-card .product-price {
  color: #f0d38a;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.product-card .btn,
.product-card button {
  border-radius: 14px;
}

.featured-grid-home .product-card,
.product-grid .product-card {
  backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
  .product-card {
    border-radius: 18px;
  }

  .product-card .product-info,
  .product-card .product-content {
    padding: 16px 16px 18px;
  }
}

/* =========================
NAVBAR LUXURY MICRO POLISH
Safe append-only block
========================= */

header#navbar .navbar,
header#navbar .nav-shell,
header#navbar .nav-inner,
header#navbar .navbar-shell {
  background: rgba(10, 10, 10, 0.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 160, 23, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

header#navbar .navbar,
header#navbar .nav-shell,
header#navbar .navbar-shell {
  border-radius: 18px;
}

header#navbar a,
header#navbar .nav-link,
header#navbar .navbar a {
  transition: color 0.22s ease, opacity 0.22s ease;
}

header#navbar a:hover,
header#navbar .nav-link:hover,
header#navbar .navbar a:hover {
  color: #f0d38a;
}

header#navbar .cart-btn,
header#navbar .nav-cart,
header#navbar .cart-toggle {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

header#navbar .cart-count,
header#navbar .nav-cart-count {
  box-shadow: 0 0 0 4px rgba(10, 10, 10, 0.58);
}

@media (max-width: 768px) {
  header#navbar .navbar,
  header#navbar .nav-shell,
  header#navbar .navbar-shell {
    border-radius: 16px;
  }
}

/* =========================
SHOP FILTER BAR LUXURY MICRO POLISH
Safe append-only block
========================= */

.shop-filters {
  gap: 12px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.filter-btn {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(212, 160, 23, 0.18);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 160, 23, 0.28);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.filter-btn.active {
  background: linear-gradient(180deg, rgba(212, 160, 23, 0.94), rgba(188, 141, 20, 0.94));
  color: #111;
  border-color: rgba(212, 160, 23, 0.96);
  box-shadow: 0 14px 28px rgba(212, 160, 23, 0.16);
}

@media (max-width: 768px) {
  .shop-filters {
    gap: 10px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .filter-btn {
    min-height: 40px;
    padding: 9px 16px;
    font-size: 13px;
  }
}

/* =========================
SECTION HEADLINE LUXURY MICRO POLISH
Safe append-only block
========================= */

.section-header.section-header-premium,
.section-header-premium {
  max-width: 760px;
}

.section-header-premium .section-kicker,
.section-header .section-kicker {
  margin-bottom: 12px;
  letter-spacing: 0.16em;
  color: rgba(212, 160, 23, 0.92);
}

.section-header-premium h2,
.section-header h2 {
  margin-bottom: 14px;
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-header-premium p,
.section-header p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  font-size: 0.98rem;
}

.featured-products .section-header,
.categories .section-header,
.instagram-home .section-header,
.trust-section .section-header {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .section-header-premium h2,
  .section-header h2 {
    margin-bottom: 12px;
    line-height: 1.02;
  }

  .section-header-premium p,
  .section-header p {
    max-width: 560px;
    font-size: 0.95rem;
  }
}

/* =========================
PRODUCT PAGE TYPOGRAPHY LUXURY MICRO POLISH
Safe append-only block
========================= */

.product-summary-column #product-title,
.product-summary-column .product-title {
  letter-spacing: -0.045em;
  line-height: 0.94;
  max-width: 12ch;
}

.product-summary-column #product-price,
.product-summary-column .product-price {
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.product-summary-column #product-description,
.product-summary-column .product-description {
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.82;
}

.product-price-note,
.product-purchase-label,
.product-purchase-stock,
.product-topbar-note,
.product-eyebrow {
  letter-spacing: 0.12em;
}

.product-detail-card h3 {
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.product-detail-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.78;
}

.product-trust::before {
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.64);
}

.trust-item {
  line-height: 1.45;
}

@media (max-width: 768px) {
  .product-summary-column #product-title,
  .product-summary-column .product-title {
    max-width: none;
    line-height: 0.97;
  }

  .product-summary-column #product-description,
  .product-summary-column .product-description {
    max-width: none;
  }
}

/* =========================
HERO BRAND LINE (LUXURY)
========================= */

.hero-brand-line {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0.9;
}

/* =========================
HERO TITLE COLOR REFINEMENT
Safe override
========================= */

.hero-title,
.hero h1 {
  background: linear-gradient(
    90deg,
    #f1efe8 0%,
    #e6dcc3 30%,
    #f1efe8 55%,
    #d4a017 85%
  );

 background-size: 220% auto;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.55));
}

/* =========================
CART DRAWER LUXURY FIX
Safe override
========================= */

/* Hele cart */
.cart-drawer,
.cart-sidebar,
.cart-panel {
  background: linear-gradient(180deg, #0e1311, #0a0f0d);
  color: #fff;
}

/* X / remove button */
.cart-item-remove,
.cart-remove,
.cart-item button,
.cart-item-remove-btn {
  background: transparent !important;
  border: none !important;
  color: rgba(255,255,255,0.6) !important;
  font-size: 18px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.cart-item-remove:hover,
.cart-remove:hover,
.cart-item-remove-btn:hover {
  color: #f0d38a !important;
  transform: scale(1.1);
}

/* Quantity buttons */
.cart-qty button {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 999px;
}

/* Cart items spacing */
.cart-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Total section */
.cart-total {
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Checkout button */
.cart-checkout,
.cart button.checkout {
  background: linear-gradient(180deg, #f0d38a, #d4a017);
  color: #111;
  border: none;
}

/* =========================
MOBILE FIX (VERY IMPORTANT)
========================= */

@media (max-width: 768px) {
  .cart-drawer,
  .cart-sidebar,
  .cart-panel {
    background: linear-gradient(180deg, #0e1311, #0a0f0d) !important;
  }

  .cart-drawer *,
  .cart-sidebar *,
  .cart-panel * {
    background-color: transparent;
  }

  /* spesifikt hvite blokker */
  .cart-item,
  .cart-content,
  .cart-body {
    background: transparent !important;
  }
}

/* =========================
CART DRAWER LUXURY FIX
Safe override
========================= */

.cart-drawer,
.cart-sidebar,
.cart-panel {
  background: linear-gradient(180deg, #0e1311, #0a0f0d);
  color: #fff;
}

.cart-item-remove,
.cart-remove,
.cart-item button,
.cart-item-remove-btn {
  background: transparent !important;
  border: none !important;
  color: rgba(255,255,255,0.6) !important;
  font-size: 18px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.cart-item-remove:hover,
.cart-remove:hover,
.cart-item-remove-btn:hover {
  color: #f0d38a !important;
  transform: scale(1.1);
}

.cart-qty button {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 999px;
}

.cart-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cart-total {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cart-checkout,
.cart button.checkout {
  background: linear-gradient(180deg, #f0d38a, #d4a017);
  color: #111;
  border: none;
}

@media (max-width: 768px) {
  .cart-drawer,
  .cart-sidebar,
  .cart-panel {
    background: linear-gradient(180deg, #0e1311, #0a0f0d) !important;
  }

  .cart-drawer *,
  .cart-sidebar *,
  .cart-panel * {
    background-color: transparent;
  }

  .cart-item,
  .cart-content,
  .cart-body {
    background: transparent !important;
  }
}

/* =========================
MOBILE MENU DARK LUXURY FIX
Safe override
========================= */

@media (max-width: 768px) {
  .mobile-menu,
  .mobile-nav,
  .mobile-menu-panel,
  .mobile-nav-panel,
  .nav-menu,
  .nav-drawer,
  .menu-drawer,
  .menu-panel {
    background: linear-gradient(180deg, #0e1311, #0a0f0d) !important;
    color: #ffffff !important;
    border-left: 1px solid rgba(212, 160, 23, 0.12);
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.28);
  }

  .mobile-menu a,
  .mobile-nav a,
  .mobile-menu-panel a,
  .mobile-nav-panel a,
  .nav-menu a,
  .nav-drawer a,
  .menu-drawer a,
  .menu-panel a {
    color: rgba(255, 255, 255, 0.92) !important;
  }

  .mobile-menu .close-menu,
  .mobile-nav .close-menu,
  .mobile-menu-panel .close-menu,
  .mobile-nav-panel .close-menu,
  .nav-menu .close-menu,
  .nav-drawer .close-menu,
  .menu-drawer .close-menu,
  .menu-panel .close-menu,
  .mobile-menu .menu-close,
  .mobile-nav .menu-close,
  .mobile-menu-panel .menu-close,
  .mobile-nav-panel .menu-close,
  .nav-menu .menu-close,
  .nav-drawer .menu-close,
  .menu-drawer .menu-close,
  .menu-panel .menu-close {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.82) !important;
    border: none !important;
  }
}

.product-grid {
  gap: 32px;
}

.product-card {
  background: #0c0c0c;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  object-fit: cover;
}

.product-card-title {
  font-size: 14px;
  letter-spacing: 1px;
}

.product-card-price {
  color: #d4af37;
  font-weight: 500;
}

/* =========================
FOOTER - COMPACT DESKTOP FIX
========================= */

.footer {
  background: #0a0a0a;
  padding: 34px 0 18px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  width: min(92%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-brand h3 {
  font-size: 17px;
  letter-spacing: 1.4px;
  margin-bottom: 8px;
}

.footer-brand p {
  color: #aaa;
  font-size: 13px;
  line-height: 1.5;
  max-width: 220px;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links h4 {
  font-size: 11px;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
  color: #777;
  text-transform: uppercase;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 5px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-bottom {
  width: min(92%, 1180px);
  margin: 20px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.footer-bottom p {
  color: #666;
  font-size: 11px;
  margin-top: 10px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-icons img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .footer {
    padding: 30px 0 18px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand p {
    max-width: none;
  }
}

/* =========================
PRODUCT CARD — PREMIUM POLISH
========================= */

.product-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* IMAGE */
.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: #0a0a0a;
}

/* CONTENT */
.product-card h3 {
  font-size: 14px;
  font-weight: 500;
  color: #e5e5e5;
  padding: 16px 16px 6px;
  line-height: 1.4;
}

.product-card p {
  padding: 0 16px 18px;
  font-size: 14px;
  color: #d4af37;
  font-weight: 500;
}

/* GRID spacing */
.product-grid {
  gap: 28px;
}

/* =========================
FOOTER HARD OVERRIDE FIX
Place at very bottom of components.css
========================= */

footer.footer {
  background: #0a0a0a !important;
  padding: 28px 0 16px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

footer.footer .footer-grid {
  width: min(92%, 1180px) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(180px, 1.35fr) repeat(4, minmax(120px, 1fr)) !important;
  gap: 18px !important;
  align-items: start !important;
}

footer.footer .footer-brand,
footer.footer .footer-links {
  min-width: 0 !important;
}

footer.footer .footer-brand h3 {
  font-size: 16px !important;
  letter-spacing: 1.2px !important;
  margin: 0 0 6px !important;
}

footer.footer .footer-brand p {
  max-width: 220px !important;
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  color: #a7a7a7 !important;
}

footer.footer .footer-links {
  display: flex !important;
  flex-direction: column !important;
}

footer.footer .footer-links h4 {
  margin: 0 0 8px !important;
  font-size: 11px !important;
  letter-spacing: 1.1px !important;
  text-transform: uppercase !important;
  color: #777 !important;
}

footer.footer .footer-links a {
  display: block !important;
  margin: 0 0 5px !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
  color: #d0d0d0 !important;
}

footer.footer .footer-links a:hover {
  color: #d4af37 !important;
}

footer.footer .footer-bottom {
  width: min(92%, 1180px) !important;
  margin: 14px auto 0 !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  text-align: center !important;
}

footer.footer .payment-icons {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

footer.footer .payment-icons img {
  width: 28px !important;
  height: 28px !important;
  object-fit: contain !important;
  opacity: 0.85 !important;
}

footer.footer .footer-bottom p {
  margin: 8px 0 0 !important;
  font-size: 11px !important;
  color: #666 !important;
}

@media (max-width: 900px) {
  footer.footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px 22px !important;
  }

  footer.footer {
    padding: 24px 0 14px !important;
  }
}

@media (max-width: 640px) {
  footer.footer .footer-grid {
    grid-template-columns: 1fr !important;
  }

  footer.footer .footer-brand p {
    max-width: none !important;
  }
}

/* =========================
ATELIER HERO - LUXURY UPGRADE
========================= */

.atelier-hero {
  position: relative;
  overflow: hidden;
}

/* mørk gradient for depth */
.atelier-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 1;
}

/* subtle glow */
.atelier-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(212,175,55,0.12),
    transparent 60%
  );
  z-index: 1;
}

/* sørg for tekst over */
.shop-hero-content {
  position: relative;
  z-index: 2;
}

/* headline mer premium */
.shop-title {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.05;
  max-width: 520px;
}

/* tagline */
.atelier-hero-text {
  max-width: 420px;
  opacity: 0.85;
}

/* knapp mer luksus */
.btn-primary {
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  box-shadow: 0 10px 30px rgba(212,175,55,0.25);
  border: none;
}

/* =========================
COMPONENTS FINAL SAFE OVERRIDE
Paste only at very bottom
========================= */

/* GLOBAL BUTTON RHYTHM */
.btn {
  min-height: 46px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, #d4a017, #f5c542);
  color: #111;
  box-shadow: 0 12px 28px rgba(212, 160, 23, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f0c86d, #ffe09a);
  color: #111;
  box-shadow: 0 16px 34px rgba(212, 160, 23, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.btn-secondary:hover {
  background: #fff;
  color: #111;
}

.btn-outline {
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  color: #f0d38a;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #fff;
  border-color: rgba(212, 175, 55, 0.6);
}

/* NAVBAR */
.navbar {
  background: rgba(10, 14, 11, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navbar.nav-scrolled {
  background: rgba(10, 14, 11, 0.92);
  border-color: rgba(212, 175, 55, 0.18);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--accent-soft);
  opacity: 1;
}

.cart-btn,
.mobile-menu-btn {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-count {
  background: var(--accent);
  color: #111;
  box-shadow: 0 0 0 4px rgba(10, 14, 11, 0.62);
}

/* HERO CTA */
.hero-buttons .btn,
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
  min-width: 172px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* PRODUCT CARD */
.product-card,
.product-card-compact {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.product-card:hover,
.product-card-compact:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.22);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.product-card .product-card-media,
.product-card-compact .product-card-media {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(198, 167, 107, 0.14), transparent 45%),
    #121714;
}

.product-card img,
.product-card-compact img {
  transition: transform 0.45s ease, filter 0.3s ease;
}

.product-card:hover img,
.product-card-compact:hover img {
  transform: scale(1.035);
}

.product-badge {
  background: rgba(11, 15, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 18px 20px;
}

.product-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-title {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.product-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.6;
}

.product-price,
.product-card-price {
  color: var(--accent-soft);
  font-weight: 700;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.product-view-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.product-view-link:hover {
  color: var(--accent-soft);
}

.add-to-cart-btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(198, 167, 107, 0.26);
  background: linear-gradient(135deg, #d4a017, #f5c542);
  color: #111;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(212, 160, 23, 0.18);
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #f0c86d, #ffe09a);
  color: #111;
  box-shadow: 0 16px 30px rgba(212, 160, 23, 0.28);
}

/* PRODUCT PAGE */
.product-option-select {
  min-height: 50px;
  border-radius: 14px;
  background: rgba(10, 14, 11, 0.92);
}

.product-option-select:focus {
  border-color: rgba(198, 167, 107, 0.58);
  box-shadow: 0 0 0 4px rgba(198, 167, 107, 0.08);
}

.product-trust {
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.product-trust::before {
  content: "Why customers choose it";
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-item {
  font-size: 14px;
  line-height: 1.45;
}

/* STICKY CART */
#add-to-cart-btn,
#sticky-add-to-cart {
  border-radius: 999px;
  background: linear-gradient(135deg, #d4a017, #f5c542);
  color: #111;
  box-shadow: 0 12px 28px rgba(212, 160, 23, 0.24);
}

#add-to-cart-btn:hover,
#sticky-add-to-cart:hover {
  box-shadow: 0 16px 34px rgba(212, 160, 23, 0.32);
}

.sticky-cart-inner {
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid rgba(212, 160, 23, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

/* FILTERS */
.shop-filters {
  gap: 12px;
}

.filter-btn {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(212, 160, 23, 0.18);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 160, 23, 0.28);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.filter-btn.active {
  background: linear-gradient(180deg, rgba(212, 160, 23, 0.94), rgba(188, 141, 20, 0.94));
  color: #111;
  border-color: rgba(212, 160, 23, 0.96);
}

/* INSTAGRAM HOME */
.instagram-home-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.instagram-home-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.instagram-home-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 167, 107, 0.24);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.24);
}

.instagram-home-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.instagram-home-card:hover img {
  transform: scale(1.03);
}

.instagram-home-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* CATEGORY CARDS */
.category-card-premium {
  border-radius: 18px;
  overflow: hidden;
}

.category-card-premium img {
  height: 210px;
}

.category-card-premium .category-overlay {
  padding: 16px;
  gap: 4px;
}

.category-kicker {
  font-size: 10px;
}

.category-card-premium strong {
  font-size: 1rem;
  line-height: 1.15;
}

/* MOBILE MENU */
@media (max-width: 768px) {
  .mobile-menu,
  .mobile-nav,
  .mobile-menu-panel,
  .mobile-nav-panel,
  .nav-menu,
  .nav-drawer,
  .menu-drawer,
  .menu-panel {
    background: linear-gradient(180deg, #0e1311, #0a0f0d) !important;
    color: #ffffff !important;
    border-left: 1px solid rgba(212, 160, 23, 0.12);
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.28);
  }

  .mobile-menu a,
  .mobile-nav a,
  .mobile-menu-panel a,
  .mobile-nav-panel a,
  .nav-menu a,
  .nav-drawer a,
  .menu-drawer a,
  .menu-panel a {
    color: rgba(255, 255, 255, 0.92) !important;
  }
}

/* CART DRAWER */
.cart-drawer,
.cart-sidebar,
.cart-panel {
  background: linear-gradient(180deg, #0e1311, #0a0f0d);
  color: #fff;
}

.cart-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-total {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item-remove,
.cart-remove,
.cart-item-remove-btn {
  background: transparent !important;
  border: none !important;
  color: rgba(255,255,255,0.6) !important;
}

.cart-item-remove:hover,
.cart-remove:hover,
.cart-item-remove-btn:hover {
  color: #f0d38a !important;
}

.cart-checkout,
.cart button.checkout {
  background: linear-gradient(180deg, #f0d38a, #d4a017);
  color: #111;
  border: none;
}

/* FOOTER */
footer.footer {
  background: #0a0a0a !important;
  padding: 28px 0 16px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

footer.footer .footer-grid {
  width: min(92%, 1180px) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(180px, 1.35fr) repeat(4, minmax(120px, 1fr)) !important;
  gap: 18px !important;
  align-items: start !important;
}

footer.footer .footer-brand p {
  max-width: 220px !important;
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  color: #a7a7a7 !important;
}

footer.footer .footer-links h4 {
  margin: 0 0 8px !important;
  font-size: 11px !important;
  letter-spacing: 1.1px !important;
  text-transform: uppercase !important;
  color: #777 !important;
}

footer.footer .footer-links a {
  display: block !important;
  margin: 0 0 5px !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
  color: #d0d0d0 !important;
}

footer.footer .footer-links a:hover {
  color: #d4af37 !important;
}

footer.footer .footer-bottom {
  width: min(92%, 1180px) !important;
  margin: 14px auto 0 !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  text-align: center !important;
}

footer.footer .payment-icons {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

footer.footer .payment-icons img {
  width: 28px !important;
  height: 28px !important;
  object-fit: contain !important;
  opacity: 0.85 !important;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .product-grid,
  .featured-grid-home,
  .categories-grid,
  .instagram-home-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .navbar {
    grid-template-columns: 1fr auto;
    width: min(94%, 1240px);
    margin-top: 12px;
    padding: 10px 14px;
    min-height: 62px;
  }

  .nav-center {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  footer.footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px 22px !important;
  }
}

@media (max-width: 640px) {
  .hero-buttons {
    width: 100%;
    flex-direction: column;
  }

  .hero-buttons .btn,
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 320px;
  }

  .product-grid,
  .featured-grid-home,
  .categories-grid,
  .instagram-home-grid {
    grid-template-columns: 1fr;
  }

  footer.footer .footer-grid {
    grid-template-columns: 1fr !important;
  }

  footer.footer .footer-brand p {
    max-width: none !important;
  }
}

/* === ATELIER STYLE (ADD AT BOTTOM) === */

.atelier-card {
  background: transparent;
}

.atelier-link {
  text-decoration: none;
  color: inherit;
}

.atelier-media img {
  width: 100%;
  display: block;
}

.atelier-info {
  margin-top: 12px;
}

.atelier-title {
  font-weight: 500;
  letter-spacing: 0.04em;
}

.atelier-price {
  font-size: 0.9rem;
  opacity: 0.6;
}

/* =========================
ATELIER HEADER SAFE FIX
Paste at very bottom
========================= */

main {
  padding-top: 118px;
}

.atelier-hero,
.page-header,
.collection-header,
.shop-hero {
  overflow: visible;
}

.atelier-hero .shop-hero-content,
.atelier-hero .container,
.page-header .container,
.collection-header .container,
.shop-hero .container {
  padding-top: 28px;
}

.atelier-hero .shop-title,
.atelier-title,
.page-title,
.collection-title {
  line-height: 1.12 !important;
  padding-top: 6px;
  overflow: visible;
}

@media (max-width: 900px) {
  main {
    padding-top: 102px;
  }

  .atelier-hero .shop-hero-content,
  .atelier-hero .container,
  .page-header .container,
  .collection-header .container,
  .shop-hero .container {
    padding-top: 20px;
  }

  .atelier-hero .shop-title,
  .atelier-title,
  .page-title,
  .collection-title {
    line-height: 1.08 !important;
    padding-top: 4px;
  }
}