:root {
  --ink: #271833;
  --muted: #6b5d66;
  --paper: #fffaf0;
  --panel: #ffffff;
  --line: #eadfcb;
  --red: #c91524;
  --maroon: #7a1230;
  --gold: #f6bd16;
  --green: #15803d;
  --blue: #1967d2;
  --shadow: 0 18px 45px rgba(39, 24, 51, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(1220px, calc(100% - 20px)); margin: 0 auto; }
.top-strip {
  background: #271833;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}
.top-strip,
.top-strip span,
.top-strip a {
  color: #fff !important;
}
.top-strip-phone-icon,
.top-strip-email-icon {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-right: 6px;
  color: #fff !important;
  font-size: 14px;
  line-height: 1;
}
.top-strip-phone-icon img {
  display: none;
}
.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  text-align: left;
}
.nav-inner, .footer-grid, .quick-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-inner {
  position: relative;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 240, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; padding: 12px 0; min-width: 230px; }
.brand img {
  width: clamp(150px, 14vw, 190px);
  height: auto;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}
.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #3e3141;
  font-weight: 700;
  font-size: 14px;
}
.nav-links a.active, .nav-links a:hover { background: #ffe8af; color: #811023; }
/* ── Nav Cart icon with count + total ── */
.nav-cart {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
  background: #811023 !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 8px 16px 8px 12px !important;
  min-width: max-content;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative;
}
.nav-cart:hover { background: #5e0b19 !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(129,16,35,0.4); }
.nav-cart .cart-icon { font-size: 18px; line-height: 1; flex-shrink: 0; }
.nav-cart-info { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.05; min-width: 0; }
.nav-cart-total {
  font-size: 11px;
  font-weight: 900;
  color: #ffd700;
  white-space: nowrap;
  letter-spacing: 0.01em;
  min-width: 42px;
  text-align: left;
  font-variant-numeric: tabular-nums;
}
.cart-badge {
  background: #ffd700;
  color: #811023;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  position: absolute;
  top: -4px;
  right: -4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}
.nav-cart-label {
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
}
/* Bump animation when cart updates */
@keyframes cart-bump {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.35) rotate(-8deg); }
  55%  { transform: scale(0.92) rotate(5deg); }
  75%  { transform: scale(1.12) rotate(-3deg); }
  100% { transform: scale(1) rotate(0deg); }
}
@keyframes badge-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.6); }
  70%  { transform: scale(0.85); }
  100% { transform: scale(1); }
}
.nav-cart.cart-bump { animation: cart-bump 0.5s cubic-bezier(0.36,0.07,0.19,0.97); }
.cart-badge.badge-pop { animation: badge-pop 0.45s cubic-bezier(0.36,0.07,0.19,0.97); }
.nav-links .nav-download {
  margin-left: 6px;
  background: linear-gradient(180deg, #ff274c 0%, #d20d22 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 8px 18px rgba(201, 21, 36, .28);
  padding: 10px 16px;
}
.nav-links .nav-download:hover,
.nav-links .nav-download:focus-visible {
  background: linear-gradient(180deg, #ff3c5d 0%, #bf1024 100%);
  color: #fff;
  transform: translateY(-1px);
}
.menu-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: 8px; padding: 9px 11px; }
.hero {
  min-height: calc(100vh - 118px);
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 22%, rgba(255, 237, 125, .95) 0 2px, transparent 3px 100px),
    radial-gradient(circle at 82% 34%, rgba(255, 122, 26, .95) 0 3px, transparent 4px 120px),
    radial-gradient(circle at 68% 58%, rgba(255, 255, 255, .85) 0 2px, transparent 3px 90px),
    linear-gradient(90deg, rgba(39,24,51,.96), rgba(122,18,48,.82), rgba(39,24,51,.4)),
    linear-gradient(135deg, #271833, #7a1230 54%, #f6bd16);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-conic-gradient(from 10deg at 78% 28%, transparent 0 7deg, rgba(255, 223, 96, .72) 8deg 9deg, transparent 10deg 18deg),
    repeating-conic-gradient(from 0deg at 70% 60%, transparent 0 8deg, rgba(255,255,255,.45) 9deg 10deg, transparent 11deg 22deg);
  mask-image: radial-gradient(circle at 78% 28%, #000 0 18%, transparent 28%), radial-gradient(circle at 70% 60%, #000 0 14%, transparent 24%);
  opacity: .86;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12vh;
  background: linear-gradient(transparent, var(--paper));
  z-index: -1;
}
.hero-content { color: #fff; width: min(720px, 100%); padding: 52px 0 86px; }
.eyebrow { text-transform: uppercase; color: #ffe08a; font-size: 13px; font-weight: 900; letter-spacing: .08em; }
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: 0; }
h1 { font-size: clamp(44px, 8vw, 88px); margin-top: 12px; }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: 22px; }
p { color: var(--muted); line-height: 1.65; }
.hero p { color: #fff3d2; font-size: 19px; max-width: 650px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn {
  border: 0;
  border-radius: 8px;
  min-height: 44px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn.primary { background: var(--gold); color: #2b1645; }
.btn.dark { background: var(--ink); color: #fff; }
.btn.light { background: #fff; color: var(--maroon); }
.btn.ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.btn.danger { background: #fee2e2; color: #991b1b; }
.section { padding: 68px 0; }
.product-page { padding-top: 22px; }
.product-page > .container {
  width: calc(100% - 24px);
  max-width: none;
}
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 26px; }
.product-page .section-head { margin-bottom: 12px; }
.section-head p { max-width: 620px; margin: 8px 0 0; }
.grid { display: grid; gap: 18px; }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(39, 24, 51, .07);
}
.feature { padding: 24px; min-height: 180px; }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #ffe8af;
  color: var(--maroon);
  font-weight: 900;
  margin-bottom: 16px;
}
.category-card { overflow: hidden; }
.category-art {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 35% 35%, #fff7a8 0 5%, transparent 6%),
    radial-gradient(circle at 72% 42%, #ff5c35 0 6%, transparent 7%),
    linear-gradient(135deg, #43185b, #c91524 52%, #f6bd16);
}
.category-art-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.category-art--sparklers {
  background:
    radial-gradient(circle at 50% 45%, #ffe8a0 0 4%, transparent 5%),
    radial-gradient(circle at 30% 30%, #ffffff 0 3%, transparent 4%),
    radial-gradient(circle at 70% 28%, #ffe066 0 3%, transparent 4%),
    radial-gradient(circle at 20% 60%, #ff9800 0 4%, transparent 5%),
    radial-gradient(circle at 80% 65%, #ffe066 0 3%, transparent 4%),
    linear-gradient(135deg, #3d1450, #c91524 50%, #f6bd16);
}
.category-art--flower-pots {
  background:
    radial-gradient(circle at 50% 80%, #ffcb4d 0 14%, transparent 15%),
    radial-gradient(circle at 30% 55%, #ff9800 0 10%, transparent 11%),
    radial-gradient(circle at 70% 55%, #ff5722 0 10%, transparent 11%),
    linear-gradient(175deg, #1a0830 0%, #7a1230 55%, #f6bd16 100%);
}
.category-art--fancy-shots {
  background:
    radial-gradient(circle at 22% 30%, #ffe066 0 10%, transparent 11%),
    radial-gradient(circle at 50% 20%, #e1f5fe 0 8%, transparent 9%),
    radial-gradient(circle at 78% 28%, #f48fb1 0 9%, transparent 10%),
    linear-gradient(175deg, #06031a 0%, #1e0a3c 60%, #280d50 100%);
}
.category-art--gift-box {
  background:
    radial-gradient(circle at 50% 42%, #ffd26d 0 22%, transparent 23%),
    radial-gradient(circle at 50% 20%, #ffefb2 0 10%, transparent 11%),
    linear-gradient(135deg, #3d1a60 0%, #c0152a 55%, #f6bd16 100%);
}
.category-card div:last-child { padding: 16px; }
.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.about-gallery-card {
  margin: 0;
  overflow: hidden;
}
.about-gallery-card img {
  width: 100%;
  min-height: 240px;
  object-fit: cover;
}
.payment-logo-strip {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.payment-logo-item {
  width: min(240px, 100%);
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-logo-item img,
.payment-logo-item picture {
  width: 100%;
  height: 72px;
  object-fit: contain;
  display: block;
}
.payment-logo-item picture img {
  width: 100%;
  height: 72px;
  border: 0;
  border-radius: 0;
  padding: 0;
  object-fit: contain;
}
.payment-logo-item-bank {
  width: min(280px, 100%);
}
.safety-hero-image {
  margin: 0 0 16px;
  overflow: hidden;
  max-width: 100%;
}
.safety-hero-image img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: min(68vh, 520px);
  object-fit: contain;
  object-position: center;
  background: #f5f5f5;
  padding: 12px;
}
.product-layout {
  display: grid;
  grid-template-columns: clamp(190px, 13vw, 250px) minmax(0, 1fr) clamp(250px, 18vw, 340px);
  gap: 8px;
  align-items: start;
}
.product-layout > * { min-width: 0; }
.filters, .admin-panel, .form-panel { padding: 12px; position: sticky; top: 92px; }
.cart-panel {
  padding: 12px;
  position: fixed;
  bottom: 0;
  right: 0;
  width: clamp(250px, 22vw, 340px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -4px 16px rgba(39, 24, 51, 0.15);
  z-index: 50;
  max-height: 90vh;
  overflow-y: auto;
}
.searchbar, .input, .select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}
.category-list { display: grid; gap: 6px; margin-top: 10px; }
.category-list button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  text-align: left;
  padding: 8px;
  cursor: pointer;
  font-weight: 800;
}
.category-list button.active { background: #ffe8af; border-color: #f4c654; }
.table-wrap { overflow: visible; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
table { width: 100%; border-collapse: collapse; table-layout: fixed; }
th, td {
  padding: 9px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
  font-size: 13px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
th { background: #fff0c9; font-size: 11px; text-transform: uppercase; color: #5b2440; }
td:nth-child(1), th:nth-child(1) { width: 7%; }
td:nth-child(2), th:nth-child(2) { width: 39%; }
td:nth-child(3), th:nth-child(3) { width: 8%; }
td:nth-child(4), th:nth-child(4) { width: 12%; }
td:nth-child(5), th:nth-child(5) { width: 11%; }
td:nth-child(6), th:nth-child(6) { width: 9%; }
td:nth-child(7), th:nth-child(7) { width: 14%; }
td input[type="number"] {
  width: 54px;
  max-width: 100%;
  padding: 7px 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  -moz-appearance: textfield;
  appearance: textfield;
}
td input[type="number"]::-webkit-outer-spin-button,
td input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pill { display: inline-flex; padding: 4px 7px; border-radius: 999px; background: #fef3c7; color: #92400e; font-weight: 900; font-size: 11px; }
.category-row td {
  background: #7a1230;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  padding: 8px 10px;
}
.product-thumb {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 34% 30%, #fff7a8 0 8%, transparent 9%),
    radial-gradient(circle at 68% 62%, #ff7a1a 0 10%, transparent 11%),
    linear-gradient(135deg, #351553, #c91524 60%, #f6bd16);
  color: #fff;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.36);
}
.product-thumb-image {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.3);
}
.product-thumb span { text-shadow: 0 1px 6px rgba(0,0,0,.35); }
.price-old { text-decoration: line-through; color: #9a8b95; }
.cart-line { display: grid; grid-template-columns: 1fr auto; gap: 6px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.totals { display: grid; gap: 6px; margin: 10px 0; }
.totals div { display: flex; justify-content: space-between; }
.totals .grand { font-size: 20px; font-weight: 950; color: var(--red); }
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 22px; align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.full { grid-column: 1 / -1; }
.notice { background: #ecfdf5; border: 1px solid #bbf7d0; padding: 14px; border-radius: 8px; color: #14532d; font-weight: 800; }
/* Hide floating social icons on product page */
.product-page .sharedaddy { display: none !important; }
.product-page [class*="social"] { display: none !important; }
/* Force-hide floating social icons on WooCommerce shop/pricelist pages */
.woocommerce-shop .petchi-social-container,
.post-type-archive-product .petchi-social-container,
.tax-product_cat .petchi-social-container,
.tax-product_tag .petchi-social-container,
.page-template-page-products .petchi-social-container,
.page-products .petchi-social-container {
  display: none !important;
}
/* ── Price List Bar ── */
.pricelist-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  background: #fff8f0;
  border: 1px solid #f4dfc8;
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--muted);
}
.pricelist-btn {
  background: linear-gradient(135deg, #c91524, #a0101c);
  color: #fff !important;
  border-radius: 8px;
  padding: 9px 18px;
  font-weight: 900;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(201,21,36,.28);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.pricelist-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,21,36,.38);
  color: #fff !important;
}
.safety-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.safety-item { padding: 18px; display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.map-box {
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  border: 0;
}
.admin-shell { display: grid; grid-template-columns: 280px 1fr; gap: 20px; align-items: start; }
.admin-tabs { display: grid; gap: 8px; margin-top: 18px; }
.admin-tabs button { justify-content: flex-start; }
.hidden { display: none !important; }
.login-box { width: min(430px, calc(100% - 32px)); margin: 78px auto; padding: 24px; }
.footer { background: #201426; color: #fff; padding: 44px 0 22px; }
.footer p, .footer a { color: #e9d9e4; }
.footer-grid { align-items: start; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; }
.footer img { width: 190px; margin-bottom: 12px; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 24px;
  padding-top: 20px;
  color: #f3dbe8;
  font-size: 13px;
  line-height: 1.7;
}
.footer-legal p { color: #f3dbe8; margin: 0; }
.copyright { border-top: 1px solid rgba(255,255,255,.14); margin-top: 18px; padding-top: 18px; color: #decdda; font-size: 14px; }
/* Hide default WooCommerce shop chrome when using custom table */
.woocommerce-products-header,
.woocommerce-result-count,
.woocommerce-ordering,
.woocommerce-breadcrumb {
  display: none;
}
.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: block;
}
.enquiry-modal.hidden {
  pointer-events: none;
}
.enquiry-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 28, .45);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.enquiry-modal:not(.hidden) .enquiry-backdrop {
  opacity: 1;
}
.enquiry-dialog {
  position: absolute;
  top: 0;
  right: 0;
  width: min(460px, 96vw);
  height: 100vh;
  background: #fff;
  border-left: 1px solid var(--line);
  box-shadow: -18px 0 40px rgba(0, 0, 0, .2);
  overflow: auto;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.enquiry-modal:not(.hidden) .enquiry-dialog {
  transform: translateX(0);
}
.enquiry-head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: #980000;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}
.enquiry-head h2 {
  font-size: clamp(20px, 5vw, 28px);
  color: #fff;
  margin: 0;
}
.enquiry-close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: transform 0.2s ease;
}
.enquiry-close:hover {
  transform: scale(1.1);
}
.enquiry-body {
  padding: 16px;
  animation: slideUp 0.4s ease 0.1s backwards;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.enquiry-mini-cart {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.enquiry-confirm {
  width: 100%;
  margin-top: 12px;
  background: #e11d2f;
  color: #fff;
  transition: all 0.2s ease;
  font-weight: 900;
}
.enquiry-confirm:hover {
  background: #c91524;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225, 29, 47, 0.3);
}
.enquiry-confirm:active {
  transform: translateY(0);
}
.enquiry-form { padding: 16px; }
.enquiry-form .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.enquiry-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 14px;
}
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  font: inherit;
  transition: all 0.2s ease;
}
.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: #980000;
  box-shadow: 0 0 0 3px rgba(152, 0, 0, 0.1);
}
.enquiry-totals {
  margin-top: 12px;
  padding: 12px;
  background: #fafafa;
  border-radius: 8px;
  animation: slideUp 0.3s ease;
}
.enquiry-totals .min-order {
  color: var(--red);
  font-weight: 900;
}
.enquiry-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.btn.success {
  background: #15803d;
  color: #fff;
  transition: all 0.2s ease;
  font-weight: 900;
}
.btn.success:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 128, 61, 0.3);
}
.btn.success:active {
  transform: translateY(0);
}
.btn.danger {
  transition: all 0.2s ease;
}
.btn.danger:hover {
  background: #fecaca;
  transform: translateY(-2px);
}
.btn.danger:active {
  transform: translateY(0);
}
.terms-section {
  padding-top: 28px;
}
.terms-card {
  border-left: 4px solid var(--red);
  background: #fff8f8;
}
.terms-card p {
  margin: 8px 0 0;
  color: #4a2f35;
}

/* ══════════════════════════════════════════════
   HOME PAGE — NEW DESIGN
══════════════════════════════════════════════ */

/* ── Hero section ── */
.hp-hero {
  position: relative;
  min-height: 560px;
  background: linear-gradient(180deg, #0a0020 0%, #12003a 30%, #1a0050 55%, #3a0030 80%, #c41700 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
/* star-field behind canvas */
.hp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 8%,  rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 20%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 5%,  rgba(255,255,255,.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 18%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 10%, rgba(255,255,255,.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 40%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 50%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 35%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 42%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 92% 25%, rgba(255,255,200,.9) 0%, transparent 100%),
    radial-gradient(2px 2px at 5%  28%, rgba(255,255,200,.8) 0%, transparent 100%),
    radial-gradient(2px 2px at 48% 12%, rgba(255,220,255,.9) 0%, transparent 100%);
  z-index: 0;
  animation: twinkle 4s ease-in-out infinite alternate;
}
@keyframes twinkle {
  0%   { opacity: .7; }
  50%  { opacity: 1;  }
  100% { opacity: .6; }
}
/* glitter rain layer */
.hp-glitter {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hp-glitter span {
  position: absolute;
  top: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  animation: glitter-fall linear infinite;
  opacity: 0;
}
@keyframes glitter-fall {
  0%   { transform: translateY(0)   rotate(0deg);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .6; }
  100% { transform: translateY(600px) rotate(720deg); opacity: 0; }
}

#skyshots-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ── CSS sparkle dots ── */
.hp-sparkles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.sp {
  position: absolute;
  display: block;
  width: 22px;
  height: 22px;
  opacity: 0;
  animation: sp-pulse 3s ease-in-out infinite;
}
.sp::before,.sp::after {
  content: '✦';
  position: absolute;
  font-size: 18px;
  color: #a0b4e8;
  text-shadow: 0 0 6px #a0b4e8;
}
.sp::after { font-size: 10px; top: -8px; left: 8px; color: #7090d0; }

/* distribute sparkle positions */
.sp-1  { top:12%; left:4%;  animation-delay:0s;    animation-duration:2.8s; }
.sp-2  { top:30%; left:8%;  animation-delay:.4s;   animation-duration:3.2s; }
.sp-3  { top:55%; left:3%;  animation-delay:.8s;   animation-duration:2.6s; }
.sp-4  { top:70%; left:12%; animation-delay:1.2s;  animation-duration:3.5s; }
.sp-5  { top:20%; left:18%; animation-delay:.6s;   animation-duration:3.0s; }
.sp-6  { top:80%; left:22%; animation-delay:1.8s;  animation-duration:2.4s; }
.sp-7  { top:10%; left:36%; animation-delay:.2s;   animation-duration:3.8s; }
.sp-8  { top:65%; left:40%; animation-delay:2.0s;  animation-duration:2.9s; }
.sp-9  { top:40%; left:55%; animation-delay:.9s;   animation-duration:3.1s; }
.sp-10 { top:15%; left:62%; animation-delay:1.5s;  animation-duration:2.7s; }
.sp-11 { top:75%; left:66%; animation-delay:.3s;   animation-duration:3.4s; }
.sp-12 { top:25%; left:74%; animation-delay:2.2s;  animation-duration:2.5s; }
.sp-13 { top:50%; left:80%; animation-delay:.7s;   animation-duration:3.6s; }
.sp-14 { top:85%; left:78%; animation-delay:1.1s;  animation-duration:2.8s; }
.sp-15 { top:8%;  left:86%; animation-delay:1.7s;  animation-duration:3.2s; }
.sp-16 { top:45%; left:90%; animation-delay:.5s;   animation-duration:2.6s; }
.sp-17 { top:62%; left:94%; animation-delay:2.4s;  animation-duration:3.0s; }
.sp-18 { top:35%; left:96%; animation-delay:1.3s;  animation-duration:3.7s; }

@keyframes sp-pulse {
  0%,100% { opacity:0; transform: scale(0.6) rotate(0deg); }
  50%      { opacity:0.85; transform: scale(1.1) rotate(30deg); }
}

/* ── Hero inner layout ── */
.hp-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 20px 0 26px;
  display: grid;
  justify-items: center;
}

/* ── Diwali banner bar ── */
.hp-diwali-bar {
  text-align: center;
  background: #ffe033;
  color: #7a1a00;
  font-size: 15px;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 999px;
  margin: 0 auto 24px;
  max-width: 480px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  letter-spacing: 0.02em;
  animation: bar-pop 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes bar-pop {
  from { opacity:0; transform:scale(0.8) translateY(-12px); }
  to   { opacity:1; transform:scale(1) translateY(0); }
}

/* ── Single centered showcase ── */
.hp-promo-grid {
  width: 100%;
  max-width: 1460px;
  display: grid;
  grid-template-columns: minmax(360px, 420px) minmax(0, 1fr) minmax(360px, 420px);
  gap: 20px;
  align-items: stretch;
}

.hp-logo-showcase {
  width: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, rgba(58, 18, 0, 0.9) 0%, rgba(122, 40, 0, 0.92) 45%, rgba(196, 68, 0, 0.92) 100%);
  border-radius: 16px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  animation: card-rise 0.7s 0.1s cubic-bezier(0.34,1.56,0.64,1) both;
}

.hp-logo-showcase img {
  width: clamp(190px, 36vw, 340px);
  height: auto;
  object-fit: contain;
}

.hp-logo-tagline {
  margin: 0;
  color: #ffdfb2;
  font-size: clamp(14px, 2.1vw, 18px);
  line-height: 1.5;
  max-width: 560px;
}

.hp-logo-showcase .hp-btn-now {
  margin-top: 6px;
}

/* ── Flash Deal card ── */
.hp-flash-card {
  border-radius: 14px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 270px;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  animation: card-rise 0.7s 0.1s cubic-bezier(0.34,1.56,0.64,1) both;
}
.hp-flash-title {
  font-size: 22px;
  font-weight: 900;
  color: #cc2200;
  letter-spacing: 0.04em;
}
.hp-flash-sub {
  margin: 0;
  color: #555;
  font-size: 13px;
  line-height: 1.4;
}
.hp-countdown {
  font-size: 46px;
  font-weight: 900;
  color: #cc2200;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 8px rgba(204,34,0,0.2);
  line-height: 1;
}
.hp-btn-order {
  background: linear-gradient(135deg, #ff8c00, #ff4500);
  color: #fff;
  border-radius: 8px;
  font-weight: 900;
  padding: 12px 20px;
  box-shadow: 0 4px 14px rgba(255,69,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 4px;
}
.hp-btn-order:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,69,0,0.45); }

/* ── Center promo card ── */
.hp-promo-card {
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 24px;
  min-height: 270px;
  box-shadow: 0 10px 34px rgba(0,0,0,0.28);
  animation: card-rise 0.7s 0.2s cubic-bezier(0.34,1.56,0.64,1) both;
}
.hp-promo-badge {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #ff8c00, #ff4500 60%, #c41700);
  border: 4px solid rgba(255,255,255,0.25);
  box-shadow: 0 0 0 6px rgba(255,140,0,0.2), 0 6px 20px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
}
.hp-badge-label {
  font-size: 9px;
  font-weight: 900;
  color: #ffe8c0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hp-badge-title {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
}
.hp-promo-body {
  flex: 1;
  color: #fff;
}
.hp-promo-title {
  font-size: 18px;
  font-weight: 900;
  color: #ffe0a0;
}
.hp-promo-until {
  font-size: 12px;
  color: #ffcf8a;
  margin: 2px 0 10px;
}
.hp-promo-pct {
  font-size: 14px;
  font-weight: 700;
  color: #ffd080;
  text-transform: uppercase;
}
.hp-promo-pct span {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  display: inline-block;
}
.hp-promo-note {
  font-size: 12px;
  color: #ffbc70;
  margin: 6px 0 14px;
}
.hp-btn-now {
  background: #fff;
  color: #c44400;
  font-weight: 900;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.2s;
}
.hp-btn_now:hover { background: #ffe8c0; transform: translateY(-2px); }

/* ── Right: In Stock card ── */
.hp-instock-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #111;
  min-height: 280px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  animation: card-rise 0.7s 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
.hp-instock-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.9;
}
.hp-instock-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 14px;
  color: #7ff0ff;
  font-weight: 900;
  text-shadow: 0 0 12px #00cfff, 0 2px 4px rgba(0,0,0,0.5);
  line-height: 1.2;
}
.hp-instock-label span {
  font-size: 22px;
  color: #7ff0ff;
  display: block;
}

@keyframes card-rise {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── Scrolling pill strip ── */
.hp-pill-track-wrap {
  background: #fff;
  border-top: 1px solid #f0e4d0;
  border-bottom: 1px solid #f0e4d0;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
}
.hp-pill-track {
  display: inline-flex;
  gap: 10px;
  padding: 12px 16px;
  animation: pill-scroll 28s linear infinite;
}
.hp-pill-track:hover { animation-play-state: paused; }
.hp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #f5f0ff;
  border: 1px solid #e0d8f0;
  font-size: 13px;
  font-weight: 700;
  color: #3e1060;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.hp-pill:hover {
  background: #ffe8af;
  border-color: #f4c654;
  color: #7a1230;
  transform: translateY(-2px);
}
@keyframes pill-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Categories section ── */
.hp-cat-section { padding-top: 48px; }
.hp-sec-head {
  text-align: center;
  margin-bottom: 28px;
}
.hp-sec-head h2 { font-size: clamp(24px,4vw,38px); color: #271833; }
.hp-sec-dashes {
  color: #f6bd16;
  font-size: 20px;
  letter-spacing: 4px;
  margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hp-promo-grid {
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr) minmax(280px, 320px);
    gap: 14px;
  }
  .hp-promo-card,
  .hp-flash-card,
  .hp-logo-showcase {
    min-height: 260px;
  }
}

/* Mobile floating order bar – hidden by default on desktop */
.mobile-order-bar {
  display: none;
}

@media (max-width: 900px) {
  .hp-hero {
    min-height: auto;
    padding: 18px 0 24px;
  }
  .hp-hero-inner {
    padding: 12px 0 18px;
  }
  .hp-promo-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin: 0 auto;
    gap: 12px;
  }
  .hp-flash-card,
  .hp-logo-showcase,
  .hp-promo-card {
    width: 100%;
    min-height: auto;
    padding: 18px 16px;
  }
  .hp-flash-card {
    align-items: center;
    text-align: center;
  }
  .hp-logo-showcase {
    min-height: 250px;
    padding: 22px 16px;
  }
  .hp-logo-tagline,
  .hp-promo-body,
  .hp-promo-title,
  .hp-promo-until,
  .hp-promo-pct,
  .hp-promo-note {
    text-align: center;
  }
  .hp-promo-card {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }
  .hp-promo-badge {
    width: 90px;
    height: 90px;
  }
  .hp-btn-order,
  .hp-btn-now {
    align-self: center;
  }
}
@media (max-width: 640px) {
  .hp-hero {
    min-height: auto;
    padding: 8px 0 10px;
  }
  .hp-hero-inner {
    padding: 8px 0 10px;
  }
  .hp-diwali-bar {
    margin-bottom: 10px;
  }
  .hp-flash-card,
  .hp-promo-card {
    display: none !important;
  }
  .hp-logo-showcase {
    min-height: 170px;
    padding: 14px 12px;
    gap: 8px;
  }
  .hp-logo-showcase img {
    width: clamp(130px, 44vw, 210px);
  }
  .hp-logo-tagline {
    font-size: 15px;
    line-height: 1.35;
    margin: 0;
  }
  .hp-logo-showcase .hp-btn-now {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 12px;
  }

  /* Keep order summary in normal flow on mobile (not fixed) */
  .product-layout {
    padding-bottom: 80px; /* space for floating bar */
  }
  .cart-panel {
    width: 100%;
    border-radius: 8px;
    right: auto;
    left: auto;
    bottom: auto;
    z-index: auto;
    max-height: none;
  }
  /* Hide the desktop Place Order button on mobile */
  .desktop-place-order {
    display: none !important;
  }
  /* Mobile floating order bar */
  .mobile-order-bar {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: #fff !important;
    border-top: 2px solid var(--primary, #7c3aed) !important;
    box-shadow: 0 -4px 18px rgba(0,0,0,0.15) !important;
    padding: 10px 16px !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }
  .mobile-order-total {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
  }
  .mob-total-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .mob-total-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary, #7c3aed);
  }
  .mob-place-order-btn {
    flex: 0 0 auto !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 768px) and (min-width: 641px) {
  .top-strip {
    padding: 8px 0;
  }
  .top-strip .container {
    gap: 8px;
  }
  .top-strip-phone-icon,
  .top-strip-email-icon {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .top-strip {
    padding: 6px 0;
  }
  .top-strip .container {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 2px;
  }
  .top-strip .container span {
    display: block;
    width: 100%;
    font-size: 12px;
  }
  .top-strip-phone-icon,
  .top-strip-email-icon {
    font-size: 12px;
    margin-right: 4px;
  }

  .brand img { width: 144px; max-height: 52px; }
  .section { padding: 44px 0; }
  .product-page { padding-top: 14px; }
  .section-head { display: block; }
  .grid.cols-3,
  .grid.cols-4,
  .safety-list,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .full { grid-column: auto; }
  .actions .btn { width: 100%; }

  .payment-logo-item {
    width: 100%;
    min-height: 84px;
  }
  .payment-logo-item img,
  .payment-logo-item picture,
  .payment-logo-item picture img {
    height: 62px;
  }
  .safety-hero-image img {
    max-height: 320px;
    padding: 8px;
  }

  .category-list {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 3px;
  }
  .category-list button {
    flex: 0 0 auto;
    padding: 7px 9px;
    font-size: 11px;
    white-space: nowrap;
  }

  table { table-layout: fixed; }
  th, td {
    padding: 5px 2px;
    font-size: 10px;
    line-height: 1.15;
  }
  th { font-size: 8px; }
  td:nth-child(1), th:nth-child(1) { width: 12%; }
  td:nth-child(2), th:nth-child(2) { width: 33%; }
  td:nth-child(3), th:nth-child(3) { width: 7%; }
  td:nth-child(4), th:nth-child(4) { width: 12%; }
  td:nth-child(5), th:nth-child(5) { width: 11%; }
  td:nth-child(6), th:nth-child(6) { width: 10%; }
  td:nth-child(7), th:nth-child(7) { width: 15%; }
  .category-row td {
    padding: 6px 8px;
    font-size: 11px;
  }
  .product-thumb {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    font-size: 11px;
  }
  td input[type="number"] {
    width: 32px;
    min-height: 28px;
    padding: 4px 2px;
    border-radius: 6px;
    text-align: center;
    font-size: 10px;
  }

  .enquiry-actions,
  .enquiry-form .grid-2 {
    grid-template-columns: 1fr;
  }
  .enquiry-dialog { width: 100%; }
}

@media (max-width: 980px) {
  .top-strip .container {
    justify-content: space-between;
    text-align: left;
  }
  .nav-inner {
    position: relative;
    min-height: 64px;
    padding: 6px 0;
    gap: 10px;
    justify-content: space-between;
  }
  .brand {
    min-width: 0;
    padding: 6px 0;
    margin: 0;
    flex: 0 0 auto;
  }
  .brand img {
    object-position: left center;
  }
  .nav-cart-header {
    margin-left: auto;
    margin-right: 0;
    padding: 7px 12px 7px 10px !important;
  }
  .menu-toggle {
    display: inline-flex;
    position: static;
    transform: none;
    min-width: 42px;
    min-height: 42px;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    z-index: 3;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 12px;
    gap: 6px;
    justify-items: center;
    text-align: center;
    z-index: 4;
  }
  .nav-links.open { display: grid; }
  .nav-links a {
    width: min(340px, 100%);
    text-align: center;
    margin: 0 auto;
  }
  .nav-links .nav-download {
    margin-left: 0;
  }
  .nav-cart {
    justify-content: center !important;
    width: auto;
    min-width: 112px;
  }

  .product-layout,
  .checkout-grid,
  .admin-shell,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .filters,
  .cart-panel,
  .admin-panel,
  .form-panel {
    position: static;
  }
  .cart-panel {
    width: 100%;
    max-height: none;
    overflow: visible;
    right: auto;
    left: auto;
    bottom: auto;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(39, 24, 51, .07);
    margin-top: 10px;
    order: 3;
  }
  .table-wrap { order: 2; }
  .filters { order: 1; }
  .grid.cols-3,
  .grid.cols-4,
  .safety-list,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-strip .container {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 2px;
  }
}

