/* =========================================================
   Laaj Jewelry — Main Stylesheet
   Mobile-first, CSS Grid + Flexbox.
   ========================================================= */

:root {
  --primary: #8B0000;
  --primary-dark: #5e0000;
  --gold: #C9A84C;
  --gold-soft: #e9d28a;
  --ivory: #FFF8F0;
  --dark: #1a1a1a;
  --gray-700: #444;
  --gray-500: #777;
  --gray-300: #ddd;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --success: #2e7d32;
  --danger: #c62828;
  --warning: #f9a825;
  --info: #1976d2;
  --purple: #6a1b9a;
  --shadow-sm: 0 2px 6px rgba(0,0,0,.06);
  --shadow-md: 0 6px 18px rgba(0,0,0,.08);
  --shadow-lg: 0 14px 36px rgba(0,0,0,.12);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; color: var(--dark); }
h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.18);
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border: none; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.3px;
  cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #b59138; transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5a; color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ========== Header ========== */
.site-header {
  background: var(--white);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; gap: 16px;
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.4rem;
}
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.3rem; color: var(--dark); }
.site-nav { display: flex; gap: 24px; }
.site-nav a { color: var(--dark); font-weight: 500; font-size: 0.95rem; }
.site-nav a:hover { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-search { display: flex; align-items: center; }
.header-search input {
  width: 200px; padding: 8px 12px; border-radius: 999px 0 0 999px; border-right: 0;
}
.header-search button {
  border: 1px solid var(--gray-300); border-left: 0; background: var(--ivory);
  padding: 9px 14px; border-radius: 0 999px 999px 0; cursor: pointer; color: var(--dark);
}
.cart-link { position: relative; color: var(--dark); font-size: 1.2rem; }
.cart-link:hover { color: var(--primary); }
.cart-count {
  position: absolute; top: -8px; right: -10px;
  background: var(--gold); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  min-width: 18px; height: 18px; padding: 0 5px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
}
.nav-toggle { display: none; background: none; border: 0; font-size: 1.4rem; color: var(--dark); }

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 540px;
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.35)), url('../images/hero-bg.jpg') center/cover no-repeat, #2b0a0a;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 90px 20px;
}
.hero-content { max-width: 760px; }
.hero-eyebrow { letter-spacing: 4px; text-transform: uppercase; color: var(--gold-soft); font-size: 0.85rem; margin-bottom: 14px; }
.hero h1 { color: #fff; font-size: 3.2rem; margin-bottom: 14px; }
.hero p { font-size: 1.2rem; opacity: 0.92; margin-bottom: 28px; }

/* ========== Sections ========== */
.section { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { color: var(--dark); margin-bottom: 8px; }
.section-header h2::after {
  content: ""; display: block; width: 60px; height: 3px;
  background: var(--gold); margin: 14px auto 0;
}
.section-header p { color: var(--gray-500); }

/* ========== Product cards ========== */
.product-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.product-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-image {
  width: 100%; aspect-ratio: 1/1; overflow: hidden; background: var(--gray-100);
}
.product-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image img { transform: scale(1.06); }
.product-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-cat { color: var(--gold); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--dark); }
.product-name a { color: inherit; }
.product-name a:hover { color: var(--primary); }
.product-price { color: var(--primary); font-weight: 700; font-size: 1.05rem; margin-top: 2px; }
.product-card .btn { margin-top: 10px; }

/* ========== Categories ========== */
.cat-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.cat-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 4/3; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card .cat-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary), #4a0a0a);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.cat-card .cat-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(201,168,76,.18), transparent 60%);
}
.cat-card h3 {
  position: relative; z-index: 2; color: #fff;
  font-size: 1.6rem; text-align: center; padding: 0 20px;
}
.cat-card .cat-cta {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; padding: 6px 16px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 600; z-index: 2;
}

/* ========== WhatsApp banner ========== */
.wa-banner {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  color: #fff; padding: 50px 20px; text-align: center;
}
.wa-banner h2 { color: #fff; margin-bottom: 8px; }
.wa-banner .urdu { font-size: 1.2rem; opacity: 0.9; margin-bottom: 24px; }

/* ========== Footer ========== */
.site-footer { background: var(--dark); color: #ccc; margin-top: 60px; }
.footer-grid {
  display: grid; gap: 36px; padding: 60px 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.footer-col h3, .footer-col h4 { color: #fff; margin-bottom: 14px; }
.footer-col h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; }
.footer-col h4 { font-size: 1rem; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: #bbb; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid #2a2a2a; padding: 18px 0; text-align: center;
  font-size: 0.85rem; color: #888;
}

/* ========== Floating WhatsApp ========== */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.3); }

/* ========== Toasts ========== */
.toast-container {
  position: fixed; top: 20px; right: 20px; z-index: 1500;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  background: var(--dark); color: #fff;
  padding: 12px 18px; border-radius: var(--radius);
  font-size: 0.9rem; box-shadow: var(--shadow-md);
  opacity: 0; transform: translateX(20px);
  animation: toastIn .3s forwards;
}
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
@keyframes toastIn { to { opacity: 1; transform: translateX(0); } }

/* ========== Page heading ========== */
.page-heading {
  background: linear-gradient(135deg, var(--primary), #4a0a0a);
  color: #fff; padding: 60px 20px; text-align: center;
}
.page-heading h1 { color: #fff; }
.breadcrumb { font-size: 0.85rem; opacity: 0.85; margin-top: 6px; }
.breadcrumb a { color: var(--gold-soft); }

/* ========== Shop layout ========== */
.shop-layout {
  display: grid; gap: 30px; grid-template-columns: 260px 1fr;
}
.shop-sidebar {
  background: #fff; border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-sm); align-self: start;
}
.filter-group { margin-bottom: 24px; }
.filter-group h4 { font-family: 'Poppins', sans-serif; font-size: 0.95rem; margin-bottom: 12px; color: var(--dark); text-transform: uppercase; letter-spacing: 1px; }
.filter-group label { display: flex; align-items: center; gap: 8px; padding: 4px 0; cursor: pointer; }
.filter-group input[type="checkbox"],
.filter-group input[type="radio"] {
  width: auto;
  padding: 0;
  border: 0;
  background: none;
  flex-shrink: 0;
  margin: 0;
}
.filter-group label > * { flex-shrink: 0; }
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; gap: 12px; flex-wrap: wrap;
}
.shop-toolbar .count { color: var(--gray-500); font-size: 0.9rem; }
.shop-toolbar select { width: auto; }

/* ========== Product detail ========== */
.product-detail {
  display: grid; gap: 40px; grid-template-columns: 1fr 1fr;
}
.product-gallery .main-image {
  width: 100%; aspect-ratio: 1/1; overflow: hidden;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  background: #fff;
}
.product-gallery .main-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.product-gallery .main-image:hover img { transform: scale(1.15); }
.thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.thumbs img {
  width: 70px; height: 70px; object-fit: cover; border-radius: 8px;
  cursor: pointer; border: 2px solid transparent;
}
.thumbs img.active { border-color: var(--gold); }
.product-info h1 { font-size: 2rem; margin-bottom: 6px; }
.product-info .badge-cat {
  display: inline-block; background: var(--ivory); color: var(--primary);
  padding: 4px 12px; border-radius: 999px; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
  margin-bottom: 12px;
}
.product-info .price-big { color: var(--primary); font-size: 2rem; font-weight: 700; margin: 14px 0; }
.stock-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
}
.stock-badge.in { background: #e8f5e9; color: var(--success); }
.stock-badge.out { background: #ffebee; color: var(--danger); }
.product-info .desc { margin: 22px 0; color: var(--gray-700); line-height: 1.8; }
.qty-add {
  display: flex; gap: 12px; align-items: center; margin: 18px 0;
}
.qty-input {
  display: inline-flex; align-items: center; border: 1px solid var(--gray-300);
  border-radius: var(--radius); overflow: hidden;
}
.qty-input button {
  background: var(--ivory); border: 0; padding: 10px 14px; font-weight: 700; color: var(--dark);
}
.qty-input input {
  width: 56px; text-align: center; border: 0; border-radius: 0;
  border-left: 1px solid var(--gray-300); border-right: 1px solid var(--gray-300);
}

/* ========== Cart ========== */
.cart-wrap {
  display: grid; gap: 30px; grid-template-columns: 2fr 1fr;
}
.cart-items {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: 16px;
}
.cart-row {
  display: grid; grid-template-columns: 80px 1fr auto auto auto;
  gap: 14px; align-items: center; padding: 14px 4px;
  border-bottom: 1px solid var(--gray-300);
}
.cart-row:last-child { border-bottom: 0; }
.cart-row img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
.cart-row .name { font-weight: 600; color: var(--dark); }
.cart-row .price { color: var(--primary); font-weight: 600; }
.cart-row .remove { color: var(--danger); background: none; border: 0; font-size: 1.1rem; }
.cart-summary {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: 22px; align-self: start;
}
.cart-summary h3 { margin-bottom: 14px; }
.summary-row {
  display: flex; justify-content: space-between; padding: 8px 0;
  border-bottom: 1px dashed var(--gray-300);
}
.summary-row.total { font-weight: 700; font-size: 1.2rem; color: var(--primary); border-bottom: 0; padding-top: 14px; }
.empty-state {
  text-align: center; padding: 60px 20px;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.empty-state i { font-size: 3rem; color: var(--gray-300); margin-bottom: 12px; }

/* ========== Checkout ========== */
.checkout-wrap {
  display: grid; gap: 30px; grid-template-columns: 2fr 1fr;
}
.checkout-form {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: 28px;
}
.checkout-form h3 { margin-bottom: 18px; }
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; margin-bottom: 16px; }
.form-row.single { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-weight: 600; color: var(--dark); margin-bottom: 6px;
  font-size: 0.95rem;
}
.form-group label .urdu {
  display: block; font-weight: 400; font-size: 0.8rem; color: var(--gray-500);
  margin-top: 2px; direction: rtl;
}
.form-error {
  color: var(--danger); background: #ffebee; border: 1px solid #ffcdd2;
  padding: 10px 14px; border-radius: var(--radius); margin-bottom: 16px;
}
.form-success {
  color: var(--success); background: #e8f5e9; border: 1px solid #c8e6c9;
  padding: 10px 14px; border-radius: var(--radius); margin-bottom: 16px;
}
.cod-box {
  background: #e8f5e9; border: 1px solid #a5d6a7; color: #1b5e20;
  border-radius: var(--radius); padding: 18px; margin-top: 18px;
}
.cod-box .urdu { display: block; direction: rtl; margin-top: 4px; font-size: 0.95rem; }

/* ========== Order confirmed ========== */
.confirmed-card {
  text-align: center; max-width: 640px; margin: 0 auto;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 50px 30px;
}
.confirmed-card .check-icon {
  width: 90px; height: 90px; margin: 0 auto 20px;
  border-radius: 50%; background: var(--success); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.confirmed-card h1 { font-size: 2rem; }
.confirmed-card .urdu { font-size: 1.2rem; color: var(--gray-500); margin-bottom: 6px; direction: rtl; }
.order-id { font-size: 1.6rem; color: var(--primary); font-weight: 700; margin: 16px 0; letter-spacing: 1px; }

/* ========== About / generic content ========== */
.about-grid {
  display: grid; gap: 40px; grid-template-columns: 1fr 1fr; align-items: center;
}
.about-grid img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.values-grid {
  display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 30px;
}
.value-card {
  background: #fff; border-radius: var(--radius-lg); padding: 26px;
  text-align: center; box-shadow: var(--shadow-sm);
}
.value-card i { font-size: 2rem; color: var(--gold); margin-bottom: 10px; }

/* ========== Contact ========== */
.contact-grid {
  display: grid; gap: 30px; grid-template-columns: 1fr 1fr;
}
.contact-info { background: #fff; padding: 26px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.contact-info p { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.contact-info i { color: var(--gold); width: 22px; }
.map-embed {
  width: 100%; aspect-ratio: 16/9; background: var(--gray-100); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; color: var(--gray-500);
  margin-top: 20px;
}

/* ========== FAQ ========== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff; border-radius: var(--radius); margin-bottom: 12px;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: 0; text-align: left;
  padding: 18px 22px; font-weight: 600; color: var(--dark);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem;
}
.faq-q i { color: var(--gold); transition: transform var(--transition); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 22px; color: var(--gray-700);
}
.faq-item.open .faq-a {
  max-height: 320px; padding: 0 22px 18px;
}

/* ========== CMS Page (page.php) ========== */
.cms-page {
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-sm);
  color: var(--gray-700); line-height: 1.8; font-size: 1.02rem;
}
.cms-page p { margin-bottom: 14px; }
.cms-page h2 { font-family: 'Playfair Display', serif; color: var(--dark); margin: 24px 0 12px; font-size: 1.5rem; }
.cms-page h3 { font-family: 'Playfair Display', serif; color: var(--dark); margin: 20px 0 10px; font-size: 1.2rem; }
.cms-page ul, .cms-page ol { margin: 12px 0 14px 22px; }
.cms-page li { margin-bottom: 6px; list-style: disc; }
.cms-page ol li { list-style: decimal; }
.cms-page a { color: var(--primary); text-decoration: underline; }
.cms-page a:hover { color: var(--gold); }
.cms-page blockquote {
  border-left: 4px solid var(--gold);
  padding: 4px 0 4px 16px; color: #555; font-style: italic; margin: 16px 0;
}
.cms-page hr { border: 0; border-top: 1px dashed var(--gray-300); margin: 24px 0; }

/* ========== Pagination ========== */
.pagination {
  display: flex; gap: 6px; justify-content: center; margin-top: 36px; flex-wrap: wrap;
}
.pagination a, .pagination span {
  padding: 8px 14px; border-radius: 8px; background: #fff; color: var(--dark);
  border: 1px solid var(--gray-300); font-size: 0.9rem;
}
.pagination a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ========== Auth pages ========== */
.auth-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 30px 20px; background: linear-gradient(135deg, var(--primary), #4a0a0a);
}
.auth-card {
  background: #fff; border-radius: var(--radius-lg); padding: 40px;
  width: 100%; max-width: 420px; box-shadow: var(--shadow-lg);
}
.auth-card h1 { text-align: center; margin-bottom: 6px; font-size: 1.8rem; }
.auth-card p { text-align: center; color: var(--gray-500); margin-bottom: 24px; }

/* ========== Responsive ========== */
@media (max-width: 992px) {
  .shop-layout { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .cart-wrap { grid-template-columns: 1fr; }
  .checkout-wrap { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
  .hero { min-height: 420px; padding: 70px 20px; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0;
    background: #fff; box-shadow: var(--shadow-md); padding: 14px 20px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
  .header-search { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 70px 1fr; gap: 10px; }
  .cart-row .qty-input, .cart-row .price, .cart-row .remove {
    grid-column: 2; justify-self: start;
  }
}
