@charset "UTF-8";
/*
Theme Name: Gifymo Child
Theme URI: https://giftsbygen.com/
Author: Gifts By Gen
Author URI: https://giftsbygen.com/
Description: Child theme of Gifymo. All custom styling for Gifts By Gen lives here so the parent theme can be updated safely.
Template: gifymo
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gifymo-child
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, translation-ready
*/
 
/* ============================================================
   GIFTS BY GEN — Single Product Page  ·  v2

   ============================================================ */

/* ------------------------------------------------------------
   1 · TOKENS
   ------------------------------------------------------------ */
:root {
  --gbg-blush:      #fed2cc;
  --gbg-rose:       #be7374;
  --gbg-rose-deep:  #a2585a;
  --gbg-cream:      #fffaf8;
  --gbg-gold:       #d8a45f;
  --gbg-gold-pale:  #f0dcc2;
  --gbg-whisper:    #ffe7e2;
  --gbg-line:       #f2c9c3;
  --gbg-ink:        #8f5b5c;
  --gbg-shadow:     rgba(190, 115, 116, .18);
  --gbg-shadow-lg:  rgba(190, 115, 116, .28);

  --gbg-radius:     20px;
  --gbg-radius-sm:  12px;

  --gbg-head: 'Playfair Display', Georgia, serif;
  --gbg-body: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --gbg-bow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='22' viewBox='0 0 34 22'%3E%3Cpath d='M17 11 L3 3 Q1 8 3 19 Z' fill='%23be7374'/%3E%3Cpath d='M17 11 L31 3 Q33 8 31 19 Z' fill='%23be7374'/%3E%3Ccircle cx='17' cy='11' r='3.4' fill='%23a2585a'/%3E%3C/svg%3E");
  --gbg-bow-white: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='22' viewBox='0 0 34 22'%3E%3Cpath d='M17 11 L3 3 Q1 8 3 19 Z' fill='%23ffffff'/%3E%3Cpath d='M17 11 L31 3 Q33 8 31 19 Z' fill='%23ffffff'/%3E%3Ccircle cx='17' cy='11' r='3.4' fill='%23ffe7e2'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------------
   2 · RESET LAYER — neutralise theme floats/widths/padding
   This runs before layout so the grid below can do its job.
   ------------------------------------------------------------ */
body.single-product .site-main > div.product > .product-inner > .entry-gallery,
body.single-product .site-main > div.product > .product-inner > .summary,
body.single-product .site-main > div.product > .product-inner > .summary > .inner {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.single-product .site-main > div.product > .product-inner::after,
body.single-product .site-main > div.product > .product-inner::before {
  content: none;
}

/* ------------------------------------------------------------
   3 · PAGE CANVAS
   ------------------------------------------------------------ */
body.single-product {
  font-family: var(--gbg-body);
  color: var(--gbg-ink);
  background-color: #fff5f3;
  background-image:
    radial-gradient(var(--gbg-whisper) 1.4px, transparent 1.5px),
    radial-gradient(var(--gbg-whisper) 1.4px, transparent 1.5px);
  background-size: 34px 34px;
  background-position: 0 0, 17px 17px;
}

body.single-product .site-content,
body.single-product .site-content > .wrap { background: transparent; }

/* ------------------------------------------------------------
   4 · MAIN PRODUCT CARD  (scoped — related products excluded)
   ------------------------------------------------------------ */
body.single-product .site-main > div.product > .product-inner {
  position: relative;
  background: var(--gbg-cream) !important;
  border: 1px solid var(--gbg-line) !important;
  border-radius: calc(var(--gbg-radius) + 6px) !important;
  box-shadow: 0 22px 55px -28px var(--gbg-shadow-lg);
  padding: clamp(18px, 3vw, 40px) !important;
  margin-bottom: 40px;
  overflow: hidden;
}

/* ribbon of bows, top-right corner of the card only */
body.single-product .site-main > div.product > .product-inner {
  background-image: var(--gbg-bow);
  background-repeat: repeat-x;
  background-size: 34px 22px;
  background-position: right 18px top 14px;
}

@media (min-width: 900px) {
  body.single-product .site-main > div.product > .product-inner {
    display: grid;
    grid-template-columns: minmax(0, 46%) minmax(0, 1fr);
    gap: clamp(28px, 3vw, 54px);
    align-items: start;
  }
}

/* ------------------------------------------------------------
   5 · GALLERY
   ------------------------------------------------------------ */
body.single-product .woocommerce-product-gallery { border-radius: var(--gbg-radius); }

body.single-product .woocommerce-product-gallery__image img {
  border-radius: var(--gbg-radius);
  box-shadow: 0 16px 34px -20px var(--gbg-shadow-lg);
}

body.single-product .woocommerce-product-gallery__trigger {
  background: #fff;
  border: 1px solid var(--gbg-line);
  border-radius: 50%;
  box-shadow: 0 6px 16px -8px var(--gbg-shadow);
}

body.single-product .flex-control-thumbs {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0 !important;
  padding: 0 !important;
  list-style: none;
}
body.single-product .flex-control-thumbs li { margin: 0 !important; flex: 0 0 auto; width: auto !important; }
body.single-product .flex-control-thumbs img {
  width: 64px !important;
  height: 64px !important;
  object-fit: cover;
  border-radius: var(--gbg-radius-sm);
  border: 2px solid transparent;
  opacity: .75;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, border-color .2s ease;
}
body.single-product .flex-control-thumbs img:hover,
body.single-product .flex-control-thumbs img.flex-active {
  opacity: 1;
  border-color: var(--gbg-rose);
  transform: translateY(-2px);
}

/* ------------------------------------------------------------
   6 · SUMMARY — title, rating, price, short description
   ------------------------------------------------------------ */
body.single-product .product_title.entry-title {
  font-family: var(--gbg-head);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  line-height: 1.22;
  color: var(--gbg-rose-deep);
  margin: 0 0 12px !important;
  padding: 0 !important;
}

/* --- Star rating (summary + reviews + loop) --- */
body.single-product .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 14px !important;
  font-size: .9rem;
}
body.single-product .star-rating::before { color: var(--gbg-gold-pale) !important; }
body.single-product .star-rating span::before { color: var(--gbg-gold) !important; }
body.single-product .woocommerce-review-link {
  color: var(--gbg-rose) !important;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dotted var(--gbg-line);
}
body.single-product .woocommerce-review-link:hover { color: var(--gbg-rose-deep) !important; }

/* --- Price --- */
body.single-product .summary .price,
body.single-product .summary .price .amount,
body.single-product .summary .price bdi {
  font-family: var(--gbg-head) !important;
  color: var(--gbg-rose) !important;
  font-weight: 600;
}
body.single-product .summary .price {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  margin: 0 0 16px !important;
}
body.single-product .summary .price::before {
  content: "";
  width: 30px;
  height: 20px;
  background: var(--gbg-bow) center/contain no-repeat;
}
body.single-product .woocommerce-Price-currencySymbol {
  font-size: .68em;
  vertical-align: super;
}

/* --- Short description --- */
body.single-product .woocommerce-product-details__short-description {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--gbg-ink);
  background: var(--gbg-whisper);
  border-left: 4px solid var(--gbg-rose);
  border-radius: var(--gbg-radius-sm);
  padding: 14px 18px !important;
  margin: 0 0 22px !important;
}
body.single-product .woocommerce-product-details__short-description p { margin: 0; }

/* ------------------------------------------------------------
   7 · PERSONALISATION FIELDS (PPOM)
   Targeted by data-type so every product's fields are covered.
   ------------------------------------------------------------ */
body.single-product .ppom-wrapper {
  background: #fff;
  border: 1px solid var(--gbg-line);
  border-radius: var(--gbg-radius);
  padding: 20px 20px 8px !important;
  margin: 0 0 20px !important;
  box-shadow: inset 0 0 0 4px #fff8f6;
}

body.single-product .ppom-rendering-fields { margin: 0 !important; }
body.single-product .ppom-field-wrapper { margin: 0 0 20px !important; padding: 0 !important; }
body.single-product .ppom-field-wrapper .form-group { margin: 0 !important; }

/* stray "$" cloner the plugin outputs above the fields */
body.single-product #ppom-price-cloner-wrapper { display: none !important; }

/* --- Labels --- */
body.single-product .ppom-wrapper .form-control-label {
  display: block;
  font-family: var(--gbg-body);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--gbg-rose-deep);
  margin-bottom: 6px;
}
body.single-product .show_required { color: var(--gbg-gold); }
body.single-product .show_description.ppom-input-desc {
  display: block;
  font-weight: 500;
  font-size: .82rem;
  line-height: 1.5;
  color: #b98d8d;
  margin-top: 2px;
}

/* --- Radio & checkbox groups become pills (any field name) --- */
body.single-product .ppom-field-wrapper[data-type="radio"] .form-group,
body.single-product .ppom-field-wrapper[data-type="checkbox"] .form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.single-product .ppom-field-wrapper[data-type="radio"] .form-control-label,
body.single-product .ppom-field-wrapper[data-type="checkbox"] .form-control-label {
  flex: 0 0 100%;
  margin-bottom: 0;
}
body.single-product .ppom-wrapper .form-check {
  margin: 0 !important;
  padding: 0 !important;
  flex: 1 1 auto;
  min-width: 130px;
}
body.single-product .ppom-wrapper .form-check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--gbg-line);
  border-radius: 999px;
  background: var(--gbg-cream);
  font-weight: 600;
  color: var(--gbg-rose);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .15s ease, box-shadow .2s ease;
}
body.single-product .ppom-wrapper .form-check-label:hover {
  border-color: var(--gbg-rose);
  transform: translateY(-1px);
}
body.single-product .ppom-wrapper .form-check input[type="radio"],
body.single-product .ppom-wrapper .form-check input[type="checkbox"] {
  accent-color: var(--gbg-rose);
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
}
body.single-product .ppom-wrapper .form-check:has(input:checked) .form-check-label {
  border-color: var(--gbg-rose);
  background: var(--gbg-whisper);
  box-shadow: 0 8px 18px -12px var(--gbg-shadow-lg);
}
body.single-product .ppom-option-label-price {
  color: var(--gbg-gold);
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
}

/* --- Text, number, textarea --- */
body.single-product .ppom-wrapper input[type="text"],
body.single-product .ppom-wrapper input[type="email"],
body.single-product .ppom-wrapper input[type="number"],
body.single-product .ppom-wrapper textarea {
  width: 100%;
  font-family: var(--gbg-body);
  font-size: 1rem;
  color: var(--gbg-rose-deep);
  background: var(--gbg-cream);
  border: 1.5px solid var(--gbg-line) !important;
  border-radius: var(--gbg-radius-sm) !important;
  padding: 12px 15px !important;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
body.single-product .ppom-wrapper input::placeholder,
body.single-product .ppom-wrapper textarea::placeholder { color: #d3a7a4; }
body.single-product .ppom-wrapper input:focus,
body.single-product .ppom-wrapper textarea:focus {
  outline: none;
  border-color: var(--gbg-rose) !important;
  box-shadow: 0 0 0 4px var(--gbg-whisper);
}

/* --- Select --- */
body.single-product .ppom-wrapper select {
  width: 100%;
  font-family: var(--gbg-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gbg-rose-deep);
  background-color: var(--gbg-cream);
  border: 1.5px solid var(--gbg-line) !important;
  border-radius: var(--gbg-radius-sm) !important;
  padding: 12px 42px 12px 15px !important;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M2 4l5 5 5-5' stroke='%23be7374' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
body.single-product .ppom-wrapper select:focus {
  outline: none;
  border-color: var(--gbg-rose) !important;
  box-shadow: 0 0 0 4px var(--gbg-whisper);
}

/* --- Running price table --- */
body.single-product #ppom-price-container table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--gbg-whisper);
  border: none !important;
  border-radius: var(--gbg-radius-sm);
  overflow: hidden;
  margin: 4px 0 16px !important;
}
body.single-product #ppom-price-container th,
body.single-product #ppom-price-container td {
  font-family: var(--gbg-body);
  font-weight: 600;
  color: var(--gbg-rose-deep);
  text-align: left;
  background: transparent !important;
  padding: 10px 15px !important;
  border: none !important;
  border-bottom: 1px solid var(--gbg-line) !important;
}
body.single-product #ppom-price-container .ppom-price-item { text-align: right; }
body.single-product #ppom-price-container tr:last-child th {
  border-bottom: none !important;
  font-family: var(--gbg-head);
  font-size: 1.05rem;
}

/* ------------------------------------------------------------
   8 · QUANTITY + BUTTONS
   ------------------------------------------------------------ */
body.single-product .quantity_label {
  font-weight: 700;
  color: var(--gbg-rose-deep);
  margin-right: 8px;
}
body.single-product .quantity.buttons_added {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--gbg-line);
  border-radius: 999px;
  background: var(--gbg-cream);
  overflow: hidden;
  margin: 6px 12px 12px 0;
  vertical-align: middle;
}
body.single-product .quantity .qty {
  width: 48px;
  text-align: center;
  border: none !important;
  background: transparent !important;
  font-family: var(--gbg-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gbg-rose-deep);
  padding: 0 !important;
  -moz-appearance: textfield;
}
body.single-product .quantity .qty::-webkit-outer-spin-button,
body.single-product .quantity .qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
body.single-product .quantity-action {
  width: 38px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gbg-rose);
  cursor: pointer;
  user-select: none;
  transition: background .2s ease;
}
body.single-product .quantity-action:hover { background: var(--gbg-whisper); }

/* --- Add to cart --- */
body.single-product .single_add_to_cart_button.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--gbg-body);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: .3px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--gbg-rose) 0%, var(--gbg-rose-deep) 100%) !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 15px 34px !important;
  box-shadow: 0 14px 26px -12px var(--gbg-shadow-lg);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, filter .2s ease;
}
body.single-product .single_add_to_cart_button.button::before {
  content: "";
  width: 26px;
  height: 17px;
  flex: 0 0 auto;
  background: var(--gbg-bow-white) center/contain no-repeat;
}
body.single-product .single_add_to_cart_button.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

/* --- Wishlist / Compare --- */
body.single-product .summary .woosw-btn,
body.single-product .summary .woosc-btn {
  font-family: var(--gbg-body);
  font-weight: 600;
  color: var(--gbg-rose) !important;
  background: #fff !important;
  border: 1.5px solid var(--gbg-line) !important;
  border-radius: 999px !important;
  padding: 12px 22px !important;
  margin: 6px 8px 6px 0 !important;
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
}
body.single-product .summary .woosw-btn:hover,
body.single-product .summary .woosc-btn:hover {
  border-color: var(--gbg-rose) !important;
  background: var(--gbg-whisper) !important;
  transform: translateY(-1px);
}

/* ------------------------------------------------------------
   9 · SHARE + META
   ------------------------------------------------------------ */
body.single-product .pbr-social-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 22px 0 !important;
  padding-top: 18px !important;
  border-top: 1px dashed var(--gbg-line);
}
body.single-product .social-share-header {
  font-family: var(--gbg-head);
  color: var(--gbg-rose-deep);
  margin-right: 4px;
}
body.single-product .pbr-social-share a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gbg-whisper);
  color: var(--gbg-rose) !important;
  overflow: hidden;
  transition: transform .18s ease, background .2s ease, color .2s ease;
}
body.single-product .pbr-social-share a span { display: none; }
body.single-product .pbr-social-share a:hover {
  background: var(--gbg-rose);
  color: #fff !important;
  transform: translateY(-3px);
}

body.single-product .product_meta {
  font-size: .9rem;
  color: var(--gbg-rose-deep);
  border-top: 1px dashed var(--gbg-line);
  padding-top: 16px !important;
  margin-top: 6px !important;
}
body.single-product .product_meta > span {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}
body.single-product .product_meta a {
  display: inline-block;
  font-weight: 600;
  color: var(--gbg-rose) !important;
  background: var(--gbg-whisper);
  border-radius: 999px;
  padding: 3px 12px;
  margin: 3px 4px 3px 0;
  text-decoration: none !important;
  transition: background .2s ease, color .2s ease;
}
body.single-product .product_meta a:hover { background: var(--gbg-rose); color: #fff !important; }

/* ------------------------------------------------------------
   10 · TABS
   ------------------------------------------------------------ */
body.single-product .woocommerce-tabs {
  background: var(--gbg-cream);
  border: 1px solid var(--gbg-line);
  border-radius: calc(var(--gbg-radius) + 6px);
  box-shadow: 0 22px 55px -30px var(--gbg-shadow-lg);
  padding: clamp(18px, 2.5vw, 34px) !important;
  margin: 0 0 40px !important;
}
body.single-product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 22px !important;
  padding: 0 0 14px !important;
  border: none !important;
  border-bottom: 1px dashed var(--gbg-line) !important;
}
body.single-product .woocommerce-tabs ul.tabs li {
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  border-radius: 0;
}
body.single-product .woocommerce-tabs ul.tabs li::before,
body.single-product .woocommerce-tabs ul.tabs li::after,
body.single-product .woocommerce-tabs ul.tabs::before,
body.single-product .woocommerce-tabs ul.tabs::after { display: none !important; content: none !important; }

body.single-product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  font-family: var(--gbg-body);
  font-weight: 700;
  font-size: .98rem;
  color: var(--gbg-rose) !important;
  background: #fff;
  border: 1.5px solid var(--gbg-line);
  border-radius: 999px;
  padding: 9px 22px !important;
  text-decoration: none !important;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
body.single-product .woocommerce-tabs ul.tabs li.active a,
body.single-product .woocommerce-tabs ul.tabs li a:hover {
  background: var(--gbg-rose);
  color: #fff !important;
  border-color: var(--gbg-rose);
}

body.single-product .woocommerce-Tabs-panel {
  font-family: var(--gbg-body);
  color: var(--gbg-ink);
  font-size: 1rem;
  line-height: 1.7;
  padding: 0 !important;
}

/* ------------------------------------------------------------
   11 · DESCRIPTION CONTENT
   ------------------------------------------------------------ */
body.single-product #tab-description h2,
body.single-product #tab-description h3 {
  font-family: var(--gbg-head);
  color: var(--gbg-rose-deep);
  line-height: 1.25;
}
body.single-product #tab-description h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  margin: 30px 0 12px !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
/* the bow marks h2 only — h3s already carry their own emoji */
body.single-product #tab-description h2::before {
  content: "";
  width: 30px;
  height: 20px;
  flex: 0 0 auto;
  background: var(--gbg-bow) center/contain no-repeat;
}
body.single-product #tab-description h2:first-child { margin-top: 0 !important; }

body.single-product #tab-description h3 {
  font-size: clamp(1.08rem, 2.2vw, 1.3rem);
  margin: 26px 0 10px !important;
  padding-left: 12px;
  border-left: 3px solid var(--gbg-gold);
}

body.single-product #tab-description p { margin: 0 0 14px; }
body.single-product #tab-description strong { color: var(--gbg-rose-deep); font-weight: 700; }
body.single-product #tab-description img.emoji {
  width: 1.05em !important;
  height: 1.05em !important;
  vertical-align: -.15em;
  margin: 0 .1em;
}
body.single-product #tab-description hr {
  border: none;
  height: 1px;
  background: var(--gbg-line);
  margin: 24px 0;
}

/* Lists — multi-column balances short lists, long items stay readable */
body.single-product #tab-description ul {
  list-style: none;
  padding: 0 !important;
  margin: 12px 0 18px !important;
}
@media (min-width: 760px) {
  body.single-product #tab-description ul { columns: 2; column-gap: 34px; }
}
body.single-product #tab-description ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  break-inside: avoid;
  list-style: none;
}
body.single-product #tab-description ul li::before {
  content: "\2665";           /* ♥ */
  position: absolute;
  left: 0;
  top: 0;
  font-size: .82rem;
  color: var(--gbg-rose);
}

/* Comparison table inside the description */
body.single-product #tab-description table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 16px 0 22px;
  background: #fff;
  border: 1px solid var(--gbg-line) !important;
  border-radius: var(--gbg-radius-sm);
  overflow: hidden;
}
body.single-product #tab-description table th,
body.single-product #tab-description table td {
  text-align: left;
  padding: 12px 16px !important;
  border: none !important;
  border-bottom: 1px solid var(--gbg-whisper) !important;
  vertical-align: top;
}
body.single-product #tab-description table th,
body.single-product #tab-description table td:first-child {
  background: var(--gbg-whisper);
  font-family: var(--gbg-body);
  font-weight: 700;
  color: var(--gbg-rose-deep);
  white-space: nowrap;
}
body.single-product #tab-description table tr:last-child th,
body.single-product #tab-description table tr:last-child td { border-bottom: none !important; }

/* ------------------------------------------------------------
   12 · REVIEWS
   ------------------------------------------------------------ */
body.single-product .woocommerce-Reviews-title {
  font-family: var(--gbg-head);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  color: var(--gbg-rose-deep);
  margin: 0 0 20px !important;
}

body.single-product .woocommerce-noreviews {
  background: var(--gbg-whisper);
  border-radius: var(--gbg-radius-sm);
  padding: 14px 18px !important;
  color: var(--gbg-rose);
}

/* --- Review list --- */
body.single-product .commentlist {
  list-style: none;
  margin: 0 0 30px !important;
  padding: 0 !important;
  display: grid;
  gap: 14px;
  background:none !important;
  border:none !important;
}
body.single-product .commentlist li.review,
body.single-product .commentlist li.comment {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  list-style: none;
  white-space: wrap;
}
body.single-product .commentlist .comment_container {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--gbg-line);
  border-radius: var(--gbg-radius);
  padding: 18px 20px !important;
  box-shadow: 0 10px 24px -20px var(--gbg-shadow-lg);
  transition: transform .18s ease, box-shadow .2s ease;
}
body.single-product .commentlist .comment_container:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -20px var(--gbg-shadow-lg);
}
body.single-product .commentlist .comment_container img.avatar {
  width: 52px !important;
  height: 52px !important;
  flex: 0 0 52px;
  position: static !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50%;
  border: 2px solid var(--gbg-whisper);
  background: var(--gbg-whisper);
}
body.single-product .commentlist .comment-text {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
body.single-product .commentlist .comment-text .star-rating {
  margin: 0 0 6px !important;
  float: none !important;
}
body.single-product .commentlist .comment-text p.meta {
  font-size: .9rem;
  margin: 0 0 8px !important;
  color: #b98d8d;
}
body.single-product .woocommerce-review__author {
  font-family: var(--gbg-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gbg-rose-deep);
}
body.single-product .woocommerce-review__dash { margin: 0 4px; color: var(--gbg-line); }
body.single-product .woocommerce-review__published-date { font-size: .85rem; }
body.single-product .commentlist .comment-text .description {
  color: var(--gbg-ink);
  line-height: 1.7;
}
body.single-product .commentlist .comment-text .description p:last-child { margin-bottom: 0; }

/* --- Review form --- */
body.single-product #review_form_wrapper { margin-top: 8px; }
body.single-product #reviews #respond.comment-respond {
  background: #fff;
  border: 1px solid var(--gbg-line);
  border-radius: var(--gbg-radius);
  padding: 24px !important;
  margin: 0 !important;
}
body.single-product #reply-title.comment-reply-title {
  display: block;
  font-family: var(--gbg-head);
  font-size: 1.25rem;
  color: var(--gbg-rose-deep);
  margin-bottom: 6px;
}
body.single-product .comment-notes,
body.single-product .comment-form-cookies-consent label {
  font-size: .85rem;
  color: #b98d8d;
}
body.single-product .comment-form label { color: var(--gbg-rose-deep); font-weight: 600; }
body.single-product .comment-form-rating .stars a { color: var(--gbg-gold) !important; }

body.single-product .comment-form input[type="text"],
body.single-product .comment-form input[type="email"],
body.single-product .comment-form textarea {
  width: 100%;
  font-family: var(--gbg-body);
  font-size: 1rem;
  color: var(--gbg-rose-deep);
  background: var(--gbg-cream);
  border: 1.5px solid var(--gbg-line) !important;
  border-radius: var(--gbg-radius-sm) !important;
  padding: 12px 15px !important;
}
body.single-product .comment-form input[type="text"]::placeholder,
body.single-product .comment-form input[type="email"]::placeholder,
body.single-product .comment-form textarea::placeholder { color: #d3a7a4; }
body.single-product .comment-form input:focus,
body.single-product .comment-form textarea:focus {
  outline: none;
  border-color: var(--gbg-rose) !important;
  box-shadow: 0 0 0 4px var(--gbg-whisper);
}
@media (min-width: 620px) {
  body.single-product .comment-form-author,
  body.single-product .comment-form-email { display: inline-block; width: calc(50% - 6px); }
  body.single-product .comment-form-author { margin-right: 8px; }
}
body.single-product .comment-form .form-submit button.submit {
  font-family: var(--gbg-body);
  font-weight: 700;
  color: #fff !important;
  background: linear-gradient(135deg, var(--gbg-rose) 0%, var(--gbg-rose-deep) 100%) !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 13px 30px !important;
  cursor: pointer;
  transition: transform .18s ease, filter .2s ease;
}
body.single-product .comment-form .form-submit button.submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* ------------------------------------------------------------
   13 · RELATED PRODUCTS
   ------------------------------------------------------------ */
body.single-product .related.products,
body.single-product .upsells.products { margin-bottom: 40px; }

body.single-product .related.products > h2,
body.single-product .upsells.products > h2 {
  font-family: var(--gbg-head);
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  color: var(--gbg-rose-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px !important;
}
body.single-product .related.products > h2::before,
body.single-product .upsells.products > h2::before {
  content: "";
  width: 30px;
  height: 20px;
  flex: 0 0 auto;
  background: var(--gbg-bow) center/contain no-repeat;
}

body.single-product .related.products ul.products li.product .product-inner,
body.single-product .upsells.products ul.products li.product .product-inner {
  background: var(--gbg-cream);
  border: 1px solid var(--gbg-line);
  border-radius: var(--gbg-radius);
  padding: 12px !important;
  box-shadow: 0 12px 28px -22px var(--gbg-shadow-lg);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
body.single-product .related.products ul.products li.product .product-inner:hover {
  transform: translateY(-4px);
  border-color: var(--gbg-rose);
  box-shadow: 0 18px 34px -22px var(--gbg-shadow-lg);
}
body.single-product .related.products ul.products li.product img { border-radius: var(--gbg-radius-sm); }

body.single-product .related.products .woocommerce-loop-product__title {
  font-family: var(--gbg-head) !important;
  font-size: 1rem !important;
  line-height: 1.35;
  color: var(--gbg-rose-deep) !important;
  margin: 12px 0 6px !important;
}
body.single-product .related.products .woocommerce-loop-product__title a { color: inherit !important; }
body.single-product .related.products ul.products li.product .price,
body.single-product .related.products ul.products li.product .price bdi {
  font-family: var(--gbg-head) !important;
  color: var(--gbg-rose) !important;
  font-weight: 600;
}
body.single-product .related.products ul.products li.product .button {
  font-family: var(--gbg-body);
  font-weight: 700;
  color: #fff !important;
  background: var(--gbg-rose) !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 10px 20px !important;
}
body.single-product .related.products ul.products li.product .button:hover {
  background: var(--gbg-rose-deep) !important;
}

/* ------------------------------------------------------------
   14 · RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 899px) {
  body.single-product .site-main > div.product > .product-inner {
    display: block;
    background-image: none;   /* drop the corner ribbon on narrow screens */
  }
  body.single-product .site-main > div.product > .product-inner > .summary { margin-top: 24px !important; }
}

@media (max-width: 600px) {
  body.single-product .site-main > div.product > .product-inner,
  body.single-product .woocommerce-tabs { padding: 16px !important; }
  body.single-product .single_add_to_cart_button.button { width: 100%; justify-content: center; }
  body.single-product .summary .woosw-btn,
  body.single-product .summary .woosc-btn { flex: 1 1 auto; }
  body.single-product .commentlist .comment_container { padding: 14px !important; gap: 12px; }
  body.single-product .commentlist .comment_container img.avatar {
    width: 42px !important; height: 42px !important; flex-basis: 42px;
  }
  body.single-product .woocommerce-tabs ul.tabs li { flex: 1 1 auto; }
  body.single-product .woocommerce-tabs ul.tabs li a { display: block; text-align: center; }
}

/* ------------------------------------------------------------
   15 · ACCESSIBILITY
   ------------------------------------------------------------ */
body.single-product a:focus-visible,
body.single-product button:focus-visible,
body.single-product input:focus-visible,
body.single-product select:focus-visible,
body.single-product textarea:focus-visible {
  outline: 2px solid var(--gbg-rose-deep);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  body.single-product * { transition: none !important; animation: none !important; }
}
