/* ============================================================
   product.css — Products Page & Product Detail Page
   Extends style.css — do NOT modify style.css
   ============================================================ */

/* ============================================================
   PRODUCT PAGE — CATEGORY CARDS
   Square, sharp corners, name above image, dark bottom layer
   Hover = flipbox effect, button "Explore Product"
   ============================================================ */

.prod-page-section { background: var(--bg-light); }

.prod-categories-intro {
  text-align: center;
  padding: 72px 0 48px;
}

/* 3-col grid, equal square-ish cards */
.prod-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 80px;
}

/* ---- FLIP CARD WRAPPER ---- */
.pcat-flip {
  height: 420px;
  perspective: 1200px;
  cursor: pointer;
}

.pcat-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.pcat-flip:hover .pcat-flip-inner {
  transform: rotateY(180deg);
}

/* Shared face rules */
.pcat-front,
.pcat-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 0; /* NO rounded corners */
  overflow: hidden;
}

/* ---- FRONT FACE ---- */
.pcat-front {
  background: transparent;
  transform: rotateY(0deg); /* Show front face initially */
  z-index: 2; /* Ensure front is on top */
}

/* Image fills the entire front face */
.pcat-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pcat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.pcat-flip:hover .pcat-img-wrap img {
  transform: scale(1.06);
}

/* Stronger dark gradient so title is readable */
.pcat-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.05) 0%,
    rgba(10, 22, 40, 0.35) 45%,
    rgba(10, 22, 40, 0.82) 100%
  );
  z-index: 1;
}

/* Title overlay — bottom-aligned, inside image */
.pcat-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 22px 22px 20px;
  border-bottom: 3px solid var(--saffron);
}

.pcat-title-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.pcat-title-overlay .pcat-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ---- BACK FACE ---- */
.pcat-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  background: var(--navy);
}

/* Blurred/dimmed background image */
.pcat-back-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(3px) brightness(0.35);
  transform: scale(1.06);
  z-index: 0;
}

.pcat-back-content {
  position: relative;
  z-index: 2;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}

/* Category icon on back */
.pcat-back-icon {
  width: 60px;
  height: 60px;
  border-radius: 0;
  background: var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 18px;
  box-shadow: 0 4px 18px rgba(255, 153, 51, 0.45);
}

.pcat-back-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.pcat-back-content p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

/* "Explore Product" button */
.pcat-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  background: var(--saffron);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 6px 22px rgba(255, 153, 51, 0.4);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  align-self: flex-start;
}

.pcat-explore-btn:hover {
  background: var(--saffron-dark);
  transform: translateX(4px);
  box-shadow: 0 10px 32px rgba(255, 153, 51, 0.55);
}

.pcat-explore-btn i {
  font-size: 0.85rem;
  transition: transform var(--ease);
}

.pcat-explore-btn:hover i {
  transform: translateX(4px);
}

/* Tricolor accent bottom strip on back */
.pcat-back::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron) 33%, var(--white) 33%, var(--white) 66%, var(--green-india) 66%);
  z-index: 3;
}

/* ============================================================
   WHY CHOOSE US STRIP (between categories and footer)
   ============================================================ */
.prod-why-strip {
  background: var(--navy);
  padding: 56px 0;
  position: relative;
}

.prod-why-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron) 33%, var(--white) 33%, var(--white) 66%, var(--green-india) 66%);
}

.prod-why-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.pwd-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--ease);
}
.pwd-item:last-child { border-right: none; }
.pwd-item:hover { background: rgba(255, 255, 255, 0.04); }

.pwd-icon {
  width: 52px;
  height: 52px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  margin: 0 auto 14px;
  transition: transform var(--bounce);
}
.pwd-item:hover .pwd-icon { transform: scale(1.12) rotate(-8deg); }

.pwd-item h4 {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.pwd-item p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

/* --- Hero/header area for detail page --- */
.pd2-hero {
  background: var(--bg-light);
  padding: 64px 0 0;
}

.pd2-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ---- Gallery col ---- */
.pd2-gallery {}

.pd2-main-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
  margin-bottom: 12px;
  background: var(--navy);
}

.pd2-main-img-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron) 33%, var(--white) 33%, var(--white) 66%, var(--green-india) 66%);
  z-index: 2;
}

.pd2-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.pd2-main-img-wrap:hover .pd2-main-img {
  transform: scale(1.03);
}

.pd2-cat-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--saffron);
  color: var(--white);
  padding: 5px 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  border-radius: 0;
}

/* Thumbnail row */
.pd2-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.pd2-thumb {
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--ease);
  border-radius: 0;
}
.pd2-thumb:hover,
.pd2-thumb.active { border-color: var(--saffron); }

.pd2-thumb img {
  width: 100%;
  height: 78px;
  object-fit: cover;
  display: block;
  transition: transform var(--ease);
}
.pd2-thumb:hover img { transform: scale(1.06); }

/* ---- Info col ---- */
.pd2-info {}

.pd2-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1.5px solid var(--saffron);
  color: var(--saffron-dark);
  background: var(--saffron-pale);
  margin-bottom: 14px;
  border-radius: 0;
}

.pd2-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}

.pd2-divider {
  height: 4px;
  width: 72px;
  display: flex;
  overflow: hidden;
  margin-bottom: 22px;
  border-radius: 0;
}
.pd2-divider span:nth-child(1) { flex: 1; background: var(--saffron); }
.pd2-divider span:nth-child(2) { flex: 1; background: var(--white); border: 1px solid var(--grey-200); }
.pd2-divider span:nth-child(3) { flex: 1; background: var(--green-india); }

.pd2-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 24px;
}

/* Highlights grid */
.pd2-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 26px;
}

.pd2-hl {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  background: var(--bg-light);
  border-left: 3px solid var(--saffron);
  font-weight: 700;
  font-size: 0.79rem;
  color: var(--navy);
  border-radius: 0;
  transition: background var(--ease), border-color var(--ease);
}
.pd2-hl:hover { background: var(--saffron-pale); }
.pd2-hl i { color: var(--saffron); font-size: 0.85rem; flex-shrink: 0; }
.pd2-hl-green { border-left-color: var(--green-india) !important; }
.pd2-hl-green i { color: var(--green-india) !important; }

/* Specs */
.pd2-specs {
  margin-bottom: 26px;
}

.pd2-specs-title {
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pd2-specs-title i { color: var(--saffron); }

.pd2-spec-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pd2-spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-100);
}
.pd2-spec-list li:last-child { border-bottom: none; }
.pd2-spec-list li i { color: var(--green-india); font-size: 0.78rem; flex-shrink: 0; margin-top: 3px; }
.pd2-spec-list li strong { color: var(--navy); min-width: 110px; display: inline-block; }

/* Shipping / delivery strip */
.pd2-shipping {
  display: flex;
  gap: 0;
  border: 1px solid var(--grey-100);
  margin-bottom: 26px;
  background: var(--white);
  overflow: hidden;
}
.pd2-ship-item {
  flex: 1;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid var(--grey-100);
  font-size: 0.78rem;
}
.pd2-ship-item:last-child { border-right: none; }
.pd2-ship-item i { font-size: 1.2rem; flex-shrink: 0; }
.pd2-ship-item strong { display: block; font-weight: 800; font-size: 0.8rem; color: var(--navy); }
.pd2-ship-item span { color: var(--text-muted); font-size: 0.72rem; }
.pd2-si-saffron i { color: var(--saffron-dark); }
.pd2-si-green   i { color: var(--green-india); }
.pd2-si-navy    i { color: var(--navy); }

/* CTA buttons */
.pd2-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pd2-enquire-btn {
  flex: 0 0 auto;
  max-width: 280px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 22px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  border-radius: 0;
  box-shadow: var(--shadow-saf);
  text-decoration: none;
  transition: transform var(--ease), box-shadow var(--ease);
}
.pd2-enquire-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(255, 153, 51, 0.55);
}

.pd2-wa-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 22px;
  background: #25d366;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 0.84rem;
  border: none;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: transform var(--ease), box-shadow var(--ease);
}
.pd2-wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

/* ============================================================
   PRODUCT DETAIL — CONTENT SECTION (below hero)
   ============================================================ */
.pd2-content-section {
  background: var(--white);
  padding: 72px 0;
}

.pd2-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

/* ---- Gallery block ---- */
.pd2-gallery-block {}

.pd2-gallery-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--saffron);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pd2-gallery-block-title i { color: var(--saffron); font-size: 1rem; }

.pd2-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  grid-auto-rows: 1fr;
}

.pd2-gallery-grid .pd2-gimg {
  overflow: hidden;
  border-radius: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd2-gallery-grid .pd2-gimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pd2-gallery-grid .pd2-gimg:hover img { transform: scale(1.07); }

/* ---- Enquiry Form ---- */
.pd2-enquiry-block {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.pd2-form-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-md);
  border-radius: 0;
  overflow: hidden;
}

.pd2-form-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 26px 28px;
  position: relative;
}

.pd2-form-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron) 33%, var(--white) 33%, var(--white) 66%, var(--green-india) 66%);
}

.pd2-form-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.pd2-form-header p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.pd2-form-body {
  padding: 28px;
}

.pd2-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pd2-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.pd2-field.full { grid-column: 1 / -1; }

.pd2-field label {
  font-weight: 700;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.pd2-field input,
.pd2-field select,
.pd2-field textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.87rem;
  color: var(--text);
  padding: 11px 14px;
  border: 1.5px solid var(--grey-200);
  background: var(--off-white);
  outline: none;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
  border-radius: 0;
  width: 100%;
}

.pd2-field input:focus,
.pd2-field select:focus,
.pd2-field textarea:focus {
  border-color: var(--saffron);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.12);
}

.pd2-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e07a10' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.pd2-field textarea {
  resize: vertical;
  min-height: 100px;
}

.pd2-form-submit {
  width: auto;
  max-width: 200px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 0;
  box-shadow: var(--shadow-saf);
  transition: transform var(--ease), box-shadow var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px auto 0;
}

.pd2-form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(255, 153, 51, 0.55);
}

.pd2-form-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 12px;
}
.pd2-form-note i { color: var(--green-india); }

/* Success message */
.pd2-form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}
.pd2-form-success i {
  font-size: 2.5rem;
  color: var(--green-india);
  margin-bottom: 12px;
  display: block;
}
.pd2-form-success h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.pd2-form-success p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ============================================================
   PRODUCT DETAIL — RELATED PRODUCTS
   ============================================================ */
.pd2-related {
  background: var(--bg-light);
  padding: 72px 0;
}

.pd2-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Reuse .pcat-flip styles but shorter */
.pd2-related-flip {
  height: 300px;
  perspective: 1100px;
  cursor: pointer;
}
.pd2-related-flip .pcat-flip-inner { }
.pd2-related-flip:hover .pcat-flip-inner { transform: rotateY(180deg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .prod-cat-grid { grid-template-columns: 1fr 1fr; }
  .pcat-flip { height: 380px; }
  .prod-why-inner { grid-template-columns: 1fr 1fr; }
  .pwd-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .pd2-related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .prod-cat-grid { grid-template-columns: 1fr; }
  .pcat-flip { height: 360px; }
  .pd2-cta-row { flex-direction: column; }
  .prod-why-inner { grid-template-columns: 1fr; }
  .pd2-related-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FULL-WIDTH DETAIL PAGE STYLES
   ============================================================ */

/* Info strip — full width */
.pd2-info-strip {
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--grey-100);
  margin-bottom: 0;
}

/* Highlights 4-col when full width */
.pd2-highlights-full {
  grid-template-columns: repeat(4, 1fr) !important;
  margin-bottom: 26px;
}

/* Specs + shipping side by side */
.pd2-specs-ship-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.pd2-specs-ship-row .pd2-shipping {
  flex-direction: column;
  border: 1px solid var(--grey-100);
  margin-bottom: 0;
}
.pd2-specs-ship-row .pd2-ship-item {
  border-right: none;
  border-bottom: 1px solid var(--grey-100);
}
.pd2-specs-ship-row .pd2-ship-item:last-child { border-bottom: none; }

/* Full-width gallery: 3-col grid */
.pd2-gallery-grid-full {
  grid-template-columns: repeat(3, 1fr) !important;
  grid-auto-rows: 1fr;
}
.pd2-gallery-grid-full .pd2-gimg {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid #F18B24;
}
.pd2-gallery-grid-full .pd2-gimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Centred enquiry form */
.pd2-enquiry-full {
  max-width: 1200px;
  margin: 0 auto;
}

.pd2-form-card-full { width: 100%; }

.pd2-form-card-full .pd2-form-row {
  grid-template-columns: 1fr 1fr 1fr;
}

/* Responsive — full width detail page */
@media (max-width: 1100px) {
  .pd2-highlights-full { grid-template-columns: 1fr 1fr !important; }
  .pd2-specs-ship-row { grid-template-columns: 1fr; }
  .pd2-gallery-grid-full { grid-template-columns: 1fr 1fr !important; }
  .pd2-gallery-grid-full .pd2-gimg:first-child { grid-column: 1 / -1 !important; }
  .pd2-form-card-full .pd2-form-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .pd2-highlights-full { grid-template-columns: 1fr 1fr !important; }
  .pd2-gallery-grid-full { grid-template-columns: 1fr 1fr !important; }
  .pd2-form-card-full .pd2-form-row { grid-template-columns: 1fr; }
}