    :root {
      --gold: #C9A84C;
      --gold-light: #E8D5A3;
      --gold-pale: #F5EDD6;
      --cream: #FDF8F0;
      --dark: #1A1209;
      --text: #3A2E1E;
      --text-light: #7A6A52;
      --white: #FFFFFF;
      --green: #4CAF50;
      --border: rgba(201,168,76,0.25);
    }

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

    /* html { scroll-behavior: smooth; } */

    body {
      font-family: 'Open Sans', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }
    
    .errors2 {
        color: #fb6363;
        font-size: 15px;
        line-height: 1.4;
        margin-top: 0px;
        font-weight: bold;
        margin-bottom: 20px;
        text-align: center;
    }

    .errors2:empty {
        display: none;
    }
    
    .errors2 p {
        margin-top: 8px;
        margin-bottom: 0px;
    }

    .errors2-title {
        background: #ff4545;
        color: #fff;
        /* border-radius: 28px; */
        padding: 9px 10px;
        text-transform: uppercase;
        font-size: 15px;
        line-height: 1.2;
        letter-spacing: 2px;
        text-align: center;
    }
    
    .breadcrumbs {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .breadcrumbs::before {
        content: '';
        display: inline-block;
        width: 30px;
        height: 1px;
        background: var(--gold);
    }
    
    .breadcrumbs span {
        position: relative;
        display: flex;
        flex-wrap: wrap;
    }
    
    .breadcrumbs__item {
        font-size: 15px;
        line-height: 1.4;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        letter-spacing: 2px;
        text-decoration: none;
        color: var(--gold);
    }
    
    .breadcrumbs__item::after {
        content: "/";
        margin: 0px 6px;
    }
    .breadcrumbs__item:last-child::after {
        content:none;
    }
    
    .productInfoVariant-1 {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .productInfoVariant-1 > .infoProd {
        text-align: center;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        line-height: 27px;
        color: #222;
        margin-right: 0px;
    }

    .productInfoVariant-1 > .infoProd > .oldPrice {
        font-size: 24px;
        font-weight: 600;
        line-height: 1.5;
        text-decoration: line-through;
    }

    .productInfoVariant-1 > .infoProd > p {
        margin-bottom: 8px;
    }

    .productInfoVariant-1 > .infoProd > .newPrice {
        color: #C62828;
        font-size: 24px;
        line-height: 36px;
        font-weight: 700;
    }
    
    /* ===== MAIN LAYOUT ===== */
    .main {
      padding: 40px 0px 100px;
    }
    
    /* ===== TOPBAR ===== */
    .topbar {
      background: var(--dark);
      padding: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(201,168,76,0.2);
    }

    .topbar-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 40px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .topbar-brand {
      font-family: 'Poppins', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 3px;
      text-decoration: none;
    }
    
    .nav-links {
      display: flex;
      align-items: center;
      gap: 40px;
    }
    
    .nav-links a {
      font-size: 16px;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color 0.2s ease;
      letter-spacing: 0.5px;
    }
    
    .nav-links a:hover {
      color: var(--gold);
    }

    .topbar-back {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color 0.2s ease;
      letter-spacing: 0.5px;
    }

    .topbar-back:hover { color: var(--gold); }

    .topbar-steps {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
    }

    .step {
      display: flex;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,0.3);
    }

    .step.active { color: var(--gold); }
    .step.done { color: var(--green); }

    .step-num {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 600;
    }
    
    .step.done .step-num {
        background: var(--green);
        color: white;
        font-size: 12px;
    }

    .step.active .step-num {
      background: var(--gold);
      color: var(--dark);
    }

    .step-sep {
      color: rgba(255,255,255,0.2);
      font-size: 10px;
      margin: 0 2px;
    }

    /* ===== HERO ===== */
    .hero {
      min-height: -webkit-calc(100vh - 60px);
      min-height: -moz-calc(100vh - 60px);
      min-height: calc(100vh - 60px);
      background: linear-gradient(165deg, #1A1209 0%, #2E1F0A 40%, #3D2A10 70%, #1A1209 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .hero-inner {
      max-width: 1100px;
      width: 100%;
      margin: 0 auto;
      padding: 80px 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 40px;
      position: relative;
      z-index: 2;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-ornament {
      position: absolute;
      top: 0; right: 0;
      width: 50%;
      height: 100%;
      background: 
        radial-gradient(ellipse 80% 50% at 80% 30%, rgba(201,168,76,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 60% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
      pointer-events: none;
    }

    .hero-text {
      padding: 0;
      position: relative;
      z-index: 2;
      animation: fadeInUp 1s ease both;
    }

    .hero-eyebrow {
      font-family: 'Open Sans', sans-serif;
      font-weight: 400;
      font-size: 15px;
      line-height: 1.45;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 40px;
      height: 1px;
      background: var(--gold);
    }

    .hero-headline {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(42px, 5vw, 51px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 8px;
    }

    .hero-headline em {
      color: var(--gold);
      font-style: italic;
      display: block;
    }

    .hero-subline {
      font-family: 'Open Sans', sans-serif;
      font-size: 20px;
      font-style: italic;
      color: var(--gold-light);
      margin: 16px 0 32px;
      font-weight: 300;
    }

    .hero-desc {
      font-size: 16px;
      line-height: 1.8;
      color: rgba(255,255,255,0.6);
      font-weight: 300;
      max-width: 420px;
      margin-bottom: 40px;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, var(--gold), #A8872E);
      color: var(--dark);
      font-family: 'Open Sans', sans-serif;
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 18px 40px;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .hero-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.15);
      transform: translateX(-100%);
      transition: transform 0.4s ease;
    }

    .hero-cta:hover::before { transform: translateX(0); }
    .hero-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,168,76,0.3); }

    .hero-product {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
      padding: 0;
      animation: fadeInRight 1.2s ease both;
    }

    .hero-bullets {
      list-style: none;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .hero-bullets li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Open Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
      padding: 10px 16px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(201,168,76,0.2);
      border-left: 3px solid var(--gold);
      line-height: 1.4;
    }

    .hero-bullet-icon {
      color: var(--gold);
      font-size: 12px;
      flex-shrink: 0;
    }

    .hero-product-glow {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-product img {
      width: 100%;
      max-width: 440px;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
      animation: float 6s ease-in-out infinite;
    }

    .hero-badge {
      position: absolute;
      bottom: -10px;
      right: -10px;
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.4);
      backdrop-filter: blur(10px);
      padding: 16px 24px;
      text-align: center;
      z-index: 3;
    }

    .hero-badge-num {
      font-family: 'Poppins', sans-serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .hero-badge-label {
      font-size: 10px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-top: 4px;
      max-width: 120px;
      line-height: 1.4;
    }

    /* ===== STORY SECTION ===== */
    .story {
      background: var(--white);
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

    /*.story::before {
      content: '"';
      font-family: 'Poppins', sans-serif;
      font-size: 300px;
      color: var(--gold-pale);
      position: absolute;
      top: 60px;
      left: calc(50% - 390px);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }*/

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .container-narrow {
      max-width: 880px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .section-label {
      /* font-family: 'Open Sans', sans-serif; */
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .why-inner .section-label,
    .effects .section-label,
    .comments-section .section-label {
      font-weight: 600;
      color: #9d7a1c;
    }

    .section-label::before {
      content: '';
      display: inline-block;
      width: 30px;
      height: 1px;
      background: var(--gold);
    }

    .story-image {
      margin: 40px 0 48px;
      position: relative;
      z-index: 1;
    }

    .story-image img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      object-position: center 20%;
      display: block;
      filter: brightness(0.97);
    }

    .story-image-caption {
      background: var(--gold-pale);
      border-left: 3px solid var(--gold);
      padding: 12px 20px;
      font-size: 13px;
      font-style: italic;
      color: var(--text-light);
      line-height: 1.6;
    }

    .story-intro {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 400;
      font-style: italic;
      color: var(--dark);
      line-height: 1.3;
      margin-bottom: 48px;
      position: relative;
      z-index: 1;
    }

    .story-intro strong {
      font-weight: 700;
      font-style: normal;
      color: var(--gold);
    }

    .story-text {
      font-family: 'Open Sans', sans-serif;
      font-size: 19px;
      line-height: 1.9;
      color: var(--text);
      font-weight: 400;
      position: relative;
      z-index: 1;
    }

    .story-text p { margin-bottom: 28px; }

    .story-text p:last-child { margin-bottom: 0; }

    .story-highlight {
      border-left: 3px solid var(--gold);
      padding: 24px 32px;
      margin: 48px 0;
      background: var(--gold-pale);
    }

    .story-highlight p {
      font-family: 'Poppins', sans-serif;
      font-size: 20px;
      font-style: italic;
      color: var(--dark);
      line-height: 1.5;
      margin: 0;
    }

    /* ===== WHY VIANELLE ===== */
    .why-section {
      background: var(--gold-pale);
      padding: 100px 0;
      position: relative;
    }

    .why-section::before,
    .why-section::after {
      content: '';
      position: absolute;
      left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .why-section::before { top: 0; }
    .why-section::after  { bottom: 0; }

    .why-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }

    .why-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 20px;
      line-height: 1.25;
    }

    .why-lead {
      font-size: 16px;
      color: var(--text);
      margin-bottom: 20px;
      font-weight: 500;
    }

    .why-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .why-list li {
      font-size: 16px;
      color: var(--text);
      line-height: 1.6;
      padding-left: 20px;
      position: relative;
    }

    .why-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 10px;
      width: 7px;
      height: 7px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .why-checks {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 4px;
    }

    .why-check {
      font-size: 16px;
      color: var(--text);
      line-height: 1.5;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .check-icon {
      color: var(--gold);
      font-weight: 700;
      font-size: 16px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .why-cta-block {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 48px;
      align-items: center;
      background: var(--white);
      border: 1px solid var(--border);
      padding: 48px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    }

    .why-cta-text p {
      font-size: 16px;
      line-height: 1.8;
      color: var(--text);
      margin-bottom: 14px;
    }

    .why-cta-text p:last-child { margin-bottom: 0; }

    .why-cta-text strong { color: var(--dark); }

    .why-cta-price {
      text-align: center;
      min-width: 180px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .why-price-label {
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-light);
    }

    .why-price-num {
      font-family: 'Poppins', sans-serif;
      font-size: 42px;
      font-weight: bold;
      color: var(--dark);
      color: #d83232;
      color: #CC0000;
      line-height: 1.15;
    }
    
    .why-price-num .old-price {
        text-decoration: line-through;
    }
    
    .why-price-num .new-price {
        color: #208411;
        font-weight: bold;
    }

    .why-btn {
      display: inline-block;
      background: linear-gradient(135deg, var(--gold), #A8872E);
      color: var(--dark);
      font-family: 'Open Sans', sans-serif;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 1px;
      padding: 14px 32px;
      text-decoration: none;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .why-btn:hover {
      box-shadow: 0 8px 24px rgba(201,168,76,0.35);
      transform: translateY(-2px);
    }

    /* ===== INGREDIENTS ===== */
    .ingredients {
      background: linear-gradient(180deg, #1A1209 0%, #2A1C0C 100%);
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

    .ingredients::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .ingredients-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 700;
      color: var(--white);
      text-align: center;
      margin-bottom: 16px;
    }

    .ingredients-subtitle {
      font-family: 'Open Sans', sans-serif;
      font-size: 20px;
      font-style: italic;
      color: var(--gold-light);
      text-align: center;
      margin-bottom: 80px;
    }

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

    .ing-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(201,168,76,0.15);
      padding: 48px 40px;
      position: relative;
      transition: all 0.4s ease;
      overflow: hidden;
    }

    .ing-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .ing-card:hover::before { opacity: 1; }
    .ing-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }

    .ing-number {
      font-family: 'Poppins', sans-serif;
      font-size: 72px;
      font-weight: 900;
      color: rgba(201,168,76,0.12);
      line-height: 1;
      position: relative;
    }

    .ing-icon {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .ing-name {
      font-family: 'Poppins', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .ing-subtitle {
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 20px;
    }

    .ing-desc {
      font-size: 16px;
      line-height: 1.8;
      color: rgba(255,255,255,0.6);
      font-weight: 300;
    }

    .ing-stat {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 20px;
      background: rgba(201,168,76,0.12);
      border: 1px solid rgba(201,168,76,0.25);
      padding: 8px 16px;
      font-size: 13px;
      color: var(--gold-light);
      letter-spacing: 1px;
    }

    /* ===== EFFECTS ===== */
    .effects {
      padding: 120px 0;
      background: var(--cream);
      position: relative;
    }

    .effects-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
      margin-top: 60px;
    }

    .effect-item {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      padding: 32px;
      background: var(--white);
      border: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    .effect-item:hover {
      border-color: var(--gold);
      box-shadow: 0 8px 30px rgba(201,168,76,0.1);
      transform: translateY(-2px);
    }

    .effect-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--gold), #A8872E);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .effect-content h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 19px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .effect-content p {
      font-size: 16px;
      line-height: 1.7;
      color: var(--text-light);
    }

    .effects-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 700;
      color: var(--dark);
    }

    /* ===== STATS BAR ===== */
    .stats {
      background: var(--gold);
      padding: 60px 0;
    }

    .stats-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      text-align: center;
    }

    .stat-item {
      padding: 20px;
      border-right: 1px solid rgba(0,0,0,0.1);
    }

    .stat-item:last-child { border-right: none; }

    .stat-num {
      font-family: 'Poppins', sans-serif;
      font-size: 48px;
      font-weight: 900;
      color: var(--dark);
      line-height: 1;
    }

    .stat-label {
      font-size: 14px;
      letter-spacing: 2px;
      font-weight: 500;
      text-transform: uppercase;
      color: rgba(26,18,9,0.7);
      margin-top: 8px;
    }

    /* ===== PRODUCT DETAILS ===== */
    .product-detail {
      background: var(--white);
      padding: 120px 0;
    }

    .product-detail-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .product-img-wrap {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .product-img-bg {
      position: absolute;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, var(--gold-pale) 0%, transparent 70%);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .product-img-wrap img {
      width: 100%;
      max-width: 380px;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    }

    .product-detail-content h2 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 16px;
    }

    .product-detail-content .tagline {
      font-family: 'Open Sans', sans-serif;
      font-size: 20px;
      font-style: italic;
      color: var(--gold);
      margin-bottom: 32px;
    }

    .product-detail-content p {
      font-size: 15px;
      line-height: 1.8;
      color: var(--text-light);
      margin-bottom: 24px;
    }

    .product-specs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 32px;
    }

    .spec-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--text);
    }

    .spec-dot {
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }
    
    .payment-icons-block {
        margin-top: 16px;
    }

    .payment-icons-label {
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--text-light);
        margin-bottom: 10px;
        font-weight: 500;
    }

    .payment-icons-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .payment-icons-row img {
        width: initial !important;
        max-height: 30px;
        object-fit: contain;
        margin: 15px;
    }

    /* ===== ORDER SECTION ===== */
    .order-section {
      background: linear-gradient(180deg, #F5EDD6 0%, var(--cream) 100%);
      padding: 120px 0;
      position: relative;
    }

    .order-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .order-product-showcase {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .page-order .order-product-showcase {
        margin-bottom: 18px;
    }

    .order-product-showcase img {
      /* max-width: 280px; */
      max-width: 380px;
      width: 60%;
      filter: drop-shadow(0 20px 50px rgba(0,0,0,0.12));
      /* animation: float 5s ease-in-out infinite; */
    }

    .order-product-name {
      font-family: 'Poppins', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--dark);
      margin-top: 24px;
    }

    .order-product-tagline {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-style: normal;
        color: var(--white);
        font-size: 20px;
        letter-spacing: 1px;
        margin-top: 10px;
        background: linear-gradient(135deg, var(--gold), #A8872E);
        display: inline-block;
        padding: 10px 28px;
    }

    /*.order-price {
      font-family: 'Poppins', sans-serif;
      font-size: 48px;
      font-weight: 900;
      color: var(--dark);
      margin: 16px 0 4px;
    }

    .order-price-note {
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-light);
    }*/
    
    .order-price-note2 {
        font-size: 22px; 
        color: #000000; 
        font-weight: 500; 
        font-family: 'Poppins', sans-serif;
        margin-top: 30px;
    }
    
    .order-price-note2 span {
        color: #208411
    }
    
    .product-price {
      justify-content: center;
      align-items: center;
      font-family: 'Poppins', sans-serif;
      font-size: 42px;
      line-height: 1.25;
      font-weight: bold;
      color: var(--dark);
      margin: 26px 0 4px;
    }
    .product-price .old-price {
      text-decoration: line-through;
    }
    .product-price .new-price {
      font-weight: bold;
    }
    .product-price span {
      margin: 15px;
    }
    .product-price i {
      color: #c00;
    }
    .product-price .color-green {
      color: #208411;
    }

    .order-wrapper {
      max-width: 680px;
      margin: 0 auto;
      background: var(--white);
      border: 1px solid var(--border);
      box-shadow: 0 20px 80px rgba(0,0,0,0.08);
      padding: 60px;
    }

    .order-title {
      font-family: 'Poppins', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--dark);
      text-align: center;
      margin-bottom: 8px;
    }

    .order-subtitle {
      font-size: 13px;
      color: var(--text-light);
      text-align: center;
      margin-bottom: 40px;
      letter-spacing: 1px;
    }
    .order-subtitle i {
        display: inline-block;
        background: url(../img/verified.png) no-repeat;
        background-size: 18px 18px;
        width: 18px;
        height: 18px;
        vertical-align: middle;
        margin-right: 5px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }
    
    .form-row-35-65 {
      grid-template-columns: calc(35% - 10px) calc(65% - 10px);
    }
    
    .form-row-65-35 {
      grid-template-columns: calc(65% - 10px) calc(35% - 10px);
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 8px;
      font-weight: 500;
    }

    .form-group input,
    .form-group select {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid #E0D5C5;
      background: #FDFAF5;
      font-family: 'Open Sans', sans-serif;
      font-size: 14px;
      color: var(--dark);
      outline: none;
      transition: border-color 0.3s ease;
      appearance: none;
      -webkit-appearance: none;
    }

    .form-group input:focus,
    .form-group select:focus {
      border-color: var(--gold);
      background: var(--white);
    }

    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A84C' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      background-color: #FDFAF5;
      padding-right: 40px;
      cursor: pointer;
    }
    
    .form-group input.error-field,
    .form-group select.error-field {
        border-color: #C0392B;
    }

    .payment-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 8px;
    }

    .payment-option {
      position: relative;
    }

    .payment-option input[type="radio"] {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    .payment-option label {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 20px 16px;
      border: 2px solid #E0D5C5;
      background: #FDFAF5;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: none;
      letter-spacing: 0;
      font-size: 14px;
      font-weight: 400;
      color: var(--text);
    }

    .payment-option label .pay-icon {
      font-size: 24px;
    }

    .payment-option label .pay-name {
      font-weight: 500;
      font-size: 14px;
      color: var(--dark);
    }

    .payment-option label .pay-desc {
      font-size: 12px;
      color: var(--text-light);
      letter-spacing: 0;
    }

    .payment-option input[type="radio"]:checked + label {
      border-color: var(--gold);
      background: var(--gold-pale);
    }
    
    .form-icons {
        display: flex;
        flex-wrap: wrap;
        margin: 10px 0px 20px;
        justify-content: center;
        background: #FDFAF5;
        padding: 20px 0px;
    }
    .form-icons img {
      width: initial !important;
    }
    .form-icons .form-single-icon {
        max-height: 30px;
        object-fit: contain;
        margin: 15px;
    }

    .form-icons-item {
        align-items: center;
        font-size: 14px;
        margin: 10px 15px;
    }

    .form-icons-item:first-child {
        margin-left: 0px;
    }

    .form-icons-item:last-child {
        margin-right: 0px;
    }

    .form-icons-item:last-child img {
        height: 35px;
    }

    .form-icons-item img {
        height: 40px;
        object-fit: contain;
        margin-right: 10px;
        max-width: 40px;
    }

    .divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 32px 0;
    }
    
    .order-summary2 {
        border-top: 1px solid var(--border);
        margin-top: 15px;
        padding-top: 20px;
    }
    
    .order-summary2 p {
      margin-top: 5px;
      margin-bottom: 5px;
      font-size: 16px !important;
      line-height: 26px;
      color: var(--text-light);
    }
    
    .order-summary2 .separator {
        display:block;
        width:100%; 
        height:1px;
        background-color:var(--border);
        margin: 10px 0px;
    }
    
    .order-summary2 .lt {
      text-decoration: line-through;
    }
    
    .order-summary2 .color-green {
      color: green;
    }

    .order-summary {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background: var(--gold-pale);
      border: 1px solid rgba(201,168,76,0.3);
    }

    .summary-label {
      font-size: 13px;
      color: var(--text-light);
      letter-spacing: 1px;
    }

    .summary-price {
      font-family: 'Poppins', sans-serif;
      font-size: 32px;
      font-weight: 900;
      color: var(--dark);
    }

    .btn-order {
      width: 100%;
      padding: 20px;
      background: linear-gradient(135deg, var(--gold), #A8872E);
      border: none;
      color: var(--dark);
      font-family: 'Open Sans', sans-serif;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      margin-top: 24px;
    }

    .btn-order::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.15);
      transform: translateX(-100%);
      transition: transform 0.4s ease;
    }

    .btn-order:hover::before { transform: translateX(0); }
    .btn-order:hover { box-shadow: 0 8px 30px rgba(201,168,76,0.4); transform: translateY(-1px); }

    .order-trust {
      display: flex;
      justify-content: center;
      gap: 32px;
      margin-top: 24px;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--text-light);
      letter-spacing: 1px;
    }

    .trust-item span:first-child {
      color: var(--gold);
      font-size: 14px;
    }

    /* ===== STORY INLINE PHOTOS ===== */
    .story-photo-inline {
      margin: 40px 0;
      position: relative;
      z-index: 1;
    }

    .story-photo-slot {
      width: 100%;
      height: 340px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      position: relative;
      overflow: hidden;
    }

    .story-photo-slot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
      display: block;
    }

    .story-photo-problem {
      background: linear-gradient(135deg, #e8e0d8 0%, #d4c8bc 100%);
      border: 2px dashed #b0a090;
    }

    .story-photo-after {
      background: linear-gradient(135deg, #e8f0e8 0%, #c8dcc8 100%);
      border: 2px dashed #90b090;
    }

    .photo-placeholder-icon { font-size: 40px; opacity: 0.5; }

    .photo-placeholder-label {
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 3px;
      color: #6a5a4a;
      opacity: 0.7;
    }

    .photo-placeholder-hint {
      font-size: 12px;
      color: #8a7a6a;
      text-align: center;
      line-height: 1.6;
      opacity: 0.8;
    }

    .story-photo-caption {
      padding: 12px 20px;
      background: var(--cream);
      border-left: 3px solid var(--gold);
      font-size: 13px;
      color: var(--text-light);
      font-style: italic;
      line-height: 1.6;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .caption-tag {
      font-style: normal;
      font-family: 'Poppins', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      padding: 3px 10px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .caption-tag--problem {
      background: #8a7a6a;
      color: white;
    }

    .caption-tag--after {
      background: var(--gold);
      color: var(--dark);
    }

    /* ===== BEFORE / AFTER SECTION ===== */
    .before-after-section {
      background: var(--white);
      padding: 100px 0;
      position: relative;
    }

    .before-after-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .ba-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(26px, 3vw, 40px);
      font-weight: 700;
      color: var(--dark);
      text-align: center;
      margin-bottom: 12px;
    }

    .ba-subtitle {
      font-size: 15px;
      color: var(--text-light);
      text-align: center;
      margin-bottom: 60px;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    .ba-grid {
      display: grid;
      grid-template-columns: 1fr 60px 1fr;
      gap: 0;
      align-items: stretch;
    }

    .ba-card {
      display: flex;
      flex-direction: column;
      border: 1px solid var(--border);
      overflow: hidden;
    }

    .ba-photo-slot {
      height: 400px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      position: relative;
      overflow: hidden;
    }

    .ba-photo-slot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .ba-card--before .ba-photo-slot {
      background: linear-gradient(160deg, #ddd5cc 0%, #c8bdb2 100%);
      border-bottom: 3px solid #a09080;
    }

    .ba-card--after .ba-photo-slot {
      background: linear-gradient(160deg, #e4ede4 0%, #c8dcc8 100%);
      border-bottom: 3px solid var(--gold);
    }

    .ba-card--before .photo-placeholder-label { color: #6a5a4a; }
    .ba-card--after .photo-placeholder-label { color: #3a5a3a; }
    .ba-card--before .photo-placeholder-hint { color: #8a7a6a; }
    .ba-card--after .photo-placeholder-hint { color: #5a7a5a; }

    .ba-card-footer {
      padding: 28px 32px;
      flex: 1;
    }

    .ba-card-footer--before { background: #faf7f4; }
    .ba-card-footer--after  { background: var(--gold-pale); }

    .ba-tag {
      display: inline-block;
      font-family: 'Poppins', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      padding: 5px 16px;
      margin-bottom: 16px;
    }

    .ba-tag--before {
      background: #8a7a6a;
      color: white;
    }

    .ba-tag--after {
      background: var(--gold);
      color: var(--dark);
    }

    .ba-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .ba-list li {
      font-size: 14px;
      color: var(--text);
      line-height: 1.5;
      padding-left: 18px;
      position: relative;
    }

    .ba-card--before .ba-list li::before {
      content: '✕';
      position: absolute;
      left: 0;
      color: #a08070;
      font-size: 11px;
      top: 2px;
    }

    .ba-card--after .ba-list li::before {
      content: '✔';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: 11px;
      top: 2px;
      font-weight: 700;
    }

    .ba-divider-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
      padding: 20px 0;
    }

    .ba-divider-line {
      flex: 1;
      width: 1px;
      background: var(--border);
    }

    .ba-divider-circle {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--dark);
      color: var(--gold);
      font-family: 'Poppins', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin: 12px 0;
    }

    .ba-note {
      margin-top: 32px;
      text-align: center;
      font-size: 12px;
      color: var(--text-light);
      font-style: italic;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .ba-grid {
        grid-template-columns: 1fr;
      }
      .ba-divider-col {
        flex-direction: row;
        padding: 0 20px;
        height: 44px;
      }
      .ba-divider-line {
        flex: 1;
        width: auto;
        height: 1px;
      }
      .ba-divider-circle { margin: 0 12px; }
      .ba-photo-slot { height: 280px; }
    }

    /* ===== REVIEWS ===== */
    .reviews {
      background: var(--cream);
      padding: 120px 0;
      position: relative;
    }

    .reviews::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .reviews-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(26px, 3vw, 40px);
      font-weight: 700;
      color: var(--dark);
      text-align: center;
      margin-bottom: 12px;
    }

    .reviews-subtitle {
      font-family: 'Open Sans', sans-serif;
      font-size: 15px;
      color: var(--text-light);
      text-align: center;
      margin-bottom: 64px;
      font-style: italic;
    }

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

    .review-card {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: all 0.3s ease;
      position: relative;
    }

    .review-card::before {
      content: '"';
      font-family: 'Poppins', sans-serif;
      font-size: 80px;
      color: var(--gold-pale);
      position: absolute;
      top: 12px;
      right: 24px;
      line-height: 1;
      pointer-events: none;
    }

    .review-card:hover {
      border-color: var(--gold);
      box-shadow: 0 8px 32px rgba(201,168,76,0.12);
      transform: translateY(-3px);
    }

    .review-stars {
      color: var(--gold);
      font-size: 16px;
      letter-spacing: 2px;
    }

    .review-text {
      font-family: 'Open Sans', sans-serif;
      font-size: 14px;
      line-height: 1.8;
      color: var(--text);
      font-style: italic;
      flex: 1;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 8px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }

    .review-avatar {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--gold), #A8872E);
      color: var(--dark);
      font-family: 'Poppins', sans-serif;
      font-size: 12px;
      font-weight: 700;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .review-name {
      font-family: 'Open Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--dark);
    }

    .review-meta {
      font-size: 11px;
      color: var(--text-light);
      margin-top: 2px;
    }

    .reviews-cta {
      text-align: center;
      margin-top: 56px;
    }

    .reviews-order-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--gold), #A8872E);
      color: var(--dark);
      font-family: 'Open Sans', sans-serif;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 1px;
      padding: 18px 48px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .reviews-order-btn:hover {
      box-shadow: 0 10px 30px rgba(201,168,76,0.35);
      transform: translateY(-2px);
    }

    @media (max-width: 900px) {
      .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 580px) {
      .reviews-grid { grid-template-columns: 1fr; }
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--dark);
      padding: 40px 0 25px;
      text-align: center;
    }

    .footer-brand {
      font-family: 'Poppins', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 4px;
      margin-bottom: 16px;
    }

    .footer-tagline {
      font-family: 'Open Sans', sans-serif;
      font-style: italic;
      color: rgba(255,255,255,0.4);
      font-size: 16px;
      margin-bottom: 32px;
    }

    footer p {
      font-size: 12px;
      color: rgba(255,255,255,0.25);
      letter-spacing: 1px;
    }
    
    footer p.small {
      /* padding-top: 10px; */
      font-size: 11px;
      /* color: #aaa; */
      line-height: 17px;
      text-align: center;
      margin-bottom: 14px;
    }
    
    .footerMenu {
      text-align: center;
    }

    ul.footerMenuContent {
      list-style-type: none;
    }

    ul.footerMenuContent li {
      display: inline-block;
      margin: 5px;
    }
    ul.footerMenuContent li a {
      color: rgba(255,255,255,0.4);
      font-size: 12px;
      text-decoration: none;
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(40px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-14px); }
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* ===== COMMENTS ===== */
  .comments-section {
    background: var(--cream);
    padding: 120px 0;
    position: relative;
  }

  .comments-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .comments-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 56px;
  }

  /* --- Comment items --- */
  .comments-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 780px;
    margin: 0 auto 56px;
  }

  .comment-item {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    animation: fadeInUp 0.5s ease both;
  }

  .comment-item:first-child { border-top: 1px solid var(--border); }

  .comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8dfd0, #d4c8b8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border: 2px solid var(--border);
    overflow: hidden;
    color: #8a7a6a;
  }

  .comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .comment-body { flex: 1; }

  .comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .comment-name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
  }

  .comment-date {
    font-size: 12px;
    color: var(--text-light);
  }

  .comment-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
  }

  /* --- Comment form --- */
  .comment-form-wrap {
    max-width: 780px;
    margin: 0 auto 48px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 40px;
  }

  .comment-form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
  }

  .cf-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .cf-avatar-preview {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8dfd0, #d4c8b8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    border: 2px solid var(--border);
    margin-top: 22px;
    color: #8a7a6a;
  }

  .cf-fields {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .cf-group {
    margin-bottom: 16px;
  }

  .cf-group label {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 7px;
  }

  .cf-group input,
  .cf-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0D5C5;
    background: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: var(--dark);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    resize: vertical;
    border-radius: 0;
  }

  .cf-group input:focus,
  .cf-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
  }

  /* Star picker */
  .cf-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), #A8872E);
    border: none;
    color: var(--dark);
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 36px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .cf-submit:hover {
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
    transform: translateY(-1px);
  }

  .cf-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }

  .cf-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: #f0faf0;
    border: 1px solid #a8d8a8;
    color: #2e7d32;
    font-size: 14px;
    margin-top: 16px;
  }

  .cf-success.visible { display: flex; }
  
  .comment-form-wrap .cf-success {
      margin-bottom: 20px;
  }

  .comments-cta {
    text-align: center;
    margin-top: 16px;
  }

  .reviews-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), #A8872E);
    color: var(--dark);
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 18px 48px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .reviews-order-btn:hover {
    box-shadow: 0 10px 30px rgba(201,168,76,0.35);
    transform: translateY(-2px);
  }
  
  /* ===== PAGE ORDER ====== */
  .order-paragraph {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
  }
  
  .del {
    text-decoration: line-through;
  }
  
  .order-paragraph .del {
    color: #ff0000;
  }
  
  span.otherStyle {
    background: #f9cb37;
    padding: 5px 10px;
    font-weight: 900;
    color: #000;
  }
  
  .order-text-1 {
    display: block; 
    color: #C62828;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 5vw, 40px);; 
    line-height: 48px; 
    font-weight: 600; 
    margin-bottom: 25px;
  }
  
  .order-text-2 {
    color: #C62828; 
    font-family: 'Poppins', sans-serif;
    font-size: 24px; 
    font-style: italic; 
    margin-bottom: 10px;
  }
  
  .order-text-3 {
    font-size: 16px; 
    line-height: 1.65; 
    color: #222;
  }
  
  /* ===== THANK YOU PAGE ===== */
  .thank-hero {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    padding-top: 30px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease both;
  }

  .check-circle {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 12px 40px rgba(76,175,80,0.3);
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  }

  .check-circle svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .check-path {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: drawCheck 0.5s ease 0.4s forwards;
  }
  
  .thank-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .thank-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .thank-title em {
    color: var(--gold);
    font-style: italic;
  }

  .thank-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
  }
  
  .cta-back {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease 0.55s both;
    text-align: center;
  }

  .btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), #A8872E);
    color: var(--dark);
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .btn-back:hover {
    box-shadow: 0 8px 28px rgba(201,168,76,0.4);
    transform: translateY(-2px);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    text-decoration: none;
    margin-left: 24px;
    transition: color 0.2s ease;
    letter-spacing: 0.5px;
  }

  .btn-secondary:hover { color: var(--gold); }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes popIn {
    from { opacity: 0; transform: scale(0.4); }
    to   { opacity: 1; transform: scale(1); }
  }

  @keyframes drawCheck {
    to { stroke-dashoffset: 0; }
  }
  
    /*Cookie communicate*/
    /*KEYFRAMES*/
    @keyframes cookieContentAnimate {
      0% {
        opacity: 0;
        bottom: -300px;
      }
      100% {
        opacity: 1;
      }
    }
    .closeCookieBox {
      opacity: 0;
    }

    .cookieBox {
      display: none;
      position: fixed;
      bottom: 10px;
      left: 10px;
      right: 10px;
      margin: auto;
      opacity: 0;
      max-width: 100%;
      text-align: center;
      transition: 0.2s linear;
      z-index: 1000;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid #000;
      animation: cookieContentAnimate 0.5s 1 0.4s;
      animation-fill-mode: forwards;
    }

    .cookieBox.display {
      display: block;
    }

    .cookieBox.display.closeCookieBox {
      display: none;
    }

    .cookieBox .cookieBoxContent {
      background: rgba(0, 0, 0, 0.6862745098);
    }

    .cookieBox .cookieBoxContent {
      color: #fff;
      padding: 10px;
      font-size: 13px;
      line-height: 19px;
      position: relative;
      transition: 1s linear;
      opacity: 1;
      display: flex;
      flex-direction: row;
      gap: 15px;
      align-items: center;
    }

    .cookieBox .cookieBoxContent p {
      padding: 0px;
      margin: 0px;
      font-size: 13px;
      line-height: 19px;
      color: #fff;
    }

    .cookieBox .cookieBoxContent p:first-child {
      width: calc(100% - 210px);
    }

    .cookieBox .cookieBoxContent p:last-child {
      margin-left: auto;
    }

    .cookieBox .cookieBoxContent a.readMore {
      color: #fff;
      font-weight: bold;
    }

    .cookieBox .cookieBoxContent a.readMore:hover {
      text-decoration: underline;
    }

    .cookieBox .cookieBoxContent .closeCookies {
      color: #155724;
      background-color: #d4edda;
      padding: 10px 20px;
      border-radius: 5px;
      border: none;
    }

    .cookieBox .cookieBoxContent .discardCookie {
      color: #721c24;
      background-color: #f8d7da;
      padding: 10px 20px;
      border-radius: 5px;
      border: none;
    }

    .cookieActions button {
      display: block;
    }

    .cookieActions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .confirmation-overlay {
      position: fixed;
      top: 0px;
      bottom: 0px;
      left: 0px;
      right: 0px;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10000;
      background: rgba(61, 61, 61, 0.8);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s 0s, visibility 0s 0.3s;
    }

    .confirmation-overlay.is-visible {
      opacity: 1;
      visibility: visible;
      transition: opacity 0.3s 0s, visibility 0s 0s;
    }

    .confirmation-overlay .confirmation-modal {
      width: 500px;
      max-width: calc(100% - 30px);
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
      transform: translateY(-40px);
      /* Force Hardware Acceleration in WebKit */
      -webkit-backface-visibility: hidden;
      transition-property: transform;
      transition-duration: 0.3s;
    }

    .confirmation-overlay.is-visible .confirmation-modal {
      transform: translateY(0);
    }

    .confirmation-overlay .confirmation-header {
      margin: 10px;
      position: relative;
      background: #ececec;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 15px;
    }

    .confirmation-overlay h3 {
      font-weight: normal;
      font-size: 20px;
      margin: 0px;
    }

    .confirmation-overlay .close-confirmation-icon {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000;
      background: #fff;
    }

    .confirmation-overlay .confirmation-body {
      padding: 0px 20px 20px;
      font-weight: 300;
      text-align: center;
    }

    .confirmation-overlay .confirmation-body > *:last-child {
      margin-bottom: 0px;
    }

    .confirmation-overlay .confirmation-footer {
      display: flex;
    }

    .confirmation-overlay .confirmation-footer > button {
      width: 50%;
      border-radius: 0px;
      outline: none;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      margin: 5px;
      font-size: 18px;
      border: 1px solid transparent;
      padding: 10px;
    }

    .confirmation-overlay .confirmation-footer .discard-action {
      color: #721c24;
      background-color: #f8d7da;
      border-color: #f5c6cb;
    }

    .confirmation-overlay .confirmation-footer .accept-action {
      color: #155724;
      background-color: #d4edda;
      border-color: #c3e6cb;
    }

    @media screen and (max-width: 800px) {
      .cookieBox .cookieBoxContent {
        flex-direction: column;
        align-items: center;
      }
      .cookieBox .cookieBoxContent p:first-child {
        width: 100%;
      }
      .cookieBox .cookieBoxContent p:last-child {
        margin-left: 0px;
        margin-top: 20px;
      }
    }
    @media screen and (max-width: 400px) {
      .confirmation-footer {
        flex-direction: column;
      }
      .confirmation-footer button {
        width: 100% !important;
      }
    }
    
    /* ===== RULES PAGE ===== */
    .rules *{
        word-break: break-word;
    }

    .rules h1 {
        padding-bottom: 15px;
    }

    .rules p {
        padding: 15px 0px;
        text-align: justify;
        font-size: 18px;
        line-height: 26px;
    }

    .rules ul.rulesList {
        list-style-type: decimal;
        margin-left: 27px;
    }

    .rules ul.rulesList li {
        padding-bottom: 8px;
        text-align: justify;
    }

    .rules ul.rulesList li ul.secondList {
        padding: 13px 22px 0px;
        list-style-type: lower-alpha;
    }

    .rules h2 {
        font-size: 22px;
        padding-bottom: 0px;
        font-weight: 500;
    }

    /* ===== MOBILE ===== */
    @media (max-width: 1070px) {
        .hero-headline { font-size: clamp(37px, 4.5vw, 45px); }
        .hero-inner { grid-template-columns: calc(55% - 20px) calc(45% - 20px); }
    }
    
    @media (max-width: 1024px) {
        .story,
        .why-section,
        .ingredients,
        .effects,
        .order-section,
        .comments-section {
            padding: 80px 0px;
        }
        .main {
            padding-bottom: 80px;
        }
        .container-narrow {
            max-width: none;
        }
        .story-highlight {
            padding: 20px 28px;
        }
        .why-cta-block {
            padding: 30px;
        }
        .ing-card {
            padding: 36px 28px;
        }
        .effect-item {
            padding: 28px;
        }
        .effects-grid {
            gap: 20px;
        }
        .comment-form-wrap {
            padding: 28px;
        }
        .order-product-name {
            font-size: 26px;
        }
        .order-product-tagline {
            font-size: 18px;
        }
    }
    
    @media (max-width: 850px) {
        .nav-links { gap: 34px; }
        .ing-grid { grid-template-columns: 1fr; }
        .effects-grid { grid-template-columns: 1fr; }
    }
    
    @media (max-width: 768px) {
      .main {
        padding: 40px 0px 50px;
      }
      .story,
      .why-section,
      .ingredients,
      .effects,
      .order-section,
      .comments-section,
      .stats {
        padding: 50px 0px;
      }
      .main {
        padding-bottom: 50px;
      }
      .topbar-steps,
      .topbar-sep {
          display: none;
      }
      .topbar-inner {
          padding: 0 18px;
      }
      .nav-links a:nth-child(5),
      .nav-links a:nth-child(6) {
          display: none;
      }
      .hero-inner {
          grid-template-columns: 1fr;
          padding: 45px 18px;
      }
      .hero-headline { line-height: 1.25; }
      .hero-text,
      .hero-eyebrow { 
        text-align: center;
      }
      .hero-desc { margin-left: auto; margin-right: auto; }
      .hero-product { order: -1; padding: 0; }
      .hero-product img { max-width: 240px; }
      .hero-badge { bottom: -10px; right: 0; }
      .hero-eyebrow { display: block; }
      .hero-eyebrow::before { display: none; }
      .form-row { grid-template-columns: 1fr; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(1),
      .stat-item:nth-child(2) { 
          border-bottom: 1px solid rgba(0,0,0,0.1); 
      }
      .stat-item:nth-child(2n) { border-right: none; }
      .product-detail-inner { grid-template-columns: 1fr; }
      .order-wrapper { padding: 34px 28px; }
      .payment-options { grid-template-columns: 1fr; }
      .container, .container-narrow { padding: 0 18px; }
      .cf-fields { grid-template-columns: 1fr; }
      .cf-row { flex-direction: column; }
      .cf-avatar-preview { margin-top: 0; }
      .why-inner { grid-template-columns: 1fr; gap: 50px; }
      .why-cta-block { grid-template-columns: 1fr; text-align: center; }
      .why-cta-price { border-top: 1px solid var(--border); padding-top: 32px; }
      .thank-hero { padding-top: 0px; }
      .ingredients-subtitle { margin-bottom: 60px; }
      .effects-grid { margin-top: 50px; }
      .order-product-name { font-size: 23px; }
      .order-product-tagline { font-size: 16px; }
      .payment-option label .pay-name { font-size: 15px; }
    }
    
    @media (max-width: 600px) {
        .hero-inner { padding-top: 40px; padding-bottom: 40px; }
        .nav-links a:nth-child(4) { display: none; }
        .btn-secondary { display: block; margin: 16px 0 0; }
        .productInfoVariant-1 > .infoProd > .oldPrice { font-size: 20px; }
        .productInfoVariant-1 > .infoProd > .newPrice { font-size: 22px; }
        .order-text-2 { font-size: 22px; }
        .order-text-3 { font-size: 15px; }
        
        .story-highlight {
            padding: 18px 20px;
        }
        .ing-card {
            padding: 28px 20px;
        }
        .why-cta-block,
        .effect-item,
        .comment-form-wrap {
            padding: 20px;
        }
    }
    
    @media (max-width: 550px) {
        .nav-links { display: none; }
        body.home-page .topbar-inner { justify-content: center; }
    }
    
    @media (max-width: 500px) {
        .product-price { font-size: 38px; }
        .order-product-showcase img { width: 75%; }
        .hero-headline { font-size: 32px; }
    }
    
    @media (max-width: 350px) {
        .stat-num { font-size: 43px; font-weight: 700; }
        .effect-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .product-price { font-size: 32px; }
        .topbar-back { display: none; }
        .topbar-inner { justify-content: center; }
        .stat-item {
            padding: 16px;
        }
        .stat-label {
            letter-spacing: 1px;
        }
        .order-product-tagline {
            padding: 10px 17px;
        }
    }