/* =======================================================
   PRODUCT CHECKOUT (PAGE-SPECIFIC)
   File: product-checkout.css
   Purpose: Styles only the product checkout layout and logic
======================================================= */

/* ROOT WRAPPER */
.product-checkout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
 }

/* GRID LAYOUT */
.pc-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

/* IMAGE COLUMN */
.pc-image-col {
  text-align: center;
}

.pc-main-image {
  width: 100%;
  max-width: 420px;
  border-radius: 0.6rem;
  box-shadow: 0 12px 22px rgba(0,0,0,0.15);
  background-color: #111b26;
}

/* ============================
   INFO BOX UNDER PRODUCT IMAGE
============================ */
/* INFO BOX DEFAULT STATE */
.pc-info-box.hidden {
  display: none;
}

/* INFO BOX WHEN ACTIVE */
/* ============================
   INFO BOX (NO RED LINE)
============================ */

/* ============================
   INFO BOX (CLEAN VERSION)
============================ */

.pc-info-box {
  margin-top: 0.5rem;
  padding: 0.2rem 0;
  background: none;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #333;
}

.pc-info-box h4 {
  margin: 0.35rem 0 0.15rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #132d4d;
}

.pc-info-box p {
  margin: 0;
  font-size: 0.78rem;
  color: #333;
}

 .patriot-line2 {
  width: 100px;
  height: 4px;
  margin: 1.5rem auto 0rem;
  background: linear-gradient(to right, #c5152a, #ffffff, #1b3a63);
  border-radius: 2px;
}

.pc-info-sale {
  margin-top: 0.4rem;
  color: #b91c1c;
  font-weight: bold;
}

.pc-info-note {
  margin-top: 0.4rem;
  font-style: italic;
  color: #555;
}



@media (max-width: 500px) {
  .pc-total {
    font-size: 1.15rem;
  }

  .pc-options label {
    font-size: 0.9rem;
  }
}

/* DETAILS COLUMN */
.pc-details-col {
  padding-top: 0.5rem;
}

/* PRODUCT TITLE */
.pc-title {
  font-family: 'Cinzel', serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: #132d4d;
}

/* SUBTITLE */
.pc-subtitle {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.5rem;
}

/* PRODUCT META */
.pc-meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 1rem;
}

/* OPTIONS */
.pc-options {
  margin: 1rem 0;
  font-size: 0.95rem;
}

.pc-options label {
  display: block;
  margin-bottom: 0.4rem;
  cursor: pointer;
}

/* ENGRAVING BOX */
.pc-engraving-box {
  background: #f5f7fa;
  border: 1px solid #cfd8e3;
  padding: 0.8rem;
  border-radius: 0.4rem;
  margin-bottom: 0.8rem;
}

.pc-engraving-box input {
  width: 100%;
  padding: 0.35rem;
  margin-bottom: 0.4rem;
  border: 1px solid #bbb;
  border-radius: 0.3rem;
  font-size: 0.9rem;
}

/* QUANTITY */
.pc-qty {
  margin-top: 0.6rem;
}

.pc-qty input {
  width: 75px;
  padding: 0.3rem;
  margin-left: 0.4rem;
  font-size: 0.9rem;
}

/* TOTAL PRICE */
.pc-total {
  margin: 1.2rem 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #001f3f;
}

/* WARNINGS & ERRORS */
.pc-error {
  color: #b00020;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.pc-warning {
  display: none;
  font-size: 0.85rem;
  color: #a67c00;
  margin-bottom: 0.4rem;
}

/* PAYPAL */
#paypal-button-container {
  margin-top: 0.8rem;
}

/* PAYMENT NOTE */
.pc-note {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.3rem;
}

@media (max-width: 600px) {
  .pc-info-box {
    font-size: 0.75rem;
  }
}


/* ===============================
   CHECKOUT PAGE (scoped)
   =============================== */

.checkout-page .checkout-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  gap: 20px;
}

.checkout-page .product-image {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 60px;
}

.checkout-page .product-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.checkout-page .product-info {
  flex: 1 1 400px;
}

.checkout-page .checkout-title{
  margin-top: 0; font-size: 1.8rem;
}


.checkout-page #engravingInputs input {
  width: 100%;
  max-width: 500px;
  font-family: monospace;
  font-size: 16px;
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 12px;
  box-sizing: border-box;
}

.checkout-page #quantity {
  width: 60px;
  padding: 6px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

/* Only if you still use a normal <button> on checkout */
.checkout-page button {
  margin-top: 12px;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #004080;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
}

/* Cart row buttons should NOT inherit the old checkout-page button margin */
.checkout-page button.checkout-paybtn{
  margin-top: 0 !important;
}

.checkout-page button:hover {
  background: #00305a;
}

.checkout-page .error {
  color: #c00;
  font-size: 0.95rem;
  margin-top: 6px;
  display: none;
}

.checkout-page .venmo-note {
  font-size: 0.9rem;
  color: #006400;
  margin-top: 6px;
  display: none;
}

@media (max-width: 760px) {
  .checkout-page .checkout-container { flex-direction: column; }
  .checkout-page .product-image,
  .checkout-page .product-info {
    flex: 1 1 100%;
    margin-right: 0;
  }
}

/* Rules added 030626 430pm Start */
/* ===== Checkout text + spacing ===== */
.checkout-page .checkout-title{
  margin-top: 0;
 font-size: 1.8rem;
}

.checkout-page .checkout-desc{
  margin: 0 0 0.75rem;
  line-height: 1.55;
  max-width: 58ch;
  opacity: 0.92;
}

.checkout-page .checkout-product-id{
 margin: 0 0 1.15rem;
  opacity: 0.92;
}

/* Engraving option group */
.checkout-page .checkout-options{
 display: grid;
  gap: 0.6rem;
  margin: 0 0 0.95rem;
}

.checkout-page .checkout-option{
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

/* Engraving block spacing */
/*.checkout-page #engravingBlock{
  margin: 0.75rem 0 0.95rem;
}(/

/* Price + PayPal spacing */
.checkout-page .checkout-price{
  font-weight: 800;
  font-size: 1.35rem;
  color: #003366;
  margin: 0.85rem 0 0.75rem;
}

.checkout-page .checkout-paypal{
  margin-top: 0.25rem; /* let price provide most spacing */
}

.checkout-page .checkout-qty{
  align-items: center;
  gap: 10px;
  display: block;
  margin: 0 0 1.15rem;
}

.checkout-page .engr-qty-warning{
  color: #c00;
  font-size: 0.9rem;
  display: none;
  background-color: #ffe6e6;
  padding: 2px 10px;
  border-radius: 4px;
}

.checkout-page #engravingBlock{
  display: none;              /* default state */
  margin: 0.75rem 0 0.95rem;  /* you already wanted this spacing */
}

.checkout-data { display: none; }
/* Rules added 030626 430pm Stop */

/* Rules added 030726 630am Start */
.checkout-page .checkout-help-links{
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.25rem 0 0.9rem;
}

.checkout-page .checkout-help-link{
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;

  padding: 0.23rem 0.45rem;
  border-radius: 999px;

  border: 1.5px solid rgba(19,45,77,0.22);
  background: rgba(255,255,255,0.85);

  color: #132d4d;          /* matches your site navy */
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
}

.checkout-page .checkout-help-link:hover{
  text-decoration: none;
  border-color: rgba(19,45,77,0.40);
  background: rgba(255,255,255,0.95);
}

.checkout-page .checkout-help-label{
  margin: 1.45rem 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.85;
}

.checkout-page .spec-chips .chip.checkout-help-link{
  text-decoration: none;
}

.checkout-page .spec-chips .chip.checkout-help-link:hover{
  text-decoration: none;
  border-color: rgba(15,34,61,0.28);
  background: rgba(255,255,255,0.92);
}

.thankyou-card{
  margin-top: 0.8rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
}

.thankyou-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.cta-btn--ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.55);
}

.thankyou-note{
  margin-top: 1.0rem;
  opacity: 0.9;
}

.thankyou-hr{
  border: none;
  border-top: 1px solid rgba(0,0,0,0.10);
  margin: 0.85rem 0;
}

.thankyou-engraving{
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  line-height: 1.6;
}
/* Rules added 030726 630am END */

/* Rules added 030726 520pm Start */
/* Two-button cart row sized to match PayPal column */
.checkout-page .checkout-cart-row{
  width: 100%;
  /*max-width: 420px; */         /* adjust if your PayPal column is wider */
  margin: 0.9rem 0 0.25rem;
  align-items: stretch;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* PayPal-like button sizing */
.checkout-page .checkout-paybtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;

  width: 100%;
  height: 45px;              /* close to PayPal smart button height */
  padding: 0 14px;

  border-radius: 8px;
 border: none;

  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1; 
  text-decoration: none;
  cursor: pointer;

  background: rgba(255,255,255,0.92);
  color: #0f223d;

  box-shadow: 0 2px 7px rgba(0,0,0,0.08);
  box-sizing: border-box;
}

/* Remove any default anchor line-height quirks */
.checkout-page a.checkout-paybtn{
  line-height: 1;
}

.checkout-page button.checkout-paybtn{
  font-family: inherit;
}

/* Dog-tag style proof box on Thank You page */
.engraving-proof--tag{
  position: relative;
  margin-top: 0.55rem;
  padding: 1.45rem 1.1rem 1.05rem;
  border-radius: 18px;

  max-width: 520px;
  margin-left: auto;      /* change to auto if you want centered */
  margin-right: auto;

  /* "blank metal" look */
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(0,0,0,0.06)),
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(0,0,0,0.10));

  border: 1px solid rgba(255,255,255,0.22);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -10px 24px rgba(0,0,0,0.22),
    0 10px 26px rgba(0,0,0,0.25);

  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;     /* change to center if you prefer */
  color: rgba(255,255,255,0.92);
}

.checkout-page .checkout-cart-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.9rem 0 0.35rem;
}

.checkout-page .checkout-cart-note{
   max-width: 500px;          /* match your pay area width */
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  font-size: 0.95rem;
  text-align: center;
}

.checkout-page .cta-btn--cart{
  /* keep your cta-btn base look; this just ensures it reads as a primary action */
  font-weight: 800;
}



/* Ghost look for Continue Shopping */
.checkout-page .checkout-paybtn--ghost{
  background: transparent;
  border-color: rgba(0,0,0,0.18);
 }

/* Hover */
.checkout-page .checkout-paybtn:hover{
  border-color: rgba(0,0,0,0.28);
  box-shadow: 0 3px 10px rgba(0,0,0,0.10);
}

/* Mobile: stack them */
@media (max-width: 520px){
  .checkout-page .checkout-cart-row{
    grid-template-columns: 1fr;
  }
}

.checkout-page .checkout-payarea{
  width: 100%;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.checkout-page .checkout-cart-row,
.checkout-page .checkout-paypal{
  width: 100%;
}

.checkout-page .checkout-buynow-label{
  margin: 0.9rem 0 0.25rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.checkout-page .checkout-buynow-sub{
  margin: 0 0 0.65rem;
  opacity: 0.9;
  font-size: 0.95rem;
}

.checkout-page .checkout-buynow-label{
  margin: 0.9rem 0 0.25rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.checkout-page .checkout-buynow-sub{
  margin: 0 0 0.65rem;
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Add to Cart = PayPal yellow */
.checkout-page #addToCartBtn.checkout-paybtn{
  background: #ffc439;
  color: #111;
  box-shadow: 0 2px 7px rgba(0,0,0,0.12);
}

/* Continue Shopping = PayPal blue */
.checkout-page #continueShoppingBtn.checkout-paybtn{
  background: #0070ba;
  color: #fff;
  box-shadow: 0 2px 7px rgba(0,0,0,0.12);
}

/* Hover */
.checkout-page #addToCartBtn.checkout-paybtn:hover{ filter: brightness(0.97); }
.checkout-page #continueShoppingBtn.checkout-paybtn:hover{ filter: brightness(0.95); }
/* Rules added 030726 700pm Stop */

/* Rules added 030826 850am Start */
/* 3-button row */
/* When cart mode is ON, show 2nd row buttons nicely */
/*.checkout-page .checkout-actionbar{
  width: 100%;
  max-width: 500px;
  margin: 0.9rem auto 0.6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}*/

.checkout-page .checkout-btn{
  width: 100%;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.95rem;
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 7px rgba(0,0,0,0.12);
}

.checkout-page a.checkout-btn{ line-height: 1; }

.checkout-page .checkout-btn--yellow{ background:#ffc439; color:#111; }
.checkout-page .checkout-btn--blue{ background:#0070ba; color:#fff; }

.checkout-page .checkout-btn--ghost{
  background: rgba(255,255,255,0.92);
  color: #0f223d;
  border: 1px solid rgba(0,0,0,0.14);
  box-shadow: 0 2px 7px rgba(0,0,0,0.08);
}




/* Cart-mode row sits under the 3 buttons */
/*.checkout-page #goToCartBtn{
  grid-column: 1 / span 2; /* wide button */
  /*text-align: center;
  text-decoration: none;
}*/

/*.checkout-page #clearCartBtn{
  grid-column: 3 / span 1;
}*/


/* Make <a> look exactly like your buttons */
.checkout-page #goToCartBtn.checkout-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  box-sizing: border-box;
}


.checkout-page .checkout-primary,
.checkout-page .checkout-secondary{
  height: 45px;
  width: 100%;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  cursor: pointer;
}

/* Add to Cart = PayPal yellow */
.checkout-page .checkout-primary{
  background: #ffc439;
  color: #111;
  border: none;
  box-shadow: 0 2px 7px rgba(0,0,0,0.12);
}

/* Buy Now = PayPal blue */
.checkout-page .checkout-primary--blue{
  background: #0070ba;
  color: #fff;
}

/* Continue Shopping = neutral */
.checkout-page .checkout-secondary{
  background: rgba(255,255,255,0.92);
  color: #0f223d;
  border: 1px solid rgba(0,0,0,0.14);
  box-shadow: 0 2px 7px rgba(0,0,0,0.08);
}

.checkout-page .checkout-cart-note{
  text-align: center;
  margin: 0 0 0.9rem;
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Pay panel spacing */
.checkout-page .checkout-paypanel{
  margin-top: 0.25rem;
}


.ty-items{
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ty-item{
  padding: 0.9rem 1rem;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
}

.ty-item-id{ opacity: 0.75; font-weight: 700; }
.ty-item-meta{ margin-top: 0.25rem; opacity: 0.9; }

.ty-engrave-label{
  margin-top: 0.7rem;
  font-weight: 900;
}

.ty-engrave-none{
  margin-top: 0.7rem;
  opacity: 0.9;
}

.ty-proof{
  margin-top: 0.45rem;
}

/* stacked buttons */
/*.checkout-page .checkout-actionbar{
  width: 100%;
  max-width: 459px;
  margin: 0.9rem auto 0.6rem;
  display: grid;
  grid-template-columns: 1fr;  
  gap: 0.6rem;
}*/

/* push Continue Shopping away from the main actions */
.checkout-page .checkout-continue{
  margin-top: 0.55rem;  /* separation from the action buttons */
}

/* Force 1-column stacked buttons (override any older grid rules) */
/*.checkout-page .checkout-actionbar{
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0.6rem;
}*/

/* Set stack width (500–550px) */
.checkout-page .checkout-actionbar{
  width: 100% !important;
  max-width: 550px !important;   /* change to 500px if you want tighter */
  margin-left: auto;
  margin-right: auto;
}

.checkout-page .checkout-actionbar .checkout-btn{
  width: 100% !important;
}

/* FINAL: Checkout action buttons (stacked) */
.checkout-page .checkout-actionbar{
  width: 100%;
  max-width: 620px;
  margin: 1.1rem auto 0.6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.checkout-page .checkout-actionbar .checkout-btn{
  width: 100%;
}

.checkout-page .checkout-actionbar .checkout-continue{
  margin-top: 0.55rem;
}

/* FORCE stacked buttons (override any later 2-column rule) */
.checkout-page .checkout-actionbar{
  display: grid !important;
  grid-template-columns: 1fr !important;
}

/* Actionbar controls spacing via gap; kill inherited button margins */
.checkout-page .checkout-actionbar button{
  margin-top: 0 !important;
}

<!-- Added 030926 745am -->
.checkout-product-meta{
  margin: 1rem 0 1.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
}

.checkout-product-meta p{
  margin: 0.2rem 0;
}

.checkout-info-blocks{
  margin: 0 0 1.4rem;
  display: grid;
  gap: 0.9rem;
}

.checkout-info-block{
  padding: 0.95rem 1rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.58);
}

.checkout-info-block h2{
  margin: 0 0 0.35rem;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
  color: #1f2f46;
}

.checkout-info-block p{
  margin: 0;
  line-height: 1.55;
  font-size: 0.98rem;
  color: #2f3a46;
}

.checkout-customize-title{
  margin: 1.25rem 0 0.55rem;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
  color: #1f2f46;
}

.checkout-purchase-block{
  max-width: 620px;
  margin: 1.2rem auto 0;
}

.checkout-help-label{
  margin-top: 1.1rem;
  margin-bottom: 0.45rem;
}

.checkout-help-links,
.checkout-options,
.checkout-qty,
.checkout-actionbar{
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.checkout-help-links{
  margin-bottom: 0.8rem;
}

.checkout-options{
  margin-bottom: 0.75rem;
}

.checkout-qty{
  display: block;
  margin-bottom: 1rem;
}


<!-- Redesign of the Product Checkout Page 030926 610pm START-->
/* =========================================
   CHECKOUT REDESIGN LAYOUT
========================================= */

.checkout-page .checkout-container{
  display: block;
  max-width: 1240px;
  margin: auto;
  background: #fff;
  padding: 24px 24px 28px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

/* ---------- TOP BAND ---------- */
.checkout-page .checkout-top{
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 2.25rem;
  align-items: start;
  margin-bottom: 2rem;
}

.checkout-page .product-image{
  margin-right: 0;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.checkout-page .product-image img{
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0;
}

.checkout-page .checkout-summary{
  min-width: 0;
}

.checkout-page .checkout-title{
  margin: 0 0 0.45rem;
  font-size: 1.9rem;
}

.checkout-page .checkout-desc{
  margin: 0 0 0.8rem;
  line-height: 1.55;
  max-width: 60ch;
  opacity: 0.94;
}

.checkout-page .checkout-product-id{
  margin: 0 0 1rem;
}

.checkout-page .checkout-product-meta{
  margin: 0 0 1rem;
}

.checkout-page .checkout-price-summary{
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  background: rgba(245,247,250,0.90);
}

.checkout-page .checkout-price-summary p{
  margin: 0.2rem 0;
  font-weight: 700;
}

/* ---------- BOTTOM BAND ---------- */
.checkout-page .checkout-bottom{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 560px);
  gap: 2rem;
  align-items: start;
}

.checkout-page .
s-col{
  min-width: 0;
}

.checkout-page .checkout-order-col{
  min-width: 0;
}

.checkout-page .checkout-purchase-block{
  max-width: none;
  margin: 0;
  padding: 1rem 1.05rem 1.2rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  background: rgba(249,250,252,0.92);
}

.checkout-page .checkout-customize-title{
  margin: 0 0 0.6rem;
}

/* keep order controls in one clean column */
.checkout-page .checkout-help-label,
.checkout-page .checkout-help-links,
.checkout-page .checkout-options,
.checkout-page .checkout-qty,
.checkout-page .checkout-payarea{
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.checkout-page .checkout-payarea{
  width: 100%;
  max-width: none;
}

.checkout-page .checkout-actionbar{
  width: 100%;
  max-width: none;
  margin: 1rem 0 0.6rem;
}

/* ---------- MOBILE ---------- */
@media (max-width: 900px){
  .checkout-page .checkout-top,
  .checkout-page .checkout-bottom{
    grid-template-columns: 1fr;
  }

  .checkout-page .product-image{
    align-items: center;
  }

  .checkout-page .checkout-summary,
  .checkout-page .checkout-details-col,
  .checkout-page .checkout-order-col{
    width: 100%;
  }

  .checkout-page .checkout-title{
    font-size: 1.65rem;
  }
}
<!-- Redesign of the Product Checkout Page 030926 610pm END-->

.whats-included-inline span{
  display: inline-block;
  margin-right: 0.7rem;
}

.whats-included-inline .included-item{
  font-weight: 600;
   opacity: .87;
   font-size: 0.93em;
   color: #31465c;
}

.whats-included-inline span::after{
  content: "•";
  margin-left: 0.6rem;
  opacity: 1.0;
}

.whats-included-inline span:last-of-type::after{
  content: "";
  margin: 0;
}

