/* ── Reset & Base ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --primary:   #c8956c;
      --primary-d: #a97550;
      --primary-l: #deb898;
      --bg:        #faf5ee;
      --bg-warm:   #f3ead8;
      --text:      #231c14;
      --text-m:    #5a4a38;
      --text-l:    #8c7660;
      --border:    #e0d4bf;
      --white:     #ffffff;
      --shadow:    rgba(35, 28, 20, 0.10);
      --shadow-h:  rgba(35, 28, 20, 0.18);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--bg);
      color: var(--text);
      font-size: 16px;
      line-height: 1.6;
    }

    h1, h2, h3, h4 { font-family: 'Lora', serif; }

    img { display: block; max-width: 100%; }

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

    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    /* ── Site Header ── */
    .site-header {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 1px 8px var(--shadow);
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .back-link {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-l);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .back-link:hover { color: var(--primary); }
    .back-link svg { flex-shrink: 0; }

    .logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .logo-name {
      font-family: 'Lora', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: 0.01em;
      line-height: 1.2;
    }
    .logo-name span { color: var(--primary); }
    .logo-tagline {
      font-size: 10px;
      font-weight: 400;
      color: var(--text-l);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .header-actions { display: flex; align-items: center; gap: 12px; }

    .cart-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--primary);
      color: var(--white);
      border-radius: 100px;
      padding: 8px 18px 8px 14px;
      font-size: 14px;
      font-weight: 600;
      transition: background 0.2s, transform 0.15s;
    }
    .cart-btn:hover { background: var(--primary-d); transform: translateY(-1px); }
    .cart-badge {
      background: var(--white);
      color: var(--primary-d);
      border-radius: 50%;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      transition: transform 0.2s;
    }

    /* ── Demo Banner ── */
    .demo-banner {
      background: var(--primary);
      color: var(--white);
      text-align: center;
      padding: 9px 24px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.02em;
    }
    .demo-banner strong { font-weight: 700; }

    /* ── Hero ── */
    .hero {
      background: linear-gradient(135deg, #2c1f10 0%, #3d2a17 40%, #5a3e25 100%);
      color: var(--white);
      padding: 80px 24px 72px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 149, 108, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(200, 149, 108, 0.12) 0%, transparent 55%);
      pointer-events: none;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1603006905003-be475563bc59?w=1400') center/cover no-repeat;
      opacity: 0.18;
      pointer-events: none;
    }

    /* Decorative flame dots */
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle, rgba(200,149,108,0.15) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 680px;
      margin: 0 auto;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--primary-l);
      margin-bottom: 20px;
    }
    .hero-eyebrow::before,
    .hero-eyebrow::after {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--primary-l);
      opacity: 0.7;
    }

    .hero h1 {
      font-size: clamp(34px, 6vw, 54px);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 20px;
      color: #fdf6ec;
    }

    .hero p {
      font-size: clamp(15px, 2.5vw, 18px);
      color: rgba(255,255,255,0.75);
      line-height: 1.7;
      margin-bottom: 36px;
      font-weight: 300;
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--white);
      padding: 14px 32px;
      border-radius: 100px;
      font-size: 15px;
      font-weight: 600;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 16px rgba(200,149,108,0.35);
    }
    .btn-primary:hover {
      background: var(--primary-d);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(200,149,108,0.45);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      padding: 13px 30px;
      border-radius: 100px;
      font-size: 15px;
      font-weight: 500;
      border: 1.5px solid rgba(255,255,255,0.35);
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
    }
    .btn-outline:hover {
      border-color: rgba(255,255,255,0.7);
      background: rgba(255,255,255,0.08);
      transform: translateY(-2px);
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-top: 48px;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.1);
      flex-wrap: wrap;
    }
    .stat { text-align: center; }
    .stat-num {
      font-family: 'Lora', serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--primary-l);
      display: block;
    }
    .stat-label {
      font-size: 12px;
      color: rgba(255,255,255,0.55);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    /* ── Features Strip ── */
    .features-strip {
      background: var(--bg-warm);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .features-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 24px;
      display: flex;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
    }
    .feature-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 28px;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-m);
      border-right: 1px solid var(--border);
    }
    .feature-item:last-child { border-right: none; }
    .feature-icon { font-size: 18px; }

    /* ── Main Shop Layout ── */
    .shop-section { max-width: 1200px; margin: 0 auto; padding: 48px 24px 80px; }

    .shop-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 32px;
      gap: 16px;
      flex-wrap: wrap;
    }

    .shop-title {
      font-size: 28px;
      font-weight: 600;
      color: var(--text);
    }
    .shop-title span {
      font-size: 15px;
      font-weight: 400;
      color: var(--text-l);
      font-family: 'Inter', sans-serif;
      margin-left: 10px;
    }

    /* Search */
    .search-wrap {
      position: relative;
      flex: 1;
      max-width: 320px;
    }
    .search-wrap svg {
      position: absolute;
      left: 13px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-l);
      pointer-events: none;
    }
    .search-input {
      width: 100%;
      padding: 10px 14px 10px 38px;
      border: 1.5px solid var(--border);
      border-radius: 100px;
      background: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--text);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }
    .search-input::placeholder { color: var(--text-l); }
    .search-input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(200,149,108,0.15);
    }

    /* Category Pills */
    .categories {
      display: flex;
      gap: 8px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }
    .cat-pill {
      padding: 8px 20px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 500;
      border: 1.5px solid var(--border);
      color: var(--text-m);
      background: var(--white);
      transition: all 0.2s;
      cursor: pointer;
    }
    .cat-pill:hover {
      border-color: var(--primary);
      color: var(--primary);
    }
    .cat-pill.active {
      background: var(--primary);
      border-color: var(--primary);
      color: var(--white);
      box-shadow: 0 2px 8px rgba(200,149,108,0.30);
    }

    /* Product Grid */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 24px;
    }

    .product-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 12px var(--shadow);
      transition: transform 0.22s, box-shadow 0.22s;
      display: flex;
      flex-direction: column;
    }
    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 28px var(--shadow-h);
    }

    .product-img-wrap {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
      background: var(--bg-warm);
    }
    .product-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .product-card:hover .product-img-wrap img { transform: scale(1.06); }

    .product-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: var(--primary);
      color: var(--white);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 100px;
    }

    .product-body {
      padding: 16px 18px 18px;
      display: flex;
      flex-direction: column;
      flex: 1;
      gap: 8px;
    }

    .product-cat {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--primary);
    }

    .product-name {
      font-family: 'Lora', serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      line-height: 1.3;
    }

    .product-desc {
      font-size: 12.5px;
      color: var(--text-l);
      line-height: 1.55;
      flex: 1;
    }

    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 4px;
      gap: 8px;
    }

    .product-price {
      font-family: 'Lora', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--text);
    }

    .add-btn {
      background: var(--primary);
      color: var(--white);
      border-radius: 100px;
      padding: 8px 18px;
      font-size: 13px;
      font-weight: 600;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
    }
    .add-btn:hover { background: var(--primary-d); transform: scale(1.04); }
    .add-btn:active { transform: scale(0.97); }

    /* Empty state */
    .empty-state {
      grid-column: 1 / -1;
      text-align: center;
      padding: 60px 24px;
      color: var(--text-l);
    }
    .empty-state h3 { font-size: 22px; margin-bottom: 8px; color: var(--text-m); }

    /* ── Cart Drawer ── */
    .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(35,28,20,0.45);
      z-index: 200;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
      backdrop-filter: blur(2px);
    }
    .cart-overlay.open { opacity: 1; pointer-events: all; }

    .cart-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(420px, 100vw);
      background: var(--white);
      z-index: 201;
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
      box-shadow: -8px 0 40px rgba(35,28,20,0.15);
    }
    .cart-drawer.open { transform: translateX(0); }

    .cart-head {
      padding: 22px 24px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .cart-head h2 {
      font-size: 20px;
      font-weight: 600;
    }
    .close-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-l);
      background: var(--bg-warm);
      transition: background 0.2s, color 0.2s;
    }
    .close-btn:hover { background: var(--border); color: var(--text); }

    .cart-items {
      flex: 1;
      overflow-y: auto;
      padding: 16px 24px;
    }

    .cart-empty {
      text-align: center;
      padding: 48px 16px;
      color: var(--text-l);
    }
    .cart-empty-icon { font-size: 48px; margin-bottom: 12px; }
    .cart-empty p { font-size: 15px; }

    .cart-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }
    .cart-item:last-child { border-bottom: none; }

    .cart-item-img {
      width: 64px;
      height: 64px;
      border-radius: 10px;
      object-fit: cover;
      flex-shrink: 0;
      background: var(--bg-warm);
    }

    .cart-item-info { flex: 1; min-width: 0; }
    .cart-item-name {
      font-family: 'Lora', serif;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 6px;
      line-height: 1.3;
    }

    .cart-item-controls {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .qty-btn {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 600;
      color: var(--text-m);
      background: var(--white);
      transition: all 0.15s;
      line-height: 1;
    }
    .qty-btn:hover { border-color: var(--primary); color: var(--primary); }
    .qty-num {
      width: 24px;
      text-align: center;
      font-size: 14px;
      font-weight: 600;
    }
    .remove-item {
      margin-left: auto;
      color: var(--text-l);
      font-size: 18px;
      line-height: 1;
      transition: color 0.15s;
      padding: 2px 4px;
    }
    .remove-item:hover { color: #c0392b; }

    .cart-item-price {
      font-family: 'Lora', serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      white-space: nowrap;
      padding-top: 2px;
    }

    .cart-foot {
      padding: 20px 24px 28px;
      border-top: 1px solid var(--border);
      background: var(--bg-warm);
    }

    .cart-summary { margin-bottom: 18px; }
    .cart-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      margin-bottom: 8px;
      color: var(--text-m);
    }
    .cart-row.total {
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
      padding-top: 10px;
      border-top: 1px solid var(--border);
      margin-top: 8px;
      font-family: 'Lora', serif;
    }
    .cart-row.total .val { color: var(--primary-d); }

    .checkout-btn {
      width: 100%;
      background: var(--primary);
      color: var(--white);
      padding: 16px;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 700;
      transition: background 0.2s, transform 0.15s;
      font-family: 'Lora', serif;
    }
    .checkout-btn:hover { background: var(--primary-d); transform: translateY(-1px); }

    /* ── Promo Code ── */
    .promo-row { display: flex; gap: 8px; margin: 12px 0 16px; }
    .promo-input { flex: 1; padding: 8px 12px; border: 1.5px solid var(--border); border-radius: 12px; font-family: inherit; font-size: 13px; background: var(--bg); }
    .promo-input:focus { outline: none; border-color: var(--primary); }
    .promo-btn { padding: 8px 16px; background: var(--primary); color: var(--white); border: none; border-radius: 12px; font-family: inherit; font-size: 13px; font-weight: 500; cursor: pointer; }
    .promo-btn:hover { opacity: 0.9; }

    /* ── Fulfillment Toggle ── */
    .fulfillment-toggle { display: flex; gap: 8px; margin-bottom: 16px; }
    .fulfill-btn { flex: 1; padding: 10px; border: 1.5px solid var(--border); border-radius: 12px; background: var(--bg); font-family: inherit; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
    .fulfill-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
    .pickup-info { background: var(--bg-warm); border-radius: 12px; padding: 12px 16px; margin-bottom: 16px; font-size: 13px; color: var(--text-m); }

    .cart-note {
      text-align: center;
      font-size: 12px;
      color: var(--text-l);
      margin-top: 12px;
    }

    /* ── Toast ── */
    .toast-container {
      position: fixed;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 300;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      pointer-events: none;
    }

    .toast {
      background: var(--text);
      color: var(--white);
      padding: 12px 22px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 500;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      animation: toastIn 0.3s ease, toastOut 0.3s ease 2.3s forwards;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .toast-icon { font-size: 16px; }

    @keyframes toastIn  { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes toastOut { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(12px); } }

    /* ── About Strip ── */
    .about-strip {
      background: #231c14;
      color: var(--white);
      padding: 64px 24px;
    }
    .about-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .about-text h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 16px;
      color: #fdf6ec;
    }
    .about-text p {
      color: rgba(255,255,255,0.65);
      font-size: 15px;
      line-height: 1.75;
      margin-bottom: 14px;
    }
    .about-values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 28px;
    }
    .about-val {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }
    .val-icon {
      font-size: 20px;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .val-label {
      font-size: 13px;
      font-weight: 500;
      color: var(--primary-l);
      margin-bottom: 2px;
    }
    .val-desc { font-size: 12px; color: rgba(255,255,255,0.5); }

    .about-img-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 180px 180px;
      gap: 12px;
    }
    .about-img-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }
    .about-img-grid img:first-child {
      grid-row: span 2;
      height: 100%;
    }

    /* ── Newsletter ── */
    .newsletter {
      background: var(--bg-warm);
      padding: 56px 24px;
      text-align: center;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .newsletter h2 {
      font-size: 26px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .newsletter p { color: var(--text-l); font-size: 15px; margin-bottom: 28px; }
    .newsletter-form {
      display: flex;
      max-width: 420px;
      margin: 0 auto;
      gap: 0;
      border-radius: 100px;
      overflow: hidden;
      box-shadow: 0 2px 12px var(--shadow);
      border: 1.5px solid var(--border);
    }
    .newsletter-form input {
      flex: 1;
      padding: 13px 20px;
      border: none;
      background: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--text);
      outline: none;
    }
    .newsletter-form input::placeholder { color: var(--text-l); }
    .newsletter-form button {
      background: var(--primary);
      color: var(--white);
      padding: 13px 24px;
      font-size: 14px;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      transition: background 0.2s;
    }
    .newsletter-form button:hover { background: var(--primary-d); }

    /* ── Footer ── */
    .site-footer {
      background: #1a1108;
      color: rgba(255,255,255,0.55);
      padding: 48px 24px 28px;
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand-name {
      font-family: 'Lora', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
    }
    .footer-brand-name span { color: var(--primary-l); }
    .footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
    .footer-socials { display: flex; gap: 10px; }
    .social-link {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      transition: background 0.2s;
    }
    .social-link:hover { background: var(--primary); }

    .footer-col h4 {
      font-family: 'Lora', serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 14px;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 9px; }
    .footer-col a {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--primary-l); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 12px;
    }
    .footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
    .footer-bottom a:hover { color: var(--primary-l); }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .about-inner { grid-template-columns: 1fr; gap: 36px; }
      .about-img-grid { display: none; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 640px) {
      .hero { padding: 56px 20px 52px; }
      .hero-stats { gap: 24px; }
      .features-inner { flex-direction: column; gap: 4px; }
      .feature-item { border-right: none; border-bottom: 1px solid var(--border); padding: 10px 16px; }
      .feature-item:last-child { border-bottom: none; }
      .shop-header { flex-direction: column; align-items: flex-start; }
      .search-wrap { max-width: 100%; width: 100%; }
      .footer-top { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .header-inner { padding: 0 16px; }
      .logo-name { font-size: 18px; }
      .back-link span { display: none; }
    }

    @media (max-width: 480px) {
      .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
      .product-body { padding: 12px 14px 14px; }
      .product-name { font-size: 14px; }
    }
