/* ============================================================
   PG Market — page styles (shop / product / cart / checkout)
   Loaded alongside styles.css on inner pages.
   ============================================================ */

/* ---------- Breadcrumb + page head ---------- */
.page-head { background: #fff; border-bottom: 1px solid var(--line); padding: 22px 0 24px; }
.crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.crumb a { transition: .15s; }
.crumb a:hover { color: var(--blue-700); }
.crumb svg { width: 14px; height: 14px; opacity: .6; }
.page-head h1 { font-family: var(--font-display); font-size: 30px; font-weight: 800; letter-spacing: -.025em; }
.page-head .sub { color: var(--muted); font-size: 14.5px; margin-top: 5px; }

/* ============================================================
   SHOP / LISTING
   ============================================================ */
.shop-layout { display: grid; grid-template-columns: 256px 1fr; gap: 28px; align-items: start; padding: 32px 0 64px; }

.filters { position: sticky; top: 150px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 6px 20px 20px; }
.filter-group { padding: 18px 0; border-bottom: 1px solid var(--line-2); }
.filter-group:last-child { border-bottom: none; }
.filter-group h4 { font-size: 14px; font-weight: 800; margin-bottom: 14px; letter-spacing: -.01em; }
.filter-list { display: grid; gap: 3px; }
.filter-list a, .filter-opt { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 11px; border-radius: 10px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); cursor: pointer; transition: .15s; }
.filter-list a:hover, .filter-opt:hover { background: var(--bg); }
.filter-list a.active { background: var(--blue-50); color: var(--blue-700); }
.filter-list a .ct { font-size: 11.5px; color: var(--faint); font-weight: 700; }
.filter-list a.active .ct { color: var(--blue-600); }
.filter-opt input { accent-color: var(--blue-700); width: 16px; height: 16px; }
.filter-opt label { flex: 1; cursor: pointer; }
.star-row { display: inline-flex; gap: 1px; color: #f5a623; }
.star-row svg { width: 13px; height: 13px; }
.price-inputs { display: flex; align-items: center; gap: 8px; }
.price-inputs input { width: 100%; border: 1.5px solid var(--line); border-radius: 10px; padding: 9px 11px; font-size: 13px; font-family: inherit; outline: none; }
.price-inputs input:focus { border-color: var(--blue-500); }
.clear-filters { width: 100%; margin-top: 4px; text-align: center; padding: 11px; border-radius: 10px; background: var(--bg); font-weight: 700; font-size: 13px; color: var(--ink-2); transition: .15s; }
.clear-filters:hover { background: var(--orange-50); color: var(--orange); }

.shop-main { min-width: 0; }
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 16px; margin-bottom: 22px; }
.toolbar .count { font-size: 14px; color: var(--muted); font-weight: 600; }
.toolbar .count b { color: var(--ink); font-weight: 800; }
.toolbar-right { display: flex; align-items: center; gap: 10px; }
.sort-select { display: flex; align-items: center; gap: 8px; }
.sort-select label { font-size: 13px; color: var(--muted); font-weight: 600; }
.sort-select select { border: 1.5px solid var(--line); border-radius: 10px; padding: 9px 32px 9px 12px; font-size: 13.5px; font-weight: 600; font-family: inherit; color: var(--ink); background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7c92' stroke-width='3'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 11px center; appearance: none; cursor: pointer; outline: none; }
.sort-select select:focus { border-color: var(--blue-500); }

.active-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip-f { display: inline-flex; align-items: center; gap: 7px; background: var(--blue-50); color: var(--blue-700); font-size: 12.5px; font-weight: 700; padding: 7px 8px 7px 13px; border-radius: 999px; }
.chip-f button { width: 18px; height: 18px; border-radius: 50%; background: rgba(27,75,174,.14); color: var(--blue-700); display: grid; place-items: center; }
.chip-f button svg { width: 11px; height: 11px; }

.shop-main .prod-grid { grid-template-columns: repeat(4, 1fr); }
.empty-state { background: #fff; border: 1px dashed var(--line); border-radius: var(--radius); padding: 70px 20px; text-align: center; }
.empty-state .ic { width: 64px; height: 64px; border-radius: 18px; background: var(--bg); color: var(--faint); display: grid; place-items: center; margin: 0 auto 18px; }
.empty-state .ic svg { width: 30px; height: 30px; }
.empty-state h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.empty-state p { color: var(--muted); font-size: 14px; margin-bottom: 18px; }

.pagination { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 36px; }
.pagination button { min-width: 42px; height: 42px; border-radius: 12px; background: #fff; border: 1px solid var(--line); font-weight: 700; font-size: 14px; color: var(--ink-2); transition: .15s; }
.pagination button:hover { border-color: var(--blue-500); color: var(--blue-700); }
.pagination button.active { background: var(--blue-700); color: #fff; border-color: var(--blue-700); }
.pagination button svg { width: 16px; height: 16px; }

/* Shop hero (vendor view) */
.vendor-hero { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: 34px 36px; color: #fff; margin: 28px 0 4px; isolation: isolate; display: flex; align-items: center; gap: 22px; }
.vendor-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; }
.vendor-hero .v-ava { width: 84px; height: 84px; border-radius: 22px; border: 3px solid rgba(255,255,255,.5); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 34px; flex-shrink: 0; background: rgba(255,255,255,.16); }
.vendor-hero h1 { font-family: var(--font-display); font-size: 28px; font-weight: 800; display: flex; align-items: center; gap: 9px; }
.vendor-hero h1 svg { width: 22px; height: 22px; }
.vendor-hero .v-meta { display: flex; gap: 22px; margin-top: 10px; font-size: 13.5px; }
.vendor-hero .v-meta b { font-family: var(--font-display); font-size: 17px; display: block; }
.vendor-hero .v-meta span { opacity: .8; }

/* ============================================================
   PRODUCT DETAIL (PDP)
   ============================================================ */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; padding: 32px 0 56px; align-items: start; }
.gallery { position: sticky; top: 150px; }
.gallery-main { position: relative; aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: #fff; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main .prod-badge { font-size: 11.5px; padding: 6px 12px; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.gallery-thumbs button { aspect-ratio: 1/1; border-radius: 14px; overflow: hidden; border: 2px solid var(--line); background: #fff; transition: .15s; padding: 0; }
.gallery-thumbs button.active { border-color: var(--blue-600); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pdp-info .shop-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--bg); border: 1px solid var(--line); padding: 6px 14px 6px 7px; border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--ink-2); margin-bottom: 16px; transition: .15s; }
.pdp-info .shop-pill:hover { border-color: var(--blue-300); color: var(--blue-700); }
.pdp-info .shop-pill .sd { width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 800; }
.pdp-info .shop-pill svg { width: 14px; height: 14px; color: var(--blue-600); }
.pdp-info h1 { font-family: var(--font-display); font-size: 32px; line-height: 1.15; font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; text-wrap: balance; }
.pdp-rating { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; font-size: 13.5px; }
.pdp-rating .stars svg { width: 16px; height: 16px; }
.pdp-rating .sep { width: 1px; height: 16px; background: var(--line); }
.pdp-rating .sold { color: var(--muted); font-weight: 600; }
.pdp-rating .instock { color: #1aa06d; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }
.pdp-rating .instock svg { width: 15px; height: 15px; }

.pdp-price { display: flex; align-items: baseline; gap: 14px; background: var(--blue-50); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 22px; }
.pdp-price .now { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.pdp-price s { font-size: 18px; color: var(--faint); }
.pdp-price .save { margin-left: auto; background: #1aa06d; color: #fff; font-size: 12.5px; font-weight: 800; padding: 6px 12px; border-radius: 999px; align-self: center; }

.pdp-desc { color: var(--ink-2); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.pdp-opts { margin-bottom: 24px; }
.pdp-opts .lbl { font-size: 13px; font-weight: 800; margin-bottom: 10px; }
.opt-row { display: flex; flex-wrap: wrap; gap: 9px; }
.opt-pill { padding: 9px 16px; border-radius: 10px; border: 1.5px solid var(--line); font-size: 13.5px; font-weight: 700; color: var(--ink-2); cursor: pointer; transition: .15s; }
.opt-pill:hover { border-color: var(--blue-400); }
.opt-pill.active { border-color: var(--blue-700); background: var(--blue-700); color: #fff; }
.swatch { width: 38px; height: 38px; border-radius: 11px; border: 2px solid var(--line); cursor: pointer; position: relative; transition: .15s; }
.swatch.active { border-color: var(--ink); transform: scale(1.06); }

.pdp-buy { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.qty { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 12px; overflow: hidden; }
.qty button { width: 44px; height: 50px; display: grid; place-items: center; color: var(--ink-2); transition: .15s; }
.qty button:hover { background: var(--bg); color: var(--blue-700); }
.qty button svg { width: 17px; height: 17px; }
.qty input { width: 48px; height: 50px; border: none; text-align: center; font-size: 16px; font-weight: 800; font-family: var(--font-display); outline: none; color: var(--ink); -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.pdp-buy .btn { flex: 1; padding: 15px 24px; font-size: 15.5px; }
.pdp-buy .wish-big { width: 52px; height: 52px; border-radius: 14px; border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--ink-2); flex-shrink: 0; transition: .15s; }
.pdp-buy .wish-big:hover { border-color: var(--orange); color: var(--orange); }
.pdp-buy .wish-big svg { width: 22px; height: 22px; }
.pdp-buy .wish-big.on { color: var(--orange); border-color: var(--orange-100); background: var(--orange-50); }
.pdp-buy .wish-big.on svg { fill: var(--orange); }

.pdp-assure { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.assure { display: flex; align-items: center; gap: 12px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 14px; }
.assure .ic { width: 38px; height: 38px; border-radius: 11px; background: var(--blue-50); color: var(--blue-700); display: grid; place-items: center; flex-shrink: 0; }
.assure .ic svg { width: 19px; height: 19px; }
.assure b { font-size: 13px; font-weight: 700; display: block; }
.assure span { font-size: 11.5px; color: var(--muted); }

/* PDP tabs */
.pdp-tabs { border-top: 1px solid var(--line); padding-top: 8px; }
.tab-heads { display: flex; gap: 6px; border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.tab-heads button { padding: 16px 20px; font-size: 15px; font-weight: 700; color: var(--muted); border-bottom: 2.5px solid transparent; margin-bottom: -1px; transition: .15s; }
.tab-heads button.active { color: var(--blue-700); border-color: var(--blue-700); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.specs { width: 100%; border-collapse: collapse; max-width: 640px; }
.specs tr { border-bottom: 1px solid var(--line-2); }
.specs td { padding: 13px 4px; font-size: 14px; }
.specs td:first-child { color: var(--muted); font-weight: 600; width: 200px; }
.specs td:last-child { font-weight: 600; }
.desc-long { max-width: 720px; color: var(--ink-2); font-size: 15px; line-height: 1.8; }
.desc-long p { margin-bottom: 14px; }

.review-summary { display: grid; grid-template-columns: 200px 1fr; gap: 36px; max-width: 720px; align-items: center; margin-bottom: 30px; }
.rev-big { text-align: center; }
.rev-big .num { font-family: var(--font-display); font-size: 54px; font-weight: 800; line-height: 1; }
.rev-big .stars { justify-content: center; margin: 8px 0 4px; }
.rev-big .stars svg { width: 16px; height: 16px; }
.rev-big small { color: var(--muted); font-size: 13px; }
.rev-bars { display: grid; gap: 7px; }
.rev-bar { display: flex; align-items: center; gap: 10px; font-size: 12.5px; }
.rev-bar .lab { width: 36px; color: var(--muted); font-weight: 600; }
.rev-bar .track { flex: 1; height: 7px; background: var(--line); border-radius: 99px; overflow: hidden; }
.rev-bar .fill { height: 100%; background: #f5a623; border-radius: 99px; }
.review { padding: 18px 0; border-top: 1px solid var(--line-2); max-width: 720px; }
.review .rh { display: flex; align-items: center; gap: 11px; margin-bottom: 9px; }
.review .ava { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 14px; }
.review .who b { font-size: 13.5px; }
.review .who .stars svg { width: 12px; height: 12px; }
.review .when { margin-left: auto; font-size: 12px; color: var(--faint); }
.review p { font-size: 14px; color: var(--ink-2); line-height: 1.6; }

/* ============================================================
   CART
   ============================================================ */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; padding: 32px 0 64px; align-items: start; }
.cart-lines { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cart-line { display: grid; grid-template-columns: 92px 1fr auto; gap: 18px; padding: 20px; border-bottom: 1px solid var(--line-2); align-items: center; }
.cart-line:last-child { border-bottom: none; }
.cart-line .cl-img { width: 92px; height: 92px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.cart-line .cl-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .cl-shop { font-size: 11.5px; color: var(--muted); font-weight: 600; margin-bottom: 3px; }
.cart-line .cl-name { font-weight: 700; font-size: 15px; line-height: 1.3; margin-bottom: 6px; }
.cart-line .cl-name a:hover { color: var(--blue-700); }
.cart-line .cl-unit { font-size: 13px; color: var(--muted); }
.cart-line .cl-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.cart-line .cl-price { font-family: var(--font-display); font-weight: 800; font-size: 18px; }
.cart-line .qty button { width: 36px; height: 40px; } .cart-line .qty input { height: 40px; width: 42px; font-size: 15px; }
.cart-line .cl-remove { font-size: 12.5px; color: var(--faint); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; transition: .15s; }
.cart-line .cl-remove:hover { color: #e0431f; }
.cart-line .cl-remove svg { width: 13px; height: 13px; }

.cart-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.cart-top b { font-size: 15px; }
.cart-top .clear-cart { font-size: 13px; color: var(--faint); font-weight: 600; transition: .15s; }
.cart-top .clear-cart:hover { color: #e0431f; }

.summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; position: sticky; top: 150px; }
.summary h3 { font-family: var(--font-display); font-size: 18px; font-weight: 800; margin-bottom: 18px; }
.sum-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 12px; color: var(--ink-2); }
.sum-row .free { color: #1aa06d; font-weight: 700; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; margin-top: 6px; border-top: 1px solid var(--line); }
.sum-total span { font-weight: 700; font-size: 15px; }
.sum-total b { font-family: var(--font-display); font-size: 26px; font-weight: 800; letter-spacing: -.02em; }
.summary .btn { width: 100%; margin-top: 18px; }
.promo-box { display: flex; gap: 8px; margin: 16px 0 4px; }
.promo-box input { flex: 1; border: 1.5px solid var(--line); border-radius: 11px; padding: 11px 13px; font-size: 13.5px; font-family: inherit; outline: none; }
.promo-box input:focus { border-color: var(--blue-500); }
.promo-box button { padding: 0 18px; border-radius: 11px; background: var(--ink); color: #fff; font-weight: 700; font-size: 13.5px; }
.sum-assure { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 16px; font-size: 12px; color: var(--muted); }
.sum-assure svg { width: 15px; height: 15px; color: #1aa06d; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.steps-bar { display: flex; align-items: center; justify-content: center; gap: 0; padding: 26px 0; }
.steps-bar .step { display: flex; align-items: center; gap: 10px; color: var(--faint); }
.steps-bar .step .n { width: 30px; height: 30px; border-radius: 50%; background: var(--line); color: var(--muted); display: grid; place-items: center; font-weight: 800; font-size: 13px; }
.steps-bar .step.done .n, .steps-bar .step.active .n { background: var(--blue-700); color: #fff; }
.steps-bar .step.active b { color: var(--ink); }
.steps-bar .step b { font-size: 14px; font-weight: 700; }
.steps-bar .bar { width: 60px; height: 2px; background: var(--line); margin: 0 16px; }
.steps-bar .step.done + .bar { background: var(--blue-700); }

.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; padding: 8px 0 64px; align-items: start; }
.co-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 20px; }
.co-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 800; margin-bottom: 4px; display: flex; align-items: center; gap: 10px; }
.co-card h3 .n { width: 26px; height: 26px; border-radius: 8px; background: var(--blue-700); color: #fff; display: grid; place-items: center; font-size: 13px; }
.co-card .hint { color: var(--muted); font-size: 13px; margin: 0 0 20px 36px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink-2); }
.field input, .field select, .field textarea { border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px; font-size: 14px; font-family: inherit; outline: none; transition: .15s; color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px var(--blue-50); }
.field input.bad { border-color: #e0431f; }

.pay-opts { display: grid; gap: 12px; }
.pay-opt { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1.5px solid var(--line); border-radius: 14px; cursor: pointer; transition: .15s; }
.pay-opt:hover { border-color: var(--blue-400); }
.pay-opt.active { border-color: var(--blue-700); background: var(--blue-50); }
.pay-opt .radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line); flex-shrink: 0; display: grid; place-items: center; transition: .15s; }
.pay-opt.active .radio { border-color: var(--blue-700); }
.pay-opt.active .radio::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--blue-700); }
.pay-opt .pi { width: 48px; height: 34px; border-radius: 8px; display: grid; place-items: center; font-weight: 800; font-size: 12px; color: #fff; flex-shrink: 0; letter-spacing: .02em; }
.pay-opt b { font-size: 14.5px; display: block; }
.pay-opt span { font-size: 12.5px; color: var(--muted); }

.co-summary { position: sticky; top: 150px; }
.co-items { display: grid; gap: 14px; margin-bottom: 18px; max-height: 320px; overflow: auto; }
.co-item { display: grid; grid-template-columns: 54px 1fr auto; gap: 12px; align-items: center; }
.co-item .ci-img { width: 54px; height: 54px; border-radius: 11px; overflow: hidden; border: 1px solid var(--line); position: relative; }
.co-item .ci-img img { width: 100%; height: 100%; object-fit: cover; }
.co-item .ci-q { position: absolute; top: -7px; right: -7px; min-width: 20px; height: 20px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 800; display: grid; place-items: center; border: 2px solid #fff; padding: 0 4px; }
.co-item .ci-name { font-size: 13px; font-weight: 700; line-height: 1.25; }
.co-item .ci-shop { font-size: 11px; color: var(--muted); }
.co-item .ci-price { font-weight: 800; font-size: 14px; font-family: var(--font-display); }

/* Success */
.success { max-width: 560px; margin: 0 auto; text-align: center; padding: 60px 0 80px; }
.success .check { width: 96px; height: 96px; border-radius: 50%; background: #e8f7f0; color: #1aa06d; display: grid; place-items: center; margin: 0 auto 26px; animation: pop .5s cubic-bezier(.2,.9,.3,1.3); }
.success .check svg { width: 48px; height: 48px; }
@keyframes pop { from { transform: scale(.5); opacity: 0; } }
.success h1 { font-family: var(--font-display); font-size: 32px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.success p { color: var(--muted); font-size: 15.5px; line-height: 1.6; margin-bottom: 8px; }
.success .order-no { display: inline-block; background: var(--blue-50); color: var(--blue-700); font-weight: 800; font-family: var(--font-display); padding: 9px 18px; border-radius: 999px; margin: 14px 0 28px; letter-spacing: .02em; }
.success .s-actions { display: flex; gap: 14px; justify-content: center; }
.success .s-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: left; margin-top: 36px; }
.success .s-card .sr { display: flex; justify-content: space-between; padding: 9px 0; font-size: 14px; }
.success .s-card .sr b { font-weight: 700; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; display: none; }
  .shop-main .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .pdp { grid-template-columns: 1fr; gap: 28px; }
  .gallery { position: static; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .summary, .co-summary { position: static; }
  .review-summary { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 720px) {
  .shop-main .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .pdp-info h1 { font-size: 26px; }
  .cart-line { grid-template-columns: 72px 1fr; }
  .cart-line .cl-img { width: 72px; height: 72px; }
  .cart-line .cl-right { grid-column: 2; flex-direction: row; align-items: center; justify-content: space-between; width: 100%; }
  .pdp-assure { grid-template-columns: 1fr; }
}
