/* TQO Product Details Page styles copied from supplied HTML. */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --terra:  #C48479;
      --terra2: #B87068;
      --cream:  #FAF7F2;
      --cream2: #F2EAE0;
      --cream3: #E9DDCE;
      --dark:   #1E1410;
      --dark2:  #3A2B27;
      --grey:   #6B5550;
      --white:  #ffffff;
      --line:   rgba(196, 132, 121, 0.22);
      --shadow: 0 24px 70px rgba(30, 20, 16, 0.10);
      --soft-shadow: 0 16px 44px rgba(30, 20, 16, 0.08);
    }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--cream);
      color: var(--dark);
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    a { color: inherit; }
    button, input, select { font: inherit; }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 56px;
      background: rgba(250, 247, 242, 0.94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
    }

    .nav-logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: var(--dark);
      min-width: 160px;
    }

    .nav-logo img {
   width: auto;
    display: block;
    object-fit: contain;
    margin: -18px 0;
    }

    .nav-links {
      display: flex;
      gap: 34px;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--dark2);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a.active { color: var(--terra); }

    .nav-cta {
      background: var(--terra) !important;
      color: var(--white) !important;
      padding: 11px 24px !important;
      border-radius: 3px;
      transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .nav-cta:hover { background: var(--terra2) !important; transform: translateY(-1px); }

    /* SHARED */
    .eyebrow {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--terra);
      margin-bottom: 20px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-text {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      border-radius: 3px;
      font-size: 12.5px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .btn-primary {
      border: 1px solid var(--terra);
      background: var(--terra);
      color: var(--white);
      padding: 16px 32px;
      box-shadow: 0 14px 32px rgba(196, 132, 121, 0.18);
    }

    .btn-primary:hover { background: var(--terra2); border-color: var(--terra2); transform: translateY(-1px); }

    .btn-secondary {
      border: 1px solid rgba(196, 132, 121, 0.34);
      background: transparent;
      color: var(--dark2);
      padding: 16px 28px;
    }

    .btn-secondary:hover { border-color: var(--terra); color: var(--terra); transform: translateY(-1px); }

    .btn-text {
      border: none;
      background: transparent;
      color: var(--terra2);
      min-height: auto;
      padding: 0;
    }

    .btn-text:hover { color: var(--dark); }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }

    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* PRODUCT HERO */
    .product-hero {
      padding-top: 84px;
      min-height: 100vh;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
      background:
        radial-gradient(circle at 10% 18%, rgba(196,132,121,0.12), transparent 30%),
        linear-gradient(180deg, var(--cream) 0%, #F7F1EA 100%);
    }

    .product-gallery {
      position: relative;
      padding: 78px 62px 70px 72px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background:
        radial-gradient(110% 96% at 50% 13%, #F2EAE0 0%, #E9DDCE 60%, #DFD0BE 100%);
      border-right: 1px solid var(--line);
      perspective: 1300px;
      min-height: 720px;
    }

    .product-gallery::before {
      content: '';
      position: absolute;
      inset: -35%;
      background: radial-gradient(closest-side, rgba(196,132,121,0.18), transparent 72%);
      animation: softGlow 14s ease-in-out infinite alternate;
      pointer-events: none;
    }

    @keyframes softGlow {
      from { transform: translate(-12%, -8%) scale(1); }
      to   { transform: translate(14%, 10%) scale(1.12); }
    }

    .gallery-stage {
      position: relative;
      width: min(76%, 440px);
      aspect-ratio: 3 / 4;
      transform-style: preserve-3d;
      z-index: 2;
    }

    .book-page {
      position: absolute;
      inset: 0;
      background: linear-gradient(145deg, #FFFFFF 0%, #F7F1EA 100%);
      border: 6px solid var(--white);
      border-radius: 5px;
      box-shadow: 0 20px 46px rgba(30,20,16,0.22);
      padding: 38px 34px;
      transform-origin: bottom center;
      transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.65s ease;
      overflow: hidden;
    }

    .book-page::before {
      content: '';
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      right: -70px;
      top: -60px;
      background: rgba(196,132,121,0.14);
    }

    .book-page:nth-child(1) { transform: rotate(-15deg) translateX(-28%) translateY(7%); z-index: 1; }
    .book-page:nth-child(2) { transform: rotate(-5deg) translateX(-10%) translateY(1%); z-index: 2; }
    .book-page:nth-child(3) { transform: rotate(5deg) translateX(10%) translateY(1%); z-index: 3; }
    .book-page:nth-child(4) { transform: rotate(0deg) translateX(0) translateY(-2%); z-index: 4; }

    .product-gallery:hover .book-page:nth-child(1) { transform: rotate(-23deg) translateX(-44%) translateY(9%); }
    .product-gallery:hover .book-page:nth-child(2) { transform: rotate(-10deg) translateX(-18%) translateY(-1%); }
    .product-gallery:hover .book-page:nth-child(3) { transform: rotate(11deg) translateX(20%) translateY(0%); }
    .product-gallery:hover .book-page:nth-child(4) { transform: rotate(1deg) translateX(0) translateY(-7%) scale(1.03); }

    .book-page small {
      display: block;
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.20em;
      text-transform: uppercase;
      color: var(--terra2);
      margin-bottom: 34px;
      position: relative;
      z-index: 2;
    }

    .book-page strong {
      display: block;
      font-family: 'Lora', serif;
      font-size: clamp(34px, 4vw, 58px);
      font-style: italic;
      font-weight: 400;
      line-height: 1.02;
      color: var(--dark);
      max-width: 300px;
      position: relative;
      z-index: 2;
    }

    .book-page .lines {
      position: relative;
      z-index: 2;
      display: grid;
      gap: 10px;
      margin-top: 44px;
    }

    .book-page .lines span {
      height: 8px;
      border-radius: 99px;
      background: rgba(196,132,121,0.18);
      display: block;
    }

    .book-page .lines span:nth-child(2) { width: 74%; }
    .book-page .lines span:nth-child(3) { width: 56%; }

    .gallery-badge {
      position: absolute;
      left: 56px;
      bottom: 56px;
      z-index: 3;
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(196,132,121,0.24);
      border-top: 3px solid var(--terra);
      padding: 18px 20px;
      box-shadow: var(--soft-shadow);
      max-width: 250px;
    }

    .gallery-badge span {
      display: block;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--terra);
      margin-bottom: 8px;
      font-weight: 500;
    }

    .gallery-badge p {
      font-family: 'Lora', serif;
      font-style: italic;
      color: var(--grey);
      font-size: 14px;
      line-height: 1.55;
    }

    .product-info-side {
      padding: 78px 72px 70px 62px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 720px;
    }

    .review-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
      color: var(--grey);
      font-size: 13px;
    }

    .stars { color: var(--terra); letter-spacing: 2px; font-size: 13px; }

    .product-title {
      font-family: 'Lora', serif;
      font-size: clamp(38px, 4.4vw, 66px);
      font-weight: 400;
      line-height: 1.08;
      color: var(--dark);
      margin-bottom: 22px;
    }

    .product-title em { color: var(--terra); font-style: italic; }

    .product-intro {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 18px;
      line-height: 1.75;
      color: var(--grey);
      max-width: 560px;
      margin-bottom: 18px;
    }

    .product-plain {
      font-size: 15px;
      line-height: 1.85;
      color: var(--dark2);
      max-width: 560px;
      margin-bottom: 30px;
    }

    .price-row {
      display: flex;
      align-items: baseline;
      gap: 14px;
      margin-bottom: 30px;
    }

    .price {
      font-family: 'Lora', serif;
      font-size: 38px;
      font-style: italic;
      color: var(--dark);
      line-height: 1;
    }

    .old-price {
      color: rgba(107,85,80,0.48);
      text-decoration: line-through;
      font-size: 16px;
    }

    .tax-note { color: var(--grey); font-size: 12.5px; }

    .option-group { margin-bottom: 22px; }

    .option-label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      margin-bottom: 12px;
      font-size: 10.5px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--terra);
    }

    .format-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .format-card {
      position: relative;
      cursor: pointer;
    }

    .format-card input { position: absolute; opacity: 0; pointer-events: none; }

    .format-card span {
      display: grid;
      min-height: 74px;
      place-items: center;
      text-align: center;
      border: 1px solid rgba(196,132,121,0.28);
      background: rgba(255,255,255,0.58);
      color: var(--dark2);
      padding: 12px;
      font-size: 12px;
      line-height: 1.45;
      transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .format-card input:checked + span,
    .format-card:hover span {
      border-color: var(--terra);
      background: var(--white);
      color: var(--terra2);
      transform: translateY(-1px);
    }

    .purchase-row {
      display: grid;
      grid-template-columns: 128px 1fr;
      gap: 12px;
      margin-top: 26px;
      margin-bottom: 14px;
    }

    .qty-control {
      height: 54px;
      border: 1px solid rgba(196,132,121,0.32);
      background: var(--white);
      display: grid;
      grid-template-columns: 38px 1fr 38px;
      align-items: center;
    }

    .qty-control button {
      height: 52px;
      border: none;
      background: transparent;
      cursor: pointer;
      color: var(--dark2);
      font-family: 'Lora', serif;
      font-size: 20px;
      transition: color 0.2s ease;
    }

    .qty-control button:hover { color: var(--terra); }

    .qty-control input {
      width: 100%;
      height: 52px;
      border: none;
      background: transparent;
      text-align: center;
      color: var(--dark);
      outline: none;
      font-weight: 500;
      font-size: 14px;
    }

    .purchase-row .btn-primary { width: 100%; border: none; }

    .secondary-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 24px;
    }

    .product-promises {
      display: grid;
      gap: 10px;
      padding-top: 24px;
      border-top: 1px solid rgba(196,132,121,0.18);
    }

    .promise-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: var(--grey);
      font-size: 13.5px;
      line-height: 1.6;
    }

    .promise-item span {
      color: var(--terra);
      font-family: 'Lora', serif;
      font-size: 18px;
      line-height: 1.2;
    }

    /* STRIP */
    .strip {
      background: var(--terra);
      padding: 18px 0;
      overflow: hidden;
    }

    .strip-track {
      display: flex;
      gap: 52px;
      width: max-content;
      white-space: nowrap;
      animation: slide 25s linear infinite;
    }

    .strip-track span {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 15.5px;
      color: rgba(255,255,255,0.9);
      flex-shrink: 0;
    }

    .strip-dot { color: rgba(255,255,255,0.36) !important; font-style: normal !important; }

    @keyframes slide {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* PRODUCT DETAILS */
    .details-section {
      background: var(--cream2);
      padding: 100px 80px;
    }

    .details-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 4px;
      align-items: stretch;
    }

    .dark-panel {
      background: radial-gradient(110% 80% at 16% 8%, rgba(196,132,121,0.18), transparent 44%), var(--dark);
      color: var(--cream);
      padding: 56px;
      position: relative;
      overflow: hidden;
    }

    .dark-panel::after {
      content: '';
      position: absolute;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      border: 1px solid rgba(196,132,121,0.26);
      right: -100px;
      bottom: -100px;
    }

    .section-title {
      font-family: 'Lora', serif;
      font-size: clamp(32px, 3.8vw, 54px);
      font-weight: 400;
      line-height: 1.16;
      color: var(--dark);
      margin-bottom: 18px;
    }

    .section-title em { color: var(--terra); font-style: italic; }

    .dark-panel .section-title { color: var(--cream); }

    .section-copy {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 17px;
      line-height: 1.75;
      color: var(--grey);
      max-width: 560px;
    }

    .dark-panel .section-copy { color: rgba(250,247,242,0.62); }

    .inside-list {
      margin-top: 34px;
      list-style: none;
      display: grid;
      gap: 16px;
      position: relative;
      z-index: 2;
    }

    .inside-list li {
      display: grid;
      grid-template-columns: 32px 1fr;
      gap: 14px;
      color: rgba(250,247,242,0.78);
      font-size: 14px;
      line-height: 1.7;
    }

    .inside-list b {
      font-family: 'Lora', serif;
      font-weight: 400;
      color: var(--terra);
      font-size: 18px;
    }

    .tabs-panel {
      background: var(--white);
      padding: 56px;
      border-top: 3px solid var(--terra);
    }

    .tab-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 26px;
    }

    .tab-button {
      border: 1px solid rgba(196,132,121,0.28);
      background: var(--cream);
      color: var(--dark2);
      border-radius: 99px;
      padding: 12px 17px;
      font-size: 10.5px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .tab-button.active,
    .tab-button:hover {
      background: var(--dark);
      color: var(--cream);
      border-color: var(--dark);
    }

    .tab-panel { display: none; }
    .tab-panel.active { display: block; animation: fadeIn 0.35s ease; }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .tab-panel h3 {
      font-family: 'Lora', serif;
      font-size: 30px;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 14px;
    }

    .tab-panel p,
    .tab-panel li {
      font-size: 14.5px;
      line-height: 1.86;
      color: var(--grey);
    }

    .tab-panel ul { margin-left: 20px; margin-top: 14px; }

    /* PHASES */
    .phase-section {
      padding: 96px 80px;
      background: var(--cream);
    }

    .phase-inner { max-width: 1180px; margin: 0 auto; }

    .phase-head {
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: 56px;
      align-items: end;
      margin-bottom: 42px;
    }

    .phase-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
    }

    .phase-card {
      background: var(--white);
      border-top: 3px solid var(--terra);
      padding: 38px 32px;
      min-height: 310px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .phase-card:hover { transform: translateY(-5px); box-shadow: var(--soft-shadow); }

    .phase-number {
      display: block;
      font-size: 10.5px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--terra);
      margin-bottom: 24px;
    }

    .phase-card h3 {
      font-family: 'Lora', serif;
      font-size: 30px;
      font-style: italic;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 16px;
    }

    .phase-card p {
      color: var(--grey);
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .phase-card ul {
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .phase-card li {
      padding-left: 20px;
      position: relative;
      color: var(--dark2);
      font-size: 13px;
      line-height: 1.55;
    }

    .phase-card li::before {
      content: '✦';
      color: var(--terra);
      position: absolute;
      left: 0;
      top: 0;
      font-size: 11px;
    }

    /* REVIEWS */
    .reviews-section {
      background: var(--cream2);
      padding: 96px 80px;
    }

    .reviews-inner {
      max-width: 980px;
      margin: 0 auto;
      text-align: center;
    }

    .quote-mark {
      font-family: 'Lora', serif;
      font-size: 108px;
      color: rgba(196,132,121,0.20);
      line-height: 0.75;
      display: block;
      margin-bottom: 24px;
    }

    .review-text {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: clamp(24px, 3vw, 38px);
      line-height: 1.48;
      color: var(--dark);
      max-width: 780px;
      margin: 0 auto 24px;
    }

    .review-name {
      font-size: 11.5px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--terra);
    }

    /* FAQ + CTA */
    .faq-cta {
      background: var(--cream);
      padding: 96px 80px;
    }

    .faq-cta-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.86fr 1.14fr;
      gap: 56px;
      align-items: start;
    }

    .accordion { display: grid; gap: 4px; }

    .faq-item {
      background: var(--white);
      border-top: 1px solid rgba(196,132,121,0.28);
    }

    .faq-question {
      width: 100%;
      border: none;
      background: transparent;
      padding: 25px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      text-align: left;
      cursor: pointer;
      font-family: 'Lora', serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--dark);
    }

    .faq-question span {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid rgba(196,132,121,0.42);
      display: grid;
      place-items: center;
      color: var(--terra);
      flex: 0 0 auto;
      transition: transform 0.2s ease;
    }

    .faq-item.open .faq-question span { transform: rotate(45deg); }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.3s ease;
    }

    .faq-item.open .faq-answer { grid-template-rows: 1fr; }

    .faq-answer-inner { overflow: hidden; }

    .faq-answer p {
      padding: 0 28px 26px;
      color: var(--grey);
      font-size: 14px;
      line-height: 1.82;
    }

    .final-cta {
      background:
        radial-gradient(110% 80% at 18% 6%, rgba(196,132,121,0.18), transparent 48%),
        #2A1C18;
      color: var(--cream);
      padding: 90px 80px;
      text-align: center;
    }

    .final-cta .section-title {
      color: var(--cream);
      max-width: 780px;
      margin-left: auto;
      margin-right: auto;
    }

    .final-cta .section-copy {
      color: rgba(250,247,242,0.62);
      margin: 0 auto 32px;
      max-width: 650px;
    }

    /* FOOTER */
    footer {
      background: var(--dark);
      padding: 52px 80px 36px;
    }

    .footer-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(250,247,242,0.08);
      margin-bottom: 28px;
    }

    .footer-brand-name {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 20px;
      color: var(--cream);
      margin-bottom: 10px;
    }

    .footer-brand-tag {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 13px;
      color: rgba(250,247,242,0.35);
    }

    .footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }

    .footer-col h4 {
      font-size: 10.5px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--terra);
      margin-bottom: 16px;
    }

    .footer-col a {
      display: block;
      font-size: 13.5px;
      color: rgba(250,247,242,0.42);
      text-decoration: none;
      margin-bottom: 10px;
      transition: color 0.2s ease;
    }

    .footer-col a:hover { color: var(--cream); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p,
    .footer-bottom a {
      font-size: 12px;
      color: rgba(250,247,242,0.24);
      text-decoration: none;
    }

    .toast {
      position: fixed;
      right: 24px;
      bottom: 24px;
      background: var(--dark);
      color: var(--cream);
      border-left: 3px solid var(--terra);
      padding: 16px 18px;
      z-index: 200;
      box-shadow: 0 18px 46px rgba(30,20,16,0.28);
      max-width: 320px;
      font-size: 13px;
      line-height: 1.55;
      opacity: 0;
      transform: translateY(16px);
      pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .toast.show { opacity: 1; transform: translateY(0); }

    @media (max-width: 1080px) {
      .product-hero { grid-template-columns: 1fr; }
      .product-gallery { border-right: none; min-height: 560px; padding: 70px 48px; }
      .product-info-side { min-height: auto; padding: 66px 48px 72px; }
      .details-inner { grid-template-columns: 1fr; }
      .phase-head { grid-template-columns: 1fr; gap: 24px; }
      .phase-grid { grid-template-columns: 1fr; }
      .faq-cta-inner { grid-template-columns: 1fr; }
    }

    @media (max-width: 860px) {
      nav { padding: 16px 24px; }
      .nav-logo img { height: 42px; max-width: 180px; }
      .nav-links { display: none; }
      .product-hero { padding-top: 75px; }
      .product-gallery { min-height: 470px; padding: 54px 28px; }
      .gallery-stage { width: min(72%, 300px); }
      .gallery-badge { left: 24px; bottom: 24px; max-width: 220px; }
      .product-info-side { padding: 54px 28px 64px; }
      .format-grid { grid-template-columns: 1fr; }
      .purchase-row { grid-template-columns: 1fr; }
      .secondary-actions { grid-template-columns: 1fr; }
      .details-section,
      .phase-section,
      .reviews-section,
      .faq-cta,
      .final-cta { padding: 72px 28px; }
      .dark-panel,
      .tabs-panel { padding: 42px 28px; }
      footer { padding: 48px 24px 28px; }
      .footer-row { flex-direction: column; }
      .footer-cols { gap: 36px; }
    }

    @media (max-width: 560px) {
      .book-page { padding: 28px 22px; }
      .book-page strong { font-size: 32px; }
      .product-title { font-size: 38px; }
      .product-gallery { min-height: 430px; }
      .gallery-badge { position: relative; left: auto; bottom: auto; margin-top: 28px; }
      .product-gallery { flex-direction: column; }
      .faq-question { font-size: 19px; padding: 22px; }
      .faq-answer p { padding: 0 22px 24px; }
      .toast { left: 16px; right: 16px; bottom: 16px; max-width: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
      }
      .reveal { opacity: 1; transform: none; }
    }
  
/* v1.0.28 dynamic WooCommerce product template */
.tqo-single-product-dynamic .tqo-dynamic-product-gallery .image-page {
  padding: 0;
  overflow: hidden;
  background: #fff;
}
.tqo-single-product-dynamic .tqo-dynamic-product-gallery .image-page img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.tqo-single-product-dynamic .tqo-dynamic-product-gallery .main-image-page {
  transform: rotate(15deg) translateX(0) translateY(-2%) scale(0.96);
}
.tqo-single-product-dynamic .tqo-dynamic-product-gallery:hover .main-image-page {
  transform: rotate(0deg) translateX(0) translateY(-7%) scale(1.05);
}
.tqo-single-product-dynamic .product-info-side .product-plain p {
  margin: 0 0 10px;
}
.tqo-single-product-dynamic .final-cta .btn-primary {
  margin-top: 18px;
}
.tqo-single-product-dynamic .phase-card ul { display: none; }
@media (max-width: 767px) {
  .tqo-single-product-dynamic .tqo-dynamic-product-gallery .main-image-page {
    transform: rotate(10deg) scale(0.96);
  }
  .tqo-single-product-dynamic .tqo-dynamic-product-gallery:hover .main-image-page {
    transform: rotate(0deg) scale(1);
  }
}


/* v1.0.30 stable uploaded WooCommerce gallery for Elementor Theme Builder */
.tqo-single-product-dynamic .tqo-dynamic-product-gallery .gallery-stage,
.tqo-single-product-dynamic .tqo-dynamic-product-gallery .gallery-badge{
  opacity: 1 !important;
  visibility: visible !important;
}
.tqo-single-product-dynamic .tqo-dynamic-product-gallery .gallery-stage{
  transform: none !important;
}
.tqo-single-product-dynamic .tqo-dynamic-product-gallery .image-page{
  padding: 0 !important;
  overflow: hidden;
  background: #fff;
  border: 8px solid #fff;
}
.tqo-single-product-dynamic .tqo-dynamic-product-gallery .image-page::before{
  display: none;
}
.tqo-single-product-dynamic .tqo-dynamic-product-gallery .image-page img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.tqo-single-product-dynamic .tqo-dynamic-product-gallery .image-page-back-1{
  transform: rotate(-15deg) translateX(-28%) translateY(7%);
  z-index: 1;
}
.tqo-single-product-dynamic .tqo-dynamic-product-gallery .image-page-back-2{
  transform: rotate(-5deg) translateX(-10%) translateY(1%);
  z-index: 2;
}
.tqo-single-product-dynamic .tqo-dynamic-product-gallery .image-page-back-3{
  transform: rotate(5deg) translateX(10%) translateY(1%);
  z-index: 3;
}
.tqo-single-product-dynamic .tqo-dynamic-product-gallery .main-image-page{
  transform: rotate(15deg) translateX(0) translateY(-2%) scale(0.96) !important;
  z-index: 4;
}
.tqo-single-product-dynamic .tqo-dynamic-product-gallery:hover .image-page-back-1{
  transform: rotate(-23deg) translateX(-44%) translateY(9%);
}
.tqo-single-product-dynamic .tqo-dynamic-product-gallery:hover .image-page-back-2{
  transform: rotate(-10deg) translateX(-18%) translateY(-1%);
}
.tqo-single-product-dynamic .tqo-dynamic-product-gallery:hover .image-page-back-3{
  transform: rotate(11deg) translateX(20%) translateY(0%);
}
.tqo-single-product-dynamic .tqo-dynamic-product-gallery:hover .main-image-page{
  transform: rotate(0deg) translateX(0) translateY(-7%) scale(1.05) !important;
}
@media (max-width: 767px){
  .tqo-single-product-dynamic .tqo-dynamic-product-gallery .main-image-page{
    transform: rotate(10deg) scale(0.96) !important;
  }
  .tqo-single-product-dynamic .tqo-dynamic-product-gallery:hover .main-image-page{
    transform: rotate(0deg) scale(1) !important;
  }
}


/* v1.0.31 exact dynamic product summary styling */
.tqo-single-product-dynamic .product-info-side .product-title em{
  color: var(--terra);
  font-style: italic;
}
.tqo-single-product-dynamic .product-info-side .product-plain p{
  margin: 0 0 10px;
}
.tqo-single-product-dynamic .price-row .price del,
.tqo-single-product-dynamic .price-row .price .amount + del{
  color: rgba(107,85,80,0.48)!important;
  font-size: 16px!important;
  margin-left: 10px;
  text-decoration: line-through;
}
.tqo-single-product-dynamic .price-row .price ins{
  text-decoration: none!important;
}
.tqo-single-product-dynamic .tqo-dynamic-format-option{
  margin-top: 4px;
  margin-bottom: 28px;
}
.tqo-single-product-dynamic .tqo-single-format-grid{
  display: grid;
  grid-template-columns: minmax(210px, 292px);
  gap: 8px;
}
.tqo-single-product-dynamic .format-card span small{
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--terra2);
  letter-spacing: 0;
  text-transform: none;
}
.tqo-single-product-dynamic form.cart.purchase-row,
.tqo-single-product-dynamic .tqo-product-purchase-row{
  display: grid!important;
  grid-template-columns: 128px minmax(0, 1fr)!important;
  gap: 12px!important;
  align-items: stretch!important;
  width: 100%!important;
  margin: 26px 0 14px!important;
  padding: 0!important;
  float: none!important;
  clear: both!important;
}
.tqo-single-product-dynamic form.cart.purchase-row::before,
.tqo-single-product-dynamic form.cart.purchase-row::after{
  content: none!important;
  display: none!important;
}
.tqo-single-product-dynamic .qty-control.tqo-product-qty-control{
  width: 128px!important;
  height: 54px!important;
  margin: 0!important;
  float: none!important;
  flex: none!important;
}
.tqo-single-product-dynamic .qty-control.tqo-product-qty-control input{
  pointer-events: none;
  -moz-appearance: textfield;
}
.tqo-single-product-dynamic .qty-control.tqo-product-qty-control input::-webkit-outer-spin-button,
.tqo-single-product-dynamic .qty-control.tqo-product-qty-control input::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}
.tqo-single-product-dynamic .qty-control.tqo-product-qty-control button{
  cursor: default;
}
.tqo-single-product-dynamic .single_add_to_cart_button.button.alt,
.tqo-single-product-dynamic .single_add_to_cart_button.button,
.tqo-single-product-dynamic .tqo-add-to-bag-button,
.woocommerce .tqo-single-product-dynamic .single_add_to_cart_button.button.alt,
.woocommerce .tqo-single-product-dynamic .single_add_to_cart_button.button{
  width: 100%!important;
  min-height: 54px!important;
  height: 54px!important;
  display: inline-flex!important;
  align-items: center!important;
  justify-content: center!important;
  float: none!important;
  margin: 0!important;
  padding: 0 32px!important;
  border: 1px solid var(--terra)!important;
  border-radius: 3px!important;
  background: var(--terra)!important;
  color: var(--white)!important;
  box-shadow: none!important;
  opacity: 1!important;
  font-family: 'Inter', sans-serif!important;
  font-size: 12.5px!important;
  font-weight: 500!important;
  letter-spacing: 0.12em!important;
  line-height: 1!important;
  text-transform: uppercase!important;
  text-decoration: none!important;
}
.tqo-single-product-dynamic .single_add_to_cart_button.button.alt:hover,
.tqo-single-product-dynamic .single_add_to_cart_button.button:hover,
.tqo-single-product-dynamic .tqo-add-to-bag-button:hover,
.woocommerce .tqo-single-product-dynamic .single_add_to_cart_button.button.alt:hover,
.woocommerce .tqo-single-product-dynamic .single_add_to_cart_button.button:hover{
  background: var(--terra2)!important;
  border-color: var(--terra2)!important;
  color: var(--white)!important;
  transform: translateY(-1px);
}
.tqo-single-product-dynamic .secondary-actions .btn-secondary{
  min-height: 54px;
  width: 100%;
}
@media (max-width: 860px){
  .tqo-single-product-dynamic form.cart.purchase-row,
  .tqo-single-product-dynamic .tqo-product-purchase-row{
    grid-template-columns: 1fr!important;
  }
  .tqo-single-product-dynamic .qty-control.tqo-product-qty-control{
    width: 100%!important;
  }
  .tqo-single-product-dynamic .tqo-single-format-grid{
    grid-template-columns: 1fr;
  }
}


/* v1.0.34 product format card design fix */
.tqo-single-product-dynamic .tqo-single-format-grid{
  grid-template-columns: minmax(220px, 292px);
}
.tqo-single-product-dynamic .tqo-single-format-grid .format-card{
  width: 100%;
}
.tqo-single-product-dynamic .tqo-single-format-grid .format-card span{
  min-height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 18px;
  text-align: center;
}
.tqo-single-product-dynamic .tqo-single-format-grid .format-card span strong{
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--terra);
  letter-spacing: 0;
  text-transform: none;
}
.tqo-single-product-dynamic .tqo-single-format-grid .format-card span small,
.tqo-single-product-dynamic .tqo-single-format-grid .format-card span .amount{
  display: block;
  margin-top: 0;
  font-size: 13px;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}
.tqo-single-product-dynamic .tqo-single-format-grid .format-card span del,
.tqo-single-product-dynamic .tqo-single-format-grid .format-card span ins{
  text-decoration: none;
}


/* v1.0.35 product gallery thumbnail ratio fit */
.tqo-single-product-dynamic .tqo-dynamic-product-gallery .gallery-stage{
  width: min(88%, 520px);
  aspect-ratio: 1448 / 1086 !important;
}
.tqo-single-product-dynamic .tqo-dynamic-product-gallery .image-page,
.tqo-single-product-dynamic .tqo-dynamic-product-gallery .book-page{
  aspect-ratio: 1448 / 1086;
}
.tqo-single-product-dynamic .tqo-dynamic-product-gallery .image-page img{
  object-fit: contain !important;
  background: #ffffff;
}
@media (max-width: 1024px){
  .tqo-single-product-dynamic .tqo-dynamic-product-gallery .gallery-stage{
    width: min(90%, 440px);
  }
}
@media (max-width: 767px){
  .tqo-single-product-dynamic .tqo-dynamic-product-gallery .gallery-stage{
    width: min(94%, 340px);
  }
}


/* v1.0.37 remove choose-format block from product summary */
.tqo-single-product-dynamic .tqo-dynamic-format-option,
.tqo-single-product-dynamic .tqo-single-format-grid{
  display:none !important;
}
