:root {
  --red: #b52b34;
  --deep-red: #7f1d25;
  --dark-red: #5b2025;

  --rose: #f3d9d7;
  --soft-rose: #faece9;

  --cream: #fff9f3;
  --warm-white: #fffdf9;

  --gold: #c89a58;

  --ink: #4a292b;
  --muted: #7d6364;

  --line: rgba(127, 29, 37, 0.13);

  --shadow:
    0 12px 35px rgba(91, 32, 37, 0.09);
}


/* =========================
   BASIC
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;

  padding-bottom: 64px;

  color: var(--ink);
  background: var(--cream);

  font-family: "DM Sans", sans-serif;

  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;

  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 32px));

  margin: 0 auto;
}


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

.site-header {
  position: sticky;

  top: 0;

  z-index: 100;

  background: rgba(255, 249, 243, 0.96);

  border-bottom: 1px solid var(--line);

  backdrop-filter: blur(10px);
}

.navigation {
  display: flex;

  align-items: center;

  justify-content: space-between;

  min-height: 70px;

  gap: 15px;
}

.brand {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  flex-shrink: 0;
}

.brand-mark {
  display: grid;

  place-items: center;

  width: 36px;

  height: 36px;

  color: var(--warm-white);

  background: var(--deep-red);

  border-radius: 50%;

  font-family: "Playfair Display", serif;

  font-size: 1.2rem;
}

.brand-name {
  color: var(--deep-red);

  font-size: 0.68rem;

  font-weight: 600;

  letter-spacing: 0.08em;
}

.brand-name strong {
  color: var(--red);
}

.nav-links {
  display: flex;

  align-items: center;

  gap: 12px;

  color: var(--muted);

  font-size: 0.68rem;

  font-weight: 600;

  white-space: nowrap;
}

.nav-links a {
  position: relative;

  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;

  right: 0;

  bottom: 2px;

  left: 0;

  height: 2px;

  content: "";

  background: var(--red);

  transform: scaleX(0);

  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--deep-red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}


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

.search-section {
  padding: 16px 0;

  background: var(--cream);

  border-bottom: 1px solid var(--line);
}

.search-form {
  display: flex;

  align-items: center;

  width: min(700px, 100%);

  margin: 0 auto;

  padding: 6px;

  background: var(--warm-white);

  border: 1px solid rgba(127, 29, 37, 0.17);

  border-radius: 999px;

  box-shadow:
    0 7px 24px rgba(91, 32, 37, 0.07);

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.search-form:focus-within {
  border-color: rgba(181, 43, 52, 0.5);

  box-shadow:
    0 8px 28px rgba(91, 32, 37, 0.09),
    0 0 0 3px rgba(181, 43, 52, 0.05);
}

.search-input {
  flex: 1;

  width: 100%;

  min-width: 0;

  padding: 12px 18px;

  color: var(--ink);

  background: transparent;

  border: none;

  outline: none;

  font-family: "DM Sans", sans-serif;

  font-size: 0.88rem;
}

.search-input::placeholder {
  color: #9f7d7f;
}

.search-button {
  flex-shrink: 0;

  min-height: 42px;

  padding: 10px 23px;

  color: var(--warm-white);

  background: var(--red);

  border: none;

  border-radius: 999px;

  font-family: "DM Sans", sans-serif;

  font-size: 0.78rem;

  font-weight: 700;

  cursor: pointer;

  transition:
    background 180ms ease,
    transform 180ms ease;
}

.search-button:hover {
  background: var(--deep-red);

  transform: translateY(-1px);
}

.search-button:active {
  transform: scale(0.98);
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;

  display: flex;

  min-height: 590px;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #f4dcd9 0%,
      #faece8 55%,
      #fff5ec 100%
    );

  isolation: isolate;
}

.hero::before {
  position: absolute;

  inset: 0;

  z-index: -1;

  content: "";

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(181, 43, 52, 0.12),
      transparent 27%
    ),
    radial-gradient(
      circle at 75% 85%,
      rgba(200, 154, 88, 0.16),
      transparent 30%
    );
}

.hero-content {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 70px 0 115px;
}

.eyebrow,
.section-eyebrow {
  margin: 0 0 18px;

  color: var(--red);

  font-size: 0.7rem;

  font-weight: 700;

  letter-spacing: 0.2em;

  text-transform: uppercase;
}

h1 {
  max-width: 720px;

  margin: 0;

  color: var(--dark-red);

  font-family: "Playfair Display", serif;

  font-size: clamp(3.3rem, 15vw, 7.7rem);

  font-weight: 700;

  letter-spacing: -0.055em;

  line-height: 0.92;
}

h1 span {
  display: block;

  color: var(--red);
}

.tagline {
  margin: 30px 0 0;

  color: var(--deep-red);

  font-size: clamp(1.2rem, 5vw, 2rem);

  font-weight: 700;

  letter-spacing: -0.025em;
}

.supporting-line {
  max-width: 480px;

  margin: 14px 0 0;

  color: var(--muted);

  font-size: 0.96rem;

  line-height: 1.7;
}

.hero-link {
  display: inline-flex;

  align-items: center;

  width: fit-content;

  gap: 14px;

  margin-top: 32px;

  padding: 13px 21px;

  color: var(--warm-white);

  background: var(--red);

  border-radius: 999px;

  font-size: 0.76rem;

  font-weight: 700;

  letter-spacing: 0.07em;

  text-transform: uppercase;

  transition:
    background 180ms ease,
    transform 180ms ease;
}

.hero-link:hover {
  background: var(--deep-red);

  transform: translateY(-2px);
}

.hero-link span {
  font-size: 1.1rem;
}

.hero-glow {
  position: absolute;

  z-index: -1;

  border: 1px solid rgba(127, 29, 37, 0.12);

  border-radius: 50%;
}

.hero-glow-one {
  top: 18%;

  right: -20%;

  width: 340px;

  height: 340px;
}

.hero-glow-two {
  right: 8%;

  bottom: -32%;

  width: 430px;

  height: 430px;
}

.hero-detail {
  position: absolute;

  right: 18px;

  bottom: 28px;

  display: flex;

  align-items: center;

  gap: 10px;

  color: var(--deep-red);

  font-size: 0.6rem;

  font-weight: 700;

  letter-spacing: 0.18em;

  writing-mode: vertical-rl;
}

.detail-line {
  width: 1px;

  height: 60px;

  background: var(--gold);
}


/* =========================
   WELCOME STRIP
========================= */

.welcome-strip {
  color: var(--cream);

  background: var(--deep-red);
}

.welcome-content {
  display: flex;

  flex-direction: column;

  justify-content: center;

  min-height: 110px;

  gap: 12px;

  padding: 20px 0;
}

.welcome-content p {
  margin: 0;

  font-size: 0.72rem;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.welcome-rule {
  width: 32px;

  height: 1px;

  background: rgba(255, 249, 243, 0.45);
}


/* =========================
   SECTIONS
========================= */

.categories-section,
.featured-products-section,
.contact-section {
  padding: 72px 0;
}

.section-heading {
  max-width: 650px;

  margin-bottom: 32px;
}

.section-heading h2,
.contact-content h2 {
  margin: 0 0 14px;

  color: var(--deep-red);

  font-family: "Playfair Display", serif;

  font-size: clamp(2rem, 8vw, 3.3rem);

  line-height: 1.06;
}

.section-heading > p:last-child,
.contact-content > div > p {
  color: var(--muted);

  line-height: 1.7;
}


/* =========================
   CATEGORIES
========================= */

.categories-section {
  background: var(--cream);
}

.category-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 14px;
}

.category-card {
  display: block;

  overflow: hidden;

  color: inherit;

  background: var(--warm-white);

  border: 1px solid var(--line);

  border-radius: 18px;

  box-shadow: var(--shadow);

  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.category-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 38px rgba(91, 32, 37, 0.13);
}

.category-placeholder,
.category-image {
  width: 100%;

  height: 105px;
}

.category-image {
  object-fit: cover;
}

.category-placeholder {
  display: grid;

  place-items: center;

  color: var(--warm-white);

  background:
    linear-gradient(
      135deg,
      var(--red),
      var(--deep-red)
    );

  font-family: "Playfair Display", serif;

  font-size: 2.8rem;

  font-weight: 700;
}

.category-card-content {
  padding: 16px;
}

.category-card-content h3 {
  margin: 0;

  color: var(--deep-red);

  font-family: "Playfair Display", serif;

  font-size: 1.05rem;
}

.category-card-content p {
  display: none;
}


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

.featured-products-section {
  background: var(--soft-rose);
}

.product-grid {
  display: grid;

  grid-template-columns: 1fr;

  gap: 20px;
}

.product-card {
  overflow: hidden;

  background: var(--warm-white);

  border: 1px solid var(--line);

  border-radius: 22px;

  box-shadow: var(--shadow);
}

.product-image-wrapper {
  display: grid;

  place-items: center;

  width: 100%;

  height: 235px;

  background: #f8ece9;
}

.product-image {
  width: 100%;

  height: 100%;

  padding: 15px;

  object-fit: contain;
}

.product-image-placeholder {
  display: grid;

  place-items: center;

  width: 100%;

  height: 100%;

  color: var(--muted);

  background:
    linear-gradient(
      135deg,
      #f4d8d5,
      #faeeeb
    );

  font-size: 0.76rem;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.product-card-content {
  padding: 22px;
}

.product-brand {
  margin: 0 0 7px;

  color: var(--red);

  font-size: 0.7rem;

  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;

  color: var(--dark-red);

  font-family: "Playfair Display", serif;

  font-size: 1.45rem;
}

.product-category {
  margin: 7px 0 0;

  color: var(--muted);

  font-size: 0.82rem;
}

.product-price {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-top: 20px;

  color: var(--deep-red);

  font-size: 1rem;

  font-weight: 700;
}

.offer-price {
  color: var(--red);

  font-size: 1.2rem;
}

.original-price {
  color: var(--muted);

  font-size: 0.85rem;

  text-decoration: line-through;
}

.stock-status {
  display: inline-flex;

  margin: 15px 0 18px;

  padding: 6px 11px;

  border-radius: 999px;

  font-size: 0.7rem;

  font-weight: 700;
}

.stock-in_stock {
  color: #7d252c;

  background: #f4dad8;
}

.stock-limited_stock {
  color: #8c6123;

  background: #f7e8c8;
}

.stock-out_of_stock {
  color: #79595b;

  background: #ece2e2;
}

.product-call-button {
  display: flex;

  align-items: center;

  justify-content: center;

  min-height: 48px;

  padding: 12px 18px;

  color: var(--warm-white);

  background: var(--red);

  border-radius: 12px;

  font-size: 0.82rem;

  font-weight: 700;

  transition:
    transform 180ms ease,
    background 180ms ease;
}

.product-call-button:hover {
  background: var(--deep-red);

  transform: translateY(-2px);
}


/* =========================
   CONTACT
========================= */

.contact-section {
  background: var(--warm-white);
}

.contact-content {
  display: grid;

  gap: 30px;

  padding: 32px 24px;

  background:
    linear-gradient(
      145deg,
      #fae5e2,
      #fff9f3
    );

  border: 1px solid var(--line);

  border-radius: 24px;
}

.store-address {
  margin-top: 22px;

  color: var(--ink) !important;

  font-weight: 600;
}

.store-phone {
  color: var(--red) !important;

  font-size: 1.2rem;

  font-weight: 700;
}

.contact-actions {
  display: grid;

  gap: 12px;
}

.contact-button {
  display: flex;

  align-items: center;

  justify-content: center;

  min-height: 50px;

  padding: 13px 20px;

  color: var(--warm-white);

  background: var(--red);

  border-radius: 12px;

  font-weight: 700;
}

.contact-button.secondary {
  color: var(--deep-red);

  background: var(--cream);

  border: 1px solid var(--red);
}


/* =========================
   MOBILE CALL BAR
========================= */

.mobile-contact-bar {
  position: fixed;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 300;

  display: grid;

  grid-template-columns: 1fr 1fr;

  min-height: 62px;

  background: var(--warm-white);

  border-top: 1px solid var(--line);

  box-shadow:
    0 -8px 24px rgba(91, 32, 37, 0.1);
}

.mobile-contact-bar a {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 7px;

  font-size: 0.82rem;

  font-weight: 700;
}

.mobile-contact-bar a:first-child {
  color: var(--warm-white);

  background: var(--red);
}

.mobile-contact-bar a:last-child {
  color: var(--deep-red);

  background: var(--cream);
}


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

.site-footer {
  color: rgba(255, 249, 243, 0.72);

  background: var(--deep-red);
}

.footer-content {
  display: flex;

  flex-direction: column;

  gap: 8px;

  padding: 25px 0;

  font-size: 0.7rem;

  letter-spacing: 0.05em;
}

.footer-content p {
  margin: 0;
}


/* =========================
   MOBILE SEARCH
========================= */

@media (max-width: 639px) {

  .search-section {
    padding: 12px 0;
  }

  .search-form {
    padding: 5px;
  }

  .search-input {
    padding: 11px 13px;

    font-size: 0.78rem;
  }

  .search-button {
    min-height: 39px;

    padding: 9px 15px;

    font-size: 0.72rem;
  }
}


/* =========================
   TABLET
========================= */

@media (min-width: 640px) {

  body {
    padding-bottom: 0;
  }

  .container {
    width: min(1120px, calc(100% - 48px));
  }

  .brand-name {
    font-size: 0.76rem;
  }

  .nav-links {
    gap: 25px;

    font-size: 0.8rem;
  }

  .hero {
    min-height: 630px;
  }

  .hero-content {
    padding: 85px 0 120px;
  }

  .welcome-content {
    flex-direction: row;

    align-items: center;

    justify-content: space-between;

    min-height: 96px;
  }

  .welcome-rule {
    width: 1px;

    height: 27px;
  }

  .category-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 20px;
  }

  .category-placeholder,
  .category-image {
    height: 135px;
  }

  .category-card-content p {
    display: block;

    margin: 9px 0 0;

    color: var(--muted);

    font-size: 0.78rem;

    line-height: 1.5;
  }

  .product-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .contact-content {
    grid-template-columns:
      1.4fr 0.8fr;

    align-items: center;

    padding: 44px;
  }

  .mobile-contact-bar {
    display: none;
  }

  .footer-content {
    flex-direction: row;

    justify-content: space-between;
  }
}


/* =========================
   DESKTOP
========================= */

@media (min-width: 900px) {

  .navigation {
    min-height: 82px;
  }

  .category-grid {
    grid-template-columns:
      repeat(4, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns:
      repeat(4, minmax(0, 1fr));
  }

  .categories-section,
  .featured-products-section,
  .contact-section {
    padding: 95px 0;
  }

  .hero-detail {
    right: max(
      24px,
      calc((100vw - 1120px) / 2)
    );

    bottom: 44px;
  }
} 
/* =========================
   PRODUCT DETAIL
========================= */

.product-detail-section {
  padding: 45px 0 80px;

  background: var(--cream);
}

.back-link {
  display: inline-flex;

  margin-bottom: 28px;

  color: var(--red);

  font-size: 0.82rem;
  font-weight: 700;
}

.back-link:hover {
  color: var(--deep-red);
}

.product-detail-grid {
  display: grid;

  gap: 35px;
}

.product-main-image {
  display: grid;

  place-items: center;

  min-height: 320px;

  overflow: hidden;

  background: var(--warm-white);

  border: 1px solid var(--line);
  border-radius: 24px;

  box-shadow: var(--shadow);
}

.product-main-image img {
  width: 100%;
  height: 100%;

  max-height: 500px;

  padding: 25px;

  object-fit: contain;
}

.product-detail-placeholder {
  display: grid;

  place-items: center;

  width: 100%;
  min-height: 320px;

  color: var(--muted);

  background:
    linear-gradient(
      135deg,
      #f4d8d5,
      #faeeeb
    );

  font-size: 0.8rem;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-gallery {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 10px;

  margin-top: 12px;
}

.gallery-image {
  overflow: hidden;

  background: var(--warm-white);

  border: 1px solid var(--line);
  border-radius: 12px;
}

.gallery-image img {
  width: 100%;
  height: 85px;

  padding: 6px;

  object-fit: contain;
}

.product-detail-info {
  align-self: center;
}

.product-detail-title {
  max-width: none;

  margin: 6px 0 8px;

  color: var(--dark-red);

  font-family: "Playfair Display", serif;

  font-size: clamp(2.2rem, 8vw, 4rem);

  letter-spacing: -0.035em;
  line-height: 1.05;
}

.product-model,
.product-location {
  margin: 7px 0;

  color: var(--muted);

  font-size: 0.9rem;
}

.product-detail-price {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 25px;

  color: var(--deep-red);

  font-size: 1.2rem;
  font-weight: 700;
}

.detail-offer-price {
  color: var(--red);

  font-size: 1.6rem;
}

.detail-original-price {
  color: var(--muted);

  font-size: 1rem;

  text-decoration: line-through;
}

.product-description {
  margin-top: 25px;

  padding-top: 22px;

  border-top: 1px solid var(--line);
}

.product-description h2 {
  margin: 0 0 10px;

  color: var(--deep-red);

  font-family: "Playfair Display", serif;

  font-size: 1.5rem;
}

.product-description p {
  margin: 0;

  color: var(--muted);

  line-height: 1.75;
}

.product-detail-actions {
  display: grid;

  grid-template-columns: 1fr;

  gap: 10px;

  margin-top: 28px;
}

.detail-call-button,
.detail-whatsapp-button {
  display: flex;

  align-items: center;
  justify-content: center;

  min-height: 50px;

  padding: 13px 20px;

  border-radius: 12px;

  font-weight: 700;
}

.detail-call-button {
  color: var(--warm-white);

  background: var(--red);
}

.detail-call-button:hover {
  background: var(--deep-red);
}

.detail-whatsapp-button {
  color: var(--deep-red);

  background: var(--warm-white);

  border: 1px solid var(--red);
}

.specifications-section {
  margin-top: 70px;
}

.specifications-list {
  overflow: hidden;

  background: var(--warm-white);

  border: 1px solid var(--line);
  border-radius: 18px;

  box-shadow: var(--shadow);
}

.specification-row {
  display: grid;

  grid-template-columns:
    minmax(110px, 0.8fr)
    minmax(0, 1.2fr);

  gap: 18px;

  padding: 16px 18px;

  border-bottom: 1px solid var(--line);
}

.specification-row:last-child {
  border-bottom: none;
}

.specification-name {
  color: var(--deep-red);

  font-size: 0.83rem;
  font-weight: 700;
}

.specification-value {
  color: var(--muted);

  font-size: 0.83rem;
}


/* =========================
   PRODUCT DETAIL TABLET
========================= */

@media (min-width: 640px) {

  .product-detail-actions {
    grid-template-columns: 1fr 1fr;
  }

  .product-main-image {
    min-height: 420px;
  }
}


/* =========================
   PRODUCT DETAIL DESKTOP
========================= */

@media (min-width: 900px) {

  .product-detail-section {
    padding: 60px 0 100px;
  }

  .product-detail-grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, 0.9fr);

    gap: 65px;

    align-items: start;
  }
}
.product-details-button {
  display: flex;

  align-items: center;
  justify-content: center;

  min-height: 46px;

  margin-bottom: 10px;

  padding: 11px 18px;

  color: var(--deep-red);

  background: var(--cream);

  border: 1px solid var(--red);
  border-radius: 12px;

  font-size: 0.82rem;
  font-weight: 700;
}

.product-details-button:hover {
  background: var(--soft-rose);
}
/* FULL SUBCATEGORY IMAGE FIX */
.category-card .category-image {
    width: 100%;
    height: auto !important;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    display: block;
    background: #fdf6ef;
}

/* ===== LATEST OFFERS ===== */

.offers-section {
  padding: 70px 0;
  background: #fffaf7;
  overflow: hidden;
}

.offers-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 340px);
  gap: 22px;
  overflow-x: auto;
  padding: 8px 4px 20px;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.offer-card {
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid rgba(137, 30, 43, 0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(90, 35, 35, 0.08);
}

.offer-image-wrap {
  aspect-ratio: 4 / 5;
  background: #fff7f3;
  overflow: hidden;
}

.offer-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.offer-card-content {
  padding: 18px;
}

.offer-card-content h3 {
  margin: 0 0 8px;
  color: #8d1d27;
  font-size: 1.08rem;
}

.offer-card-content p {
  margin: 0;
  color: #5f5050;
  line-height: 1.6;
  font-size: 0.93rem;
}

.offers-swipe-hint {
  display: none;
  margin: 4px 0 0;
  text-align: center;
  color: #8d1d27;
  font-size: 0.84rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .offers-section {
    padding: 48px 0;
  }

  .offers-scroll {
    grid-auto-columns: 82%;
    gap: 14px;
    padding-right: 12%;
  }

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

  .offer-card-content {
    padding: 15px;
  }

  .offers-swipe-hint {
    display: block;
  }
}



/* ===== SINGLE POSTER CAROUSEL ===== */

.offers-scroll {
  max-width: 420px;
  margin: 0 auto;
  grid-auto-columns: 100%;
  gap: 16px;
  scroll-snap-type: x mandatory;
}

.offer-card {
  width: 100%;
  scroll-snap-align: center;
}

@media (max-width: 768px) {
  .offers-scroll {
    max-width: 100%;
    grid-auto-columns: 92%;
    padding-right: 8%;
  }
}


/* ===== REAL OFFER CAROUSEL ===== */

.offers-carousel {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto;
  overflow: hidden;
}

.offers-scroll {
  display: flex !important;
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
  overflow: visible !important;
  transition: transform 0.4s ease;
}

.offer-card {
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100%;
  scroll-snap-align: unset;
}

.offer-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 20;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(141, 29, 39, 0.92);
  color: white;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 5px 16px rgba(0,0,0,0.18);
}

.offer-prev {
  left: 10px;
}

.offer-next {
  right: 10px;
}

.offer-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.offer-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d8bbb7;
  cursor: pointer;
}

.offer-dot.active {
  width: 24px;
  border-radius: 10px;
  background: #8d1d27;
}

@media (max-width: 768px) {
  .offers-carousel {
    width: 100%;
    max-width: 380px;
  }

  .offer-arrow {
    width: 36px;
    height: 36px;
    font-size: 25px;
  }
}


/* ===== SAFE ONE-POSTER CAROUSEL FIX ===== */

.offers-scroll {
  display: block !important;
  width: 100% !important;
  transform: none !important;
  overflow: hidden !important;
}

.offer-card {
  display: none !important;
  width: 100% !important;
  min-width: 0 !important;
}

.offer-card.active {
  display: block !important;
}


/* ===== ALL OFFERS PAGE ===== */

.all-offers-page {
  background: #fffaf7;
  min-height: 70vh;
}

.all-offers-hero {
  padding: 70px 0 42px;
  text-align: center;
  background: linear-gradient(
    180deg,
    #fff4ef 0%,
    #fffaf7 100%
  );
}

.all-offers-hero h1 {
  margin: 6px 0 12px;
  color: #8d1d27;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.all-offers-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: #675454;
  line-height: 1.7;
}

.all-offers-section {
  padding: 30px 0 70px;
}

.all-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.all-offer-card {
  background: #ffffff;
  border: 1px solid rgba(141, 29, 39, 0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(85, 35, 35, 0.08);
}

.all-offer-image-wrap {
  display: block;
  aspect-ratio: 4 / 5;
  background: #fff7f3;
  overflow: hidden;
}

.all-offer-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.all-offer-card:hover .all-offer-image {
  transform: scale(1.02);
}

.all-offer-content {
  padding: 18px;
}

.all-offer-content h2 {
  margin: 0 0 8px;
  color: #8d1d27;
  font-size: 1.08rem;
}

.all-offer-content p {
  margin: 0;
  color: #625353;
  line-height: 1.6;
  font-size: 0.93rem;
}

.no-offers-message {
  max-width: 600px;
  margin: 30px auto;
  padding: 40px 25px;
  text-align: center;
  background: white;
  border-radius: 18px;
}

.offers-back-home {
  margin-top: 36px;
  text-align: center;
}

.offers-back-home a {
  color: #8d1d27;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  .all-offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .all-offers-hero {
    padding: 48px 0 30px;
  }

  .all-offers-section {
    padding-top: 20px;
  }

  .all-offers-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .all-offer-card {
    border-radius: 16px;
  }
}


/* ===== OFFER POSTER LIGHTBOX ===== */

.all-offer-image-wrap {
  cursor: zoom-in;
}

.poster-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 10, 10, 0.88);
}

.poster-lightbox.open {
  display: flex;
}

.poster-lightbox img {
  display: block;
  max-width: min(92vw, 700px);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: white;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.poster-lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 10000;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: #8d1d27;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

/* ===== PRODUCT CARD IMAGE SEPARATION FIX ===== */

.product-image-wrapper {
  position: relative;
  overflow: hidden;
}

.product-image {
  display: block;
  box-sizing: border-box;
  max-width: 100%;
  max-height: 100%;
}

.product-card-content {
  position: relative;
  z-index: 1;
  background: var(--warm-white);
}

/* ===== SUBCATEGORY MOBILE PRODUCT CARDS V2 ===== */

@media (max-width: 768px) {

  .subcategory-page .product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .subcategory-page .product-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fffdf9;
  }

  .subcategory-page .product-image-wrapper {
    width: 100%;
    height: 285px !important;
    padding: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .subcategory-page .product-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block;
  }

  .subcategory-page .product-card-content {
    padding: 20px 18px 22px !important;
  }

  .subcategory-page .product-brand {
    margin: 0 0 8px;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }

  .subcategory-page .product-card h3 {
    margin: 0 0 14px;
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
  }

  .subcategory-page .product-category {
    margin: -5px 0 12px;
    font-size: 0.9rem;
  }

  .subcategory-page .product-price {
    margin: 8px 0 12px !important;
    font-size: 1.2rem !important;
  }

  .subcategory-page .stock-status {
    display: inline-block;
    margin: 0 0 18px !important;
    padding: 8px 13px !important;
    font-size: 0.88rem;
  }

  .subcategory-page .product-details-button,
  .subcategory-page .product-call-button {
    min-height: 48px !important;
    padding: 12px 14px !important;
    font-size: 0.98rem !important;
    border-radius: 12px !important;
  }

  .subcategory-page .product-details-button {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
  }
}



/* ===== SEARCH RESULTS MOBILE PRODUCT CARDS ===== */

@media (max-width: 768px) {

  .search-product-results .product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .search-product-results .product-card {
    overflow: hidden;
    border-radius: 18px;
    background: #fffdf9;
  }

  .search-product-results .product-image-wrapper {
    width: 100%;
    height: 285px !important;
    padding: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .search-product-results .product-image {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
  }

  .search-product-results .product-card-content {
    position: relative !important;
    padding: 20px 18px 22px !important;
    background: #fffdf9 !important;
  }

  .search-product-results .product-brand {
    margin: 0 0 8px;
    font-size: 0.82rem;
  }

  .search-product-results .product-card h3 {
    margin: 0 0 10px;
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
  }

  .search-product-results .product-category {
    margin: 0 0 12px;
    font-size: 0.9rem;
  }

  .search-product-results .product-price {
    margin: 8px 0 12px !important;
    font-size: 1.2rem !important;
  }

  .search-product-results .stock-status {
    margin-bottom: 18px !important;
  }
}

/* ===== INVOICE MOBILE FIELD LABELS ===== */

@media (max-width: 768px) {

  .invoice-products-table thead {
    display: none;
  }

  .invoice-products-table,
  .invoice-products-table tbody,
  .invoice-products-table tr,
  .invoice-products-table td {
    display: block;
    width: 100%;
  }

  .invoice-products-table .invoice-row {
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #ead3cf;
    border-radius: 16px;
    background: #fffdfb;
  }

  .invoice-products-table .invoice-row td {
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid #f1e2df;
  }

  .invoice-products-table .invoice-row td:last-child {
    border-bottom: 0;
  }

  .invoice-products-table .invoice-row td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 7px;
    color: #7f1d25;
    font-size: 0.88rem;
    font-weight: 700;
  }

  .invoice-products-table input,
  .invoice-products-table select {
    width: 100%;
  }

  .invoice-products-table .mode-toggle {
    width: 100%;
  }

  .invoice-products-table .remove-row {
    width: auto;
    min-width: 115px;
  }
}

/* ===== FEATURED PRODUCT IMAGE FULL VIEW FIX ===== */

.featured-products-section .product-image-wrapper {
  height: 320px;
  padding: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.featured-products-section .product-image {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain !important;
  object-position: center !important;
  display: block;
}

.store-gst {
  font-weight: 700 !important;
}
