/* =========================================================
   CENTRAL & STORES — PRODUCTS PAGE
   PART 1: ROOT / RESET / APP SHELL / HEADER / SEARCH
========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --black: #111111;
  --black-soft: #1b1b1b;
  --gold: #e8bb43;
  --gold-dark: #b98510;
  --gold-light: #fff7df;
  --white: #ffffff;
  --text: #202020;
  --muted: #777777;
  --border: #e9e9e9;
  --page-bg: #f7f7f7;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: #eeeeee;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  padding-bottom: 88px;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   APP SHELL
========================================================= */

.app-shell {
  width: 100%;
  max-width: 1440px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
}

/* =========================================================
   PREMIUM HEADER
========================================================= */

.products-header {
  padding: 17px 16px 20px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% -10%, rgba(232, 187, 67, 0.18), transparent 34%),
    linear-gradient(135deg, #0b0b0b 0%, #1c1c1c 100%);
}

.top-header {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 10px;
  min-height: 62px;
}

.header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: transparent;
  color: var(--white);
}

.header-icon-btn:active {
  background: rgba(255, 255, 255, 0.08);
}

.header-icon-btn svg {
  width: 27px;
  height: 27px;
}

/* Brand */

.brand-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.brand-cart-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  border: 1.5px solid rgba(232, 187, 67, 0.75);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold);
}

.brand-cart-logo svg {
  width: 24px;
  height: 24px;
}

.brand-details {
  min-width: 0;
}

.brand-details h1 {
  overflow: hidden;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-details p {
  margin-top: 4px;
  color: #c9c9c9;
  font-size: 9px;
  font-weight: 500;
  white-space: nowrap;
}

/* Cart */

.header-cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.header-cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-cart-icon > svg {
  width: 28px;
  height: 28px;
}

.cart-badge {
  position: absolute;
  top: -9px;
  right: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border: 2px solid var(--black);
  border-radius: 50px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 800;
}

/* =========================================================
   SEARCH BOX
========================================================= */

.products-search-area {
  margin-top: 15px;
}

.products-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 49px;
  padding: 0 14px;
  border: 1px solid rgba(232, 187, 67, 0.55);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.products-search-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.products-search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
}

.products-search-box input::placeholder {
  color: #a4a4a4;
}

.search-clear-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: #eeeeee;
}

.search-clear-btn.show {
  display: inline-flex;
}

.search-clear-btn svg {
  width: 17px;
  height: 17px;
  }
/* =========================================================
   PRODUCTS HERO SECTION
========================================================= */

.products-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(232, 187, 67, 0.16), transparent 31%),
    linear-gradient(135deg, #171717 0%, #080808 100%);
  isolation: isolate;
}

.products-hero::before {
  position: absolute;
  z-index: 0;
  top: -120px;
  right: -135px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(232, 187, 67, 0.14);
  border-radius: 50%;
  content: "";
}

.products-hero::after {
  position: absolute;
  z-index: 0;
  right: 35px;
  bottom: -165px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(232, 187, 67, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-one {
  top: 44px;
  right: -60px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(232, 187, 67, 0.13);
}

.hero-glow-two {
  right: 105px;
  bottom: 24px;
  width: 95px;
  height: 95px;
  background: rgba(232, 187, 67, 0.05);
  filter: blur(20px);
}

.products-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  padding: 48px 24px 52px;
}

.products-eyebrow,
.section-eyebrow {
  display: block;
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.products-eyebrow {
  width: fit-content;
  margin-bottom: 15px;
  padding: 7px 10px;
  border: 1px solid rgba(232, 187, 67, 0.6);
  border-radius: 5px;
  background: rgba(232, 187, 67, 0.07);
  color: var(--gold);
}

.products-hero h2 {
  max-width: 330px;
  color: var(--white);
  font-size: clamp(34px, 9vw, 57px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.4px;
}

.products-hero p {
  max-width: 330px;
  margin-top: 17px;
  color: #d1d1d1;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
}

.hero-price-call {
  display: flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  max-width: 100%;
  margin-top: 23px;
  padding: 11px 13px;
  border: 1px solid rgba(232, 187, 67, 0.4);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: 8px;
  background: rgba(232, 187, 67, 0.11);
  color: var(--gold);
  flex: 0 0 auto;
}

.hero-call-icon svg {
  width: 18px;
  height: 18px;
}

.hero-price-call strong {
  display: block;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.hero-price-call span {
  display: block;
  margin-top: 2px;
  color: #cfcfcf;
  font-size: 8px;
  font-weight: 500;
}

.hero-shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-width: 145px;
  margin-top: 22px;
  padding: 13px 16px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-shop-btn:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.hero-shop-btn svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

/* =========================================================
   CATEGORY INTRO + SCROLL BUTTONS
========================================================= */

.category-intro {
  padding: 35px 16px 26px;
  background: var(--white);
}

.category-intro h2 {
  margin-top: 7px;
  color: var(--black);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.category-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 20px 1px 9px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-pill {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  background: var(--white);
  color: #555555;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: 0.2s ease;
}

.category-pill:hover,
.category-pill.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--gold);
}

/* =========================================================
   TABLET + DESKTOP HERO / CATEGORY
========================================================= */

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

  .products-hero-content {
    min-height: 520px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px clamp(40px, 7vw, 100px);
  }

  .products-hero h2 {
    max-width: 560px;
    font-size: clamp(48px, 6vw, 72px);
  }

  .products-hero p {
    max-width: 510px;
    font-size: 15px;
  }

  .products-eyebrow,
  .section-eyebrow {
    font-size: 11px;
  }

  .hero-price-call {
    padding: 14px 17px;
  }

  .hero-call-icon {
    width: 40px;
    height: 40px;
  }

  .hero-call-icon svg {
    width: 22px;
    height: 22px;
  }

  .hero-price-call strong {
    font-size: 13px;
  }

  .hero-price-call span {
    font-size: 10px;
  }

  .hero-shop-btn {
    padding: 15px 20px;
    font-size: 13px;
  }

  .category-intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 55px 30px 34px;
  }

  .category-intro h2 {
    font-size: 31px;
  }

  .category-scroll {
    gap: 13px;
    padding-top: 25px;
  }

  .category-pill {
    min-height: 47px;
    padding: 0 19px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .products-hero-content {
    min-height: 400px;
    padding: 39px 18px 43px;
  }

  .products-hero h2 {
    font-size: 32px;
  }

  .products-hero p {
    font-size: 11px;
  }

  .category-intro {
    padding-right: 14px;
    padding-left: 14px;
  }

  .category-pill {
    min-height: 39px;
    padding: 0 12px;
    font-size: 10px;
  }
             }
/* =========================================================
   PRODUCTS LIST SECTION
========================================================= */

.products-list-section {
  padding: 34px 16px 38px;
  background: var(--page-bg);
}

.products-list-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.products-list-heading h2 {
  margin-top: 6px;
  color: var(--black);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* Product count gold card */

.products-count-box {
  min-width: 69px;
  padding: 10px 8px;
  border: 1px solid #f0dda0;
  border-radius: 12px;
  background: var(--gold-light);
  text-align: center;
  flex: 0 0 auto;
}

.products-count-box strong {
  display: block;
  color: var(--black);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.products-count-box span {
  display: block;
  margin-top: 4px;
  color: var(--gold-dark);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.7px;
}

/* =========================================================
   PREMIUM PRODUCT GRID
   Mobile: 2 Columns
========================================================= */

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

/* =========================================================
   PRODUCT CARD
   products.js should generate this structure:
   .product-card
      .product-image-wrap
         img.product-image
         button.product-wishlist-btn
      .product-details
         span.product-category
         h3
         span.product-weight
         button.add-cart-btn
========================================================= */

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 13px 24px rgba(0, 0, 0, 0.1);
}

.product-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, #ffffff 0%, #f7f7f7 62%, #eeeeee 100%);
}

.product-image {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

/* Wishlist heart */

.product-wishlist-btn,
.wishlist-btn {
  position: absolute;
  z-index: 3;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #555555;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.08);
}

.product-wishlist-btn:hover,
.wishlist-btn:hover {
  color: #db3e4c;
}

.product-wishlist-btn.active,
.wishlist-btn.active {
  border-color: #ffd3d7;
  background: #fff1f2;
  color: #db3e4c;
}

.product-wishlist-btn svg,
.wishlist-btn svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}

/* Optional category badge */

.product-badge {
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 9px;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--black);
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Product card text */

.product-details {
  padding: 11px 10px 12px;
}

.product-category {
  display: block;
  overflow: hidden;
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.75px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-details h3 {
  display: -webkit-box;
  min-height: 34px;
  margin: 5px 0 0;
  overflow: hidden;
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-weight {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
}

/* Price intentionally hidden */

.product-price,
.product-old-price,
.product-price-row,
.price-row,
.price,
.old-price {
  display: none !important;
}

/* =========================================================
   ADD TO CART BUTTON
========================================================= */

.add-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 37px;
  margin-top: 10px;
  padding: 8px 7px;
  border-radius: 7px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.add-cart-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.add-cart-btn:active {
  transform: scale(0.97);
}

.add-cart-btn svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  stroke-width: 2.2;
}

.add-cart-btn:hover svg {
  color: var(--black);
}

.add-cart-btn.added {
  background: var(--gold);
  color: var(--black);
}

.add-cart-btn.added svg {
  color: var(--black);
}

/* =========================================================
   EMPTY SEARCH STATE
========================================================= */

.products-empty-state {
  display: none;
  grid-column: 1 / -1;
  padding: 43px 18px;
  border: 1px dashed #d8d8d8;
  border-radius: 14px;
  background: var(--white);
  text-align: center;
}

.products-empty-state.show {
  display: block;
}

.empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 13px;
  border-radius: 15px;
  background: var(--gold-light);
  color: var(--gold-dark);
}

.empty-icon svg {
  width: 27px;
  height: 27px;
}

.products-empty-state h3 {
  color: var(--black);
  font-size: 17px;
  font-weight: 800;
}

.products-empty-state p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.products-empty-state button {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 7px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

/* =========================================================
   TABLET / DESKTOP PRODUCT GRID
========================================================= */

@media (min-width: 600px) {
  .products-list-section {
    padding: 48px 30px;
  }

  .products-list-heading h2 {
    font-size: 29px;
  }

  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .product-details {
    padding: 14px;
  }

  .product-category {
    font-size: 10px;
  }

  .product-details h3 {
    min-height: 40px;
    font-size: 14px;
  }

  .product-weight {
    font-size: 10px;
  }

  .add-cart-btn {
    min-height: 42px;
    font-size: 11px;
  }
}

@media (min-width: 1000px) {
  .products-list-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 58px 40px;
  }

  .products-list-heading h2 {
    font-size: 34px;
  }

  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .product-card {
    border-radius: 16px;
  }

  .product-details h3 {
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .products-list-section {
    padding-right: 13px;
    padding-left: 13px;
  }

  .products-grid {
    gap: 9px;
  }

  .product-card {
    border-radius: 12px;
  }

  .product-image {
    padding: 7px;
  }

  .product-details {
    padding: 9px 8px 10px;
  }

  .product-details h3 {
    min-height: 31px;
    font-size: 11px;
  }

  .product-category {
    font-size: 7px;
  }

  .product-weight {
    font-size: 8px;
  }

  .add-cart-btn {
    min-height: 34px;
    margin-top: 8px;
    border-radius: 6px;
    font-size: 9px;
  }

  .add-cart-btn svg {
    width: 14px;
    height: 14px;
  }
  }
/* =========================================================
   ORDER CONFIRMATION SECTION
========================================================= */

.order-confirmation-section {
  padding: 0 16px 36px;
  background: var(--page-bg);
}

.order-confirmation-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 21px 17px;
  border: 1px solid #eadcae;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(232, 187, 67, 0.08), transparent 55%),
    var(--white);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.04);
}

.confirmation-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  border-radius: 11px;
  background: var(--black);
  color: var(--gold);
}

.confirmation-icon svg {
  width: 23px;
  height: 23px;
}

.confirmation-content {
  min-width: 0;
}

.confirmation-content .section-eyebrow {
  margin-bottom: 5px;
}

.confirmation-content h2 {
  color: var(--black);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.confirmation-content p {
  margin-top: 7px;
  color: #666666;
  font-size: 10px;
  line-height: 1.65;
}

/* =========================================================
   CONTACT STORE SECTION
========================================================= */

.contact-store-section {
  padding: 39px 20px;
  text-align: center;
  background: #fcfaf4;
}

.contact-store-section .section-eyebrow {
  color: var(--gold-dark);
}

.contact-store-section h2 {
  margin-top: 7px;
  color: var(--black);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.contact-store-section > p {
  max-width: 520px;
  margin: 13px auto 22px;
  color: #656565;
  font-size: 12px;
  line-height: 1.75;
}

.contact-store-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.contact-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 128px;
  min-height: 45px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-action-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.call-btn {
  background: var(--black);
  color: var(--white);
}

.whatsapp-btn {
  background: var(--gold);
  color: var(--black);
}

.contact-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-action-icon svg {
  width: 19px;
  height: 19px;
}

.call-btn .contact-action-icon {
  color: var(--gold);
}

/* =========================================================
   PRODUCTS FOOTER
========================================================= */

.products-footer {
  padding: 35px 20px 105px;
  background: var(--black);
  color: var(--white);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(232, 187, 67, 0.55);
  border-radius: 11px;
  color: var(--gold);
}

.footer-logo svg {
  width: 23px;
  height: 23px;
}

.footer-brand-row h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.footer-brand-row p {
  margin-top: 3px;
  color: #bdbdbd;
  font-size: 9px;
  font-weight: 500;
}

.footer-description {
  max-width: 420px;
  margin-top: 19px;
  color: #d0d0d0;
  font-size: 11px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 37px;
  padding: 0 12px;
  border: 1px solid rgba(232, 187, 67, 0.35);
  border-radius: 7px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
}

.footer-links svg {
  width: 17px;
  height: 17px;
}

.footer-copy {
  margin-top: 25px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8e8e8e;
  font-size: 9px;
}

/* =========================================================
   MOBILE BOTTOM NAVIGATION
========================================================= */

.bottom-nav {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  min-height: 74px;
  padding: 7px 4px calc(7px + env(safe-area-inset-bottom));
  border-top: 1px solid #e9e9e9;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -7px 22px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  color: #777777;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}

.bottom-nav-item > svg {
  width: 23px;
  height: 23px;
}

.bottom-nav-item.active {
  color: var(--gold-dark);
}

.bottom-cart-link {
  position: relative;
}

.bottom-cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bottom-cart-icon > svg {
  width: 23px;
  height: 23px;
}

.bottom-cart-icon b {
  position: absolute;
  top: -10px;
  right: -13px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border: 2px solid var(--white);
  border-radius: 50px;
  background: var(--gold);
  color: var(--black);
  font-size: 8px;
  font-weight: 800;
}

/* =========================================================
   TABLET / DESKTOP FOR PART 4
========================================================= */

@media (min-width: 768px) {
  .order-confirmation-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 52px;
  }

  .order-confirmation-card {
    gap: 20px;
    padding: 28px;
  }

  .confirmation-icon {
    flex-basis: 55px;
    width: 55px;
    height: 55px;
  }

  .confirmation-icon svg {
    width: 28px;
    height: 28px;
  }

  .confirmation-content h2 {
    font-size: 23px;
  }

  .confirmation-content p {
    max-width: 680px;
    font-size: 12px;
  }

  .contact-store-section {
    padding: 60px 30px;
  }

  .contact-store-section h2 {
    font-size: 32px;
  }

  .contact-store-section > p {
    font-size: 14px;
  }

  .contact-action-btn {
    min-width: 155px;
    min-height: 51px;
    font-size: 12px;
  }

  .products-footer {
    padding: 45px max(30px, calc((100% - 1140px) / 2)) 55px;
  }

  .footer-brand-row h3 {
    font-size: 20px;
  }

  .footer-brand-row p {
    font-size: 11px;
  }

  .footer-description {
    font-size: 13px;
  }

  .footer-links a {
    min-height: 42px;
    font-size: 11px;
  }
}

@media (min-width: 1000px) {
  body {
    padding-bottom: 0;
  }

  .bottom-nav {
    display: none;
  }

  .products-footer {
    padding-bottom: 55px;
  }
}

@media (max-width: 380px) {
  .order-confirmation-section {
    padding-right: 13px;
    padding-left: 13px;
  }

  .order-confirmation-card {
    gap: 10px;
    padding: 16px 13px;
  }

  .confirmation-icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .confirmation-icon svg {
    width: 19px;
    height: 19px;
  }

  .confirmation-content h2 {
    font-size: 14px;
  }

  .confirmation-content p {
    font-size: 9px;
  }

  .contact-store-section {
    padding: 32px 14px;
  }

  .contact-store-section h2 {
    font-size: 21px;
  }

  .contact-store-section > p {
    font-size: 11px;
  }

  .contact-store-actions {
    gap: 7px;
  }

  .contact-action-btn {
    min-width: 0;
    flex: 1;
    min-height: 40px;
    padding: 0 8px;
    font-size: 9px;
  }

  .products-footer {
    padding: 28px 16px 96px;
  }
    }
/* =========================================================
   SIDE MENU
========================================================= */

.menu-overlay {
  position: fixed;
  z-index: 150;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.62);
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.menu-overlay.show {
  visibility: visible;
  opacity: 1;
}

.side-menu {
  position: fixed;
  z-index: 160;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(330px, 88vw);
  padding: 20px 16px;
  overflow-y: auto;
  background: var(--white);
  box-shadow: 10px 0 32px rgba(0, 0, 0, 0.2);
  transform: translateX(-105%);
  transition: transform 0.3s ease;
}

.side-menu.open {
  transform: translateX(0);
}

.side-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--border);
}

.side-menu-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.side-menu-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--black);
  color: var(--gold);
}

.side-menu-logo svg {
  width: 23px;
  height: 23px;
}

.side-menu-brand strong {
  display: block;
  overflow: hidden;
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.side-menu-brand span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
}

.side-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f3f3f3;
  color: var(--black);
}

.side-menu-close svg {
  width: 20px;
  height: 20px;
}

.side-menu-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 19px 0;
}

.side-menu-links a {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 47px;
  padding: 0 12px;
  border-radius: 9px;
  color: #343434;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.side-menu-links a svg {
  width: 20px;
  height: 20px;
  color: var(--gold-dark);
}

.side-menu-links a:hover,
.side-menu-links a.active {
  background: var(--gold-light);
  color: var(--gold-dark);
}

.side-menu-contact {
  margin-top: 7px;
  padding: 16px;
  border-radius: 12px;
  background: var(--black);
}

.side-menu-contact p {
  margin-bottom: 9px;
  color: #cfcfcf;
  font-size: 10px;
}

.side-menu-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.side-menu-contact svg {
  width: 18px;
  height: 18px;
}

/* =========================================================
   HEADER RESPONSIVE POLISH
========================================================= */

@media (min-width: 768px) {
  .products-header {
    padding: 21px clamp(30px, 5vw, 80px) 25px;
  }

  .top-header {
    grid-template-columns: 50px 1fr 50px;
    min-height: 74px;
  }

  .header-icon-btn {
    width: 50px;
    height: 50px;
  }

  .header-icon-btn svg {
    width: 31px;
    height: 31px;
  }

  .brand-cart-logo {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
    border-radius: 13px;
  }

  .brand-cart-logo svg {
    width: 29px;
    height: 29px;
  }

  .brand-details h1 {
    font-size: 20px;
  }

  .brand-details p {
    font-size: 11px;
  }

  .header-cart-link {
    width: 50px;
    height: 50px;
  }

  .header-cart-icon > svg {
    width: 33px;
    height: 33px;
  }

  .cart-badge {
    min-width: 21px;
    height: 21px;
    font-size: 10px;
  }

  .products-search-area {
    max-width: 920px;
    margin: 18px auto 0;
  }

  .products-search-box {
    min-height: 56px;
    padding: 0 17px;
    border-radius: 12px;
  }

  .products-search-icon {
    width: 25px;
    height: 25px;
  }

  .products-search-box input {
    font-size: 14px;
  }
}

/* =========================================================
   WIDE SCREEN APP SHELL
========================================================= */

@media (min-width: 1440px) {
  .app-shell {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  }
}

/* =========================================================
   TOUCH / ACCESSIBILITY
========================================================= */

@media (hover: none) {
  .product-card:hover {
    transform: none;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.05);
  }

  .product-card:hover .product-image {
    transform: none;
  }

  .hero-shop-btn:hover,
  .contact-action-btn:hover {
    transform: none;
  }
}

/* =========================================================
   VERY SMALL MOBILE FINAL FIX
========================================================= */

@media (max-width: 340px) {
  .brand-details h1 {
    font-size: 14px;
  }

  .brand-details p {
    font-size: 8px;
  }

  .brand-cart-logo {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .brand-cart-logo svg {
    width: 21px;
    height: 21px;
  }

  .products-search-box input {
    font-size: 11px;
  }

  .bottom-nav-item {
    font-size: 8px;
  }

  .bottom-nav-item > svg,
  .bottom-cart-icon > svg {
    width: 21px;
    height: 21px;
  }
  }
/* PRODUCT IMAGE BOX FIX */
.product-image,
.product-image-wrap,
.premium-product-image {
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Actual image always stay inside card */
.product-image img,
.product-image-wrap img,
.premium-product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain; /* packet full-a visible */
  object-position: center;
  padding: 10px;
}

/* If image link fails, alt text also box-kulla irukkum */
.product-image img:not([src]),
.product-image-wrap img:not([src]),
.premium-product-image img:not([src]) {
  display: none;
}
.search-results{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    margin-top:10px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 18px 45px rgba(0,0,0,.18);
    overflow:hidden;
    display:none;
    z-index:9999;
    max-height:420px;
    overflow-y:auto;
}

.search-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 16px;
    cursor:pointer;
    transition:.25s;
    border-bottom:1px solid #f1f1f1;
}

.search-item:hover{
    background:#fff9ec;
}

.search-item img{
    width:58px;
    height:58px;
    object-fit:contain;
    border-radius:10px;
    background:#fff;
}

.search-info{
    flex:1;
}

.search-info h4{
    font-size:15px;
    margin:0;
    color:#111;
}

.search-info p{
    margin:4px 0 0;
    font-size:12px;
    color:#777;
}

.search-empty{
    padding:18px;
    text-align:center;
    color:#888;
}
.products-search-box{
    position:relative;
}
.search-results{
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    width:100%;
    background:#ffffff;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    overflow:hidden;
    display:none;
    z-index:9999;
    max-height:350px;
    overflow-y:auto;
}

.search-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px;
    border-bottom:1px solid #eee;
    cursor:pointer;
    background:#fff;
}

.search-item:hover{
    background:#f8f8f8;
}

.search-item strong{
    color:#111;
    display:block;
}

.search-item small{
    color:#777;
}

.search-empty{
    padding:16px;
    text-align:center;
    color:#888;
}
/* Remove blue tap highlight on mobile */

*{
    -webkit-tap-highlight-color: transparent;
}

a,
button,
input,
textarea,
select,
label{
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus{
    outline: none;
    box-shadow: none;
}

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

img{
    -webkit-user-drag: none;
    user-select: none;
}
