:root {
      /* Araç şemsiyesi görsellerine uygun sıcak premium palet */
      --primary-color: #2b2116;
      --primary-dark: #120f0b;
      --primary-light: #fff3d7;
      --secondary-color: #8a5a22;
      --accent-color: #d9a441;
      --accent-dark: #a96f1f;
      --accent-soft: #fff2cf;
      --success-color: #1f7a4d;

      --background-color: #fbf1df;
      --surface-soft: #fff8ec;
      --card-background: #ffffff;
      --card-alt: #fff4dc;

      --text-color: #211a13;
      --light-text-color: #756657;
      --border-color: #ead8b8;

      --border-radius: 20px;
      --shadow-sm: 0 6px 18px rgba(43, 33, 22, 0.08);
      --shadow-md: 0 14px 36px rgba(43, 33, 22, 0.13);
      --shadow-lg: 0 22px 58px rgba(43, 33, 22, 0.18);

      --font-family: 'Poppins', sans-serif;
      --transition: all 0.25s ease;
    }

    html { scroll-behavior: smooth; scroll-padding-top: 80px; }
    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: var(--font-family);
      background:
        radial-gradient(circle at top right, rgba(255, 210, 103, 0.36), transparent 28%),
        radial-gradient(circle at top left, rgba(43, 33, 22, 0.10), transparent 22%),
        linear-gradient(180deg, #fff9ef 0%, #f9ead1 48%, #fff8ed 100%);
      color: var(--text-color);
      line-height: 1.5;
      min-height: 100vh;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      background:
        linear-gradient(115deg, transparent 0 55%, rgba(217, 164, 65, 0.08) 55% 56%, transparent 56% 100%),
        radial-gradient(circle at 18% 8%, rgba(255,255,255,0.72), transparent 18%);
    }

    .container {
      max-width: 1320px;
      margin: 22px auto;
      padding: 0 16px;
    }

    .main-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
      gap: 26px;
      align-items: start;
    }

    .info-column {
      position: sticky;
      top: 20px;
    }

    .product-images {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .product-image-wrap {
      display: block;
      width: 100%;
      text-decoration: none;
      border-radius: 30px;
      overflow: hidden;
      background: #fffaf1;
      box-shadow: var(--shadow-md);
      border: 1px solid rgba(217, 164, 65, 0.34);
      transition: var(--transition);
      position: relative;
    }

    .product-image-wrap::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      border-radius: inherit;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.58);
    }

    .product-image-wrap:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(169, 111, 31, 0.48);
    }

    .info-column .product-image {
      width: 100%;
      display: block;
      border-radius: 30px;
      margin-bottom: 0;
      box-shadow: none;
      background: #fffaf1;
      cursor: pointer;
    }

    .form-column {
      background: rgba(255, 250, 241, 0.88);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(217, 164, 65, 0.32);
      border-radius: 30px;
      padding: 22px;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
    }

    .form-column::before {
      content: "";
      position: absolute;
      top: -90px;
      right: -90px;
      width: 190px;
      height: 190px;
      background: radial-gradient(circle, rgba(217,164,65,0.28), transparent 68%);
      pointer-events: none;
    }

    .form-column .form-step {
      background: linear-gradient(180deg, #ffffff 0%, #fff8ed 100%);
      border-radius: 24px;
      padding: 22px;
      margin-bottom: 20px;
      box-shadow: none;
      border: 1px solid var(--border-color);
      position: relative;
      z-index: 1;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--primary-color);
      letter-spacing: -0.5px;
      position: relative;
      z-index: 1;
    }

    .section-title i {
      color: var(--accent-color);
      font-size: 1.9rem;
      filter: drop-shadow(0 4px 8px rgba(217,164,65,0.22));
    }

    .section-subtitle {
      color: var(--light-text-color);
      margin-bottom: 18px;
      font-size: 1.02rem;
      border-left: 5px solid var(--accent-color);
      background: linear-gradient(90deg, rgba(217, 164, 65, 0.17), rgba(255, 248, 237, 0.84));
      padding: 12px 14px;
      border-radius: 0 16px 16px 0;
      position: relative;
      z-index: 1;
    }

    .form-progress-steps {
      display: flex;
      justify-content: space-between;
      margin-bottom: 18px;
      padding: 10px 14px;
      background: linear-gradient(90deg, #fff6e2, #ffffff);
      border-radius: 999px;
      font-size: 0.95rem;
      border: 1px solid var(--border-color);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
      position: relative;
      z-index: 1;
    }

    .progress-step {
      color: var(--light-text-color);
      font-weight: 600;
      padding: 5px 10px;
      border-radius: 999px;
    }

    .progress-step.active {
      color: #fff;
      background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
      font-weight: 800;
      box-shadow: 0 8px 16px rgba(43, 33, 22, 0.13);
    }

    .live-stats-bar {
      display: flex;
      justify-content: space-around;
      background: linear-gradient(135deg, #2b2116, #4a321e);
      border: 1px solid rgba(217,164,65,0.62);
      border-radius: 999px;
      padding: 14px 12px;
      margin-bottom: 18px;
      font-size: 1rem;
      color: #fff4dc;
      font-weight: 700;
      box-shadow: 0 12px 26px rgba(43,33,22,0.16);
      position: relative;
      z-index: 1;
    }

    .live-stats-bar i { color: var(--accent-color); }

    .stat-item .count {
      font-weight: 800;
      color: var(--primary-dark);
      margin-left: 4px;
      background: linear-gradient(180deg, #ffe8a8, #d9a441);
      padding: 3px 10px;
      border-radius: 999px;
    }

    .product-select-title {
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-color);
    }

    .product-select-title i { color: var(--accent-dark); }

    .product-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 15px;
    }

    .product-item {
      background: #fffdfa;
      border: 2px solid #ead8b8;
      border-radius: 24px;
      padding: 18px;
      display: flex;
      align-items: center;
      gap: 16px;
      cursor: pointer;
      transition: var(--transition);
    }

    .product-item:hover {
      border-color: var(--accent-color);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    .product-item.selected {
      border-color: var(--accent-color);
      background:
        linear-gradient(180deg, #fff8e8 0%, #ffffff 100%);
      box-shadow:
        inset 0 0 0 1px rgba(217,164,65,0.24),
        0 12px 26px rgba(217,164,65,0.12);
    }

    .product-tick {
      width: 42px;
      height: 42px;
      border: 2px solid #e7d6b9;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: #fff;
      transition: var(--transition);
    }

    .product-item.selected .product-tick {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
      border-color: var(--accent-color);
      box-shadow: 0 8px 18px rgba(43,33,22,0.18);
    }

    .product-item.selected .product-tick::after {
      content: "✓";
      color: var(--accent-color);
      font-size: 22px;
      font-weight: 800;
    }

    .product-info { flex: 1; }

    .product-info h4 {
      font-size: 1.05rem;
      font-weight: 800;
      margin-bottom: 4px;
      color: var(--text-color);
      line-height: 1.35;
    }

    .product-info p {
      font-size: 0.95rem;
      color: var(--light-text-color);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .product-info p i { color: var(--accent-dark); }

    .product-price {
      text-align: right;
      min-width: 120px;
    }

    .current-price {
      font-size: 1.14rem;
      font-weight: 800;
      color: var(--success-color);
    }

    .old-price {
      font-size: 0.8rem;
      color: #a89986;
      text-decoration: line-through;
    }

    .discount-badge {
      background: linear-gradient(135deg, #d9a441, #a96f1f);
      color: #211a13;
      font-size: 0.7rem;
      font-weight: 800;
      padding: 5px 10px;
      border-radius: 999px;
      display: inline-block;
      margin-top: 8px;
      box-shadow: 0 6px 14px rgba(217,164,65,0.22);
    }

    .shipping-note {
      background: #fff2cf;
      border-radius: 999px;
      padding: 4px 10px;
      font-size: 0.7rem;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      border: 1px dashed var(--accent-dark);
      color: var(--accent-dark);
      margin-top: 8px;
      font-weight: 700;
    }

    .input-group { margin-bottom: 15px; }

    .input-group label {
      display: flex;
      font-weight: 700;
      margin-bottom: 8px;
      font-size: 0.92rem;
      align-items: center;
      gap: 7px;
      color: var(--text-color);
    }

    .input-group label i { color: var(--accent-dark); }

    .inputic, .selectic {
      width: 100%;
      padding: 14px 15px;
      border: 1.5px solid #e5d2af;
      border-radius: 16px;
      font-size: 0.96rem;
      font-family: var(--font-family);
      transition: var(--transition);
      background-color: #fffefa;
      color: var(--text-color);
    }

    .inputic::placeholder { color: #aa9a85; }

    .inputic:focus, .selectic:focus {
      border-color: var(--accent-color);
      outline: none;
      box-shadow: 0 0 0 4px rgba(217,164,65,0.16);
      background: #ffffff;
    }

    textarea.inputic { min-height: 90px; resize: vertical; }

    .payment-tick-options {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 10px 0;
    }

    .payment-tick {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border: 1.5px solid #e5d2af;
      border-radius: 18px;
      cursor: pointer;
      transition: var(--transition);
      background: #fffefa;
    }

    .payment-tick:hover,
    .payment-tick.selected {
      border-color: var(--accent-color);
      background: #fff6e2;
      box-shadow: 0 8px 18px rgba(217,164,65,0.12);
    }

    .payment-tick i { color: var(--accent-dark); }

    .tick-box-small {
      width: 22px;
      height: 22px;
      border: 2px solid #dcc39c;
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      flex-shrink: 0;
      background: #fff;
    }

    .payment-tick.selected .tick-box-small {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
      border-color: var(--accent-color);
    }

    .payment-tick.selected .tick-box-small::after {
      content: "✓";
      color: var(--accent-color);
      font-size: 14px;
      font-weight: bold;
    }

    .order-summary {
      background:
        linear-gradient(135deg, #2b2116 0%, #49321f 100%);
      border-radius: 22px;
      padding: 20px;
      border: 1px solid rgba(217,164,65,0.58);
      margin: 18px 0;
      color: #fff6e2;
      box-shadow: 0 14px 28px rgba(43,33,22,0.16);
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 10px;
      font-size: 0.96rem;
    }

    .summary-row span:last-child { text-align: right; }

    .summary-total {
      border-top: 2px dashed rgba(217,164,65,0.42);
      padding-top: 12px;
      margin-top: 10px;
      font-weight: 800;
    }

    .summary-total .total-price {
      font-size: 1.75rem;
      font-weight: 800;
      color: #ffe39a;
      text-shadow: 0 2px 10px rgba(0,0,0,0.18);
    }

    .submit-btn {
      width: 100%;
      padding: 17px;
      background: linear-gradient(90deg, #d9a441, #f2c86b, #b97823);
      color: #211a13;
      border: none;
      border-radius: 999px;
      font-size: 1.08rem;
      font-weight: 800;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 14px 30px rgba(169,111,31,0.28);
      transition: var(--transition);
      text-transform: uppercase;
      letter-spacing: 0.6px;
      position: relative;
      overflow: hidden;
    }

    .submit-btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -80%;
      width: 55%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
      transform: skewX(-18deg);
      transition: left 0.6s ease;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(169,111,31,0.34);
    }

    .submit-btn:hover::before { left: 130%; }

    .submit-btn i { color: #211a13; }

    .terms-container {
      margin-top: 15px;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--light-text-color);
    }

    .terms-container a {
      color: var(--accent-dark);
      text-decoration: none;
      font-weight: 800;
    }

    .terms-container a:hover { text-decoration: underline; }

    .sticky-submit-container {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 248, 237, 0.96);
      backdrop-filter: blur(10px);
      padding: 12px 15px;
      box-shadow: 0 -10px 28px rgba(43,33,22,0.12);
      z-index: 1000;
      transform: translateY(120%);
      transition: transform 0.3s;
      border-top: 1px solid rgba(217,164,65,0.38);
    }

    .sticky-submit-container.visible { transform: translateY(0); }

    .popup-modal {
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(18, 15, 11, 0.68);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
      padding: 16px;
    }

    .popup-modal.visible {
      opacity: 1;
      visibility: visible;
    }

    .popup-content {
      background: #fffaf1;
      border-radius: 26px;
      width: 90%;
      max-width: 520px;
      max-height: 80vh;
      overflow-y: auto;
      padding: 25px;
      position: relative;
      border-top: 5px solid var(--accent-color);
      box-shadow: var(--shadow-lg);
      color: var(--text-color);
    }

    .close-popup {
      position: absolute;
      top: 12px;
      right: 18px;
      font-size: 24px;
      cursor: pointer;
      color: var(--light-text-color);
    }

   
    .product-info-section { margin-top: 34px; }

    .pi-container,
    .reviews-section {
      background: rgba(255, 250, 241, 0.94);
      border-radius: 28px;
      padding: 28px 24px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }

    .pi-header h2 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: var(--primary-color);
      font-weight: 800;
      letter-spacing: -0.3px;
    }

    .pi-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 15px 0;
    }

    .pi-badge {
      background: #fff2cf;
      border: 1px solid rgba(217,164,65,0.38);
      border-radius: 999px;
      padding: 7px 14px;
      font-size: 0.85rem;
      color: var(--primary-color);
      font-weight: 700;
    }

    .pi-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      margin-top: 20px;
    }

    .pi-card {
      background: linear-gradient(180deg, #ffffff 0%, #fff7e7 100%);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 18px;
      box-shadow: 0 8px 20px rgba(43,33,22,0.05);
    }

    .pi-card h3 {
      font-size: 1.1rem;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--primary-color);
      font-weight: 800;
    }

    .pi-card h3 i { color: var(--accent-dark) !important; }

    .pi-li {
      display: flex;
      gap: 10px;
      margin-bottom: 8px;
      font-size: 0.95rem;
    }

    .pi-emoji {
      width: 26px;
      height: 26px;
      min-width: 26px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #fff2cf;
      border-radius: 50%;
      font-size: 0.9rem;
    }

    .pi-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 20px;
    }

    .pi-card li { margin-bottom: 7px; }

    .pi-card strong { color: var(--accent-dark) !important; }

    .reviews-section {
      margin-top: 40px;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at top left, rgba(217,164,65,0.20), transparent 34%),
        radial-gradient(circle at bottom right, rgba(43,33,22,0.08), transparent 30%),
        linear-gradient(180deg, rgba(255,250,241,0.97) 0%, rgba(255,246,226,0.94) 100%);
    }

    .reviews-section::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 6px;
      background: linear-gradient(90deg, #2b2116, #d9a441, #f2c86b, #2b2116);
    }

    .reviews-header {
      text-align: center;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }

    .reviews-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #2b2116;
      color: #ffe6a1;
      border: 1px solid rgba(217,164,65,0.55);
      border-radius: 999px;
      padding: 7px 14px;
      font-size: 0.82rem;
      font-weight: 800;
      margin-bottom: 12px;
      box-shadow: 0 8px 20px rgba(43,33,22,0.12);
    }

    .reviews-header h2 {
      font-size: 1.95rem;
      color: var(--primary-color);
      font-weight: 900;
      letter-spacing: -0.5px;
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .reviews-header h2 span {
      color: var(--accent-dark);
      white-space: nowrap;
    }

    .reviews-header p {
      max-width: 720px;
      margin: 0 auto;
      color: var(--light-text-color);
      font-size: 0.96rem;
    }

    .reviews-summary-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 720px;
      margin: 18px auto 0;
    }

    .review-mini-stat {
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(217,164,65,0.34);
      border-radius: 18px;
      padding: 12px 10px;
      box-shadow: 0 8px 20px rgba(43,33,22,0.05);
    }

    .review-mini-stat strong {
      display: block;
      color: var(--primary-color);
      font-size: 1.15rem;
      font-weight: 900;
    }

    .review-mini-stat span {
      display: block;
      color: var(--light-text-color);
      font-size: 0.78rem;
      font-weight: 700;
      margin-top: 2px;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 13px;
      max-width: 920px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .review-card {
      background:
        linear-gradient(180deg, #ffffff 0%, #fff8eb 100%);
      border-radius: 22px;
      padding: 18px 20px;
      border: 1px solid rgba(217,164,65,0.35);
      box-shadow: 0 10px 24px rgba(43,33,22,0.07);
      min-height: auto;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
    }

    .review-card::after {
      content: "\201C";
      position: absolute;
      right: 14px;
      top: -18px;
      font-size: 5.5rem;
      line-height: 1;
      color: rgba(217,164,65,0.13);
      font-family: Georgia, serif;
      pointer-events: none;
    }

    .review-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 34px rgba(43,33,22,0.11);
      border-color: rgba(185,120,35,0.55);
    }

    .review-card-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .reviewer {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .reviewer-avatar {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, #2b2116, #5a3a22);
      border: 2px solid var(--accent-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffe6a1;
      font-weight: 900;
      font-size: 0.9rem;
      flex-shrink: 0;
      box-shadow: 0 8px 16px rgba(43,33,22,0.14);
    }

    .reviewer h4 {
      font-size: 0.98rem;
      color: var(--primary-color);
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 3px;
    }

    .verified {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: var(--success-color);
      font-size: 0.72rem;
      font-weight: 800;
      white-space: nowrap;
    }

    .verified i { color: var(--success-color); }

    .stars {
      color: var(--accent-color);
      font-size: 0.82rem;
      letter-spacing: 0.8px;
      white-space: nowrap;
      text-shadow: 0 1px 0 rgba(255,255,255,0.7);
    }

    .review-text {
      position: relative;
      z-index: 1;
      color: #3d3328;
      font-size: 0.92rem;
      line-height: 1.55;
      margin: 0 0 14px;
    }

    .review-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      position: relative;
      z-index: 1;
    }

    .review-tags span {
      background: #fff2cf;
      border: 1px solid rgba(217,164,65,0.38);
      color: var(--accent-dark);
      border-radius: 999px;
      padding: 5px 9px;
      font-size: 0.72rem;
      font-weight: 800;
    }

    .footer {
      margin-top: 34px;
      text-align: center;
      color: var(--light-text-color);
      padding: 18px 0 6px;
      border-top: 1px solid rgba(217,164,65,0.28);
    }

    .footer-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 8px;
    }

    .footer-links a {
      color: var(--accent-dark);
      text-decoration: none;
      font-size: 0.9rem;
      cursor: pointer;
      font-weight: 700;
    }

    .footer-links a:hover { text-decoration: underline; }



    /* Responsive/performance hardening: overflow-safe layout */
    *, *::before, *::after { box-sizing: border-box; }
    html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
    img, video, svg { max-width: 100%; height: auto; }
    button, input, select, textarea { max-width: 100%; }

    .main-layout { grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); }
    .product-info { min-width: 0; }
    .product-info h4, .product-info p, .pi-card, .review-card { overflow-wrap: anywhere; }
    .product-info p, .pi-badges, .live-stats-bar, .form-progress-steps { flex-wrap: wrap; }
    .product-price { flex: 0 0 auto; max-width: 42%; }
    .product-image { aspect-ratio: auto; }

    @media (max-width: 640px) {
      .form-progress-steps { justify-content: flex-start; gap: 6px; border-radius: 18px; }
      .live-stats-bar { justify-content: center; gap: 8px 12px; border-radius: 22px; }
      .stat-item { white-space: nowrap; }
      .product-item { display: grid; grid-template-columns: 34px minmax(0,1fr); align-items: start; }
      .product-tick { grid-column: 1; }
      .product-info { grid-column: 2; }
      .product-price { grid-column: 2; min-width: 0 !important; max-width: 100%; text-align: left; display: flex; flex-wrap: wrap; align-items: center; gap: 6px 8px; }
      .discount-badge, .shipping-note { margin-top: 0; }
      .payment-tick { align-items: flex-start; }
      .pi-badges { justify-content: center; }
      .review-card-top { flex-direction: column; align-items: flex-start; }
      .stars, .verified { white-space: normal; }
    }

    @media (max-width: 380px) {
      .section-title { font-size: 1.42rem; gap: 7px; }
      .section-title i { font-size: 1.35rem; }
      .form-column .form-step { padding: 14px 12px; }
      .product-item { padding: 12px; }
      .current-price { font-size: .96rem; }
      .progress-step { font-size: .78rem; padding: 5px 6px; }
    }

    /* MOBİL DÜZENLEMELER - ÜSTTE RESİMLER, ALTTA FORM */
    @media (max-width: 992px) {
      body {
        background: linear-gradient(180deg, #fff9ef 0%, #f8ead2 46%, #fff8ed 100%);
      }

      .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
      }

      .main-layout {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .info-column {
        order: 1;
        width: 100%;
        position: static;
      }

      .form-column {
        order: 2;
        width: calc(100% - 20px);
        margin: 0 10px 10px;
        padding: 14px 12px 10px;
        background: rgba(255, 250, 241, 0.94);
        backdrop-filter: none;
        border: 1px solid rgba(217,164,65,0.30);
        box-shadow: var(--shadow-sm);
        border-radius: 24px;
      }

      .product-images {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
      }

      .product-images .product-image-wrap {
        display: block;
        width: 100%;
        flex: 0 0 100%;
        border-radius: 0;
        box-shadow: none;
        border: none;
        background: #fff9ef;
      }

      .product-image-wrap::after { display: none; }

      .info-column .product-image {
        display: block;
        width: 100%;
        height: auto;
        margin-bottom: 0;
        border-radius: 0;
        box-shadow: none;
        object-fit: contain;
        background: #fff9ef;
      }

      .section-title,
      .section-subtitle,
      .form-progress-steps,
      .live-stats-bar,
      .form-column .form-step {
        margin-left: 0;
        margin-right: 0;
      }

      .pi-container,
      .reviews-section {
        margin-left: 10px;
        margin-right: 10px;
      }

      .reviews-grid {
        grid-template-columns: 1fr;
      }

      .reviews-summary-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

     
    }

    @media (max-width: 480px) {
      .container { padding: 0; }

      .section-title {
        font-size: 1.62rem;
      }

      .section-subtitle {
        font-size: 0.94rem;
      }

      .form-column {
        padding: 12px 10px 10px;
      }

      .form-column .form-step {
        padding: 16px;
        border-radius: 20px;
      }

      .product-item {
        padding: 14px;
        gap: 12px;
        border-radius: 20px;
        align-items: flex-start;
      }

      .product-tick {
        width: 34px;
        height: 34px;
        border-radius: 12px;
        margin-top: 4px;
      }

      .product-item.selected .product-tick::after { font-size: 18px; }

      .product-info h4 { font-size: 0.98rem; }
      .product-info p { font-size: 0.84rem; }

      .product-price { min-width: 86px; }

      .current-price { font-size: 1rem; }
      .old-price { font-size: 0.75rem; }
      .discount-badge { font-size: 0.66rem; padding: 4px 8px; }
      .shipping-note { font-size: 0.64rem; }

      .submit-btn {
        font-size: 1rem;
        padding: 15px;
      }

      .pi-grid,
      .pi-columns,
      .reviews-grid,
      .reviews-summary-row {
        grid-template-columns: 1fr;
      }

      .reviews-section {
        margin-top: 24px;
        border-radius: 22px;
        padding: 22px 14px;
      }

      .reviews-header h2 {
        font-size: 1.55rem;
      }

      .review-card {
        min-height: auto;
      }

      .live-stats-bar,
      .form-progress-steps {
        font-size: 0.84rem;
      }

      .form-progress-steps { padding: 8px 6px; }
      .progress-step { padding: 5px 7px; }

      .summary-row {
        font-size: 0.9rem;
      }

      .summary-total .total-price {
        font-size: 1.48rem;
      }
    }


    /* ROBOT FIRÇA PREMIUM REVİZYON - temizlik ürünüyle uyumlu mint / grafit / şampanya paleti */
    :root {
      --primary-color: #123c3a;
      --primary-dark: #071f1e;
      --primary-light: #e8fff9;
      --secondary-color: #24796f;
      --accent-color: #c7a05a;
      --accent-dark: #8a6830;
      --accent-soft: #fff7df;
      --success-color: #0d9274;

      --background-color: #eefaf6;
      --surface-soft: #f7fffb;
      --card-background: #ffffff;
      --card-alt: #edf9f4;

      --text-color: #162825;
      --light-text-color: #647873;
      --border-color: #d9eee6;

      --shadow-sm: 0 6px 18px rgba(18, 60, 58, 0.08);
      --shadow-md: 0 14px 36px rgba(18, 60, 58, 0.13);
      --shadow-lg: 0 22px 58px rgba(18, 60, 58, 0.18);
    }

    body {
      background:
        radial-gradient(circle at top right, rgba(199, 160, 90, 0.26), transparent 30%),
        radial-gradient(circle at top left, rgba(36, 121, 111, 0.14), transparent 24%),
        radial-gradient(circle at 18% 40%, rgba(101, 220, 191, 0.10), transparent 26%),
        linear-gradient(180deg, #fbfffc 0%, #eaf8f2 48%, #f8fffb 100%);
      color: var(--text-color);
    }

    body::before {
      background:
        radial-gradient(circle at 12% 18%, rgba(255,255,255,0.88), transparent 18%),
        radial-gradient(circle at 82% 16%, rgba(199,160,90,0.13), transparent 22%),
        linear-gradient(120deg, transparent 0 54%, rgba(36,121,111,0.08) 54% 55%, transparent 55% 100%);
    }

    .product-image-wrap {
      position: relative;
      isolation: isolate;
      background: linear-gradient(180deg, #ffffff 0%, #f4fffb 100%);
      border: 1px solid rgba(36, 121, 111, 0.18);
      box-shadow: var(--shadow-md);
    }

    .product-image-wrap::before {
      content: "OLINMAN";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%) rotate(-24deg);
      z-index: 3;
      pointer-events: none;
      color: rgba(18, 60, 58, 0.115);
      -webkit-text-stroke: 1px rgba(255,255,255,0.20);
      font-size: clamp(3rem, 8vw, 8.8rem);
      font-weight: 900;
      letter-spacing: 0.20em;
      white-space: nowrap;
      text-shadow: 0 2px 20px rgba(255,255,255,0.22);
      mix-blend-mode: multiply;
    }

    .product-image-wrap::after {
      z-index: 4;
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.66),
        inset 0 -80px 90px rgba(18,60,58,0.035);
    }

    .info-column .product-image {
      position: relative;
      z-index: 1;
      background: #ffffff;
    }

    .product-image-wrap:hover {
      border-color: rgba(199, 160, 90, 0.48);
    }

    .form-column,
    .pi-container,
    .reviews-section {
      background: rgba(250, 255, 252, 0.94);
      border-color: rgba(36,121,111,0.18);
    }

    .form-column::before {
      background:
        radial-gradient(circle, rgba(36,121,111,0.20), transparent 66%),
        radial-gradient(circle at 35% 35%, rgba(199,160,90,0.16), transparent 58%);
    }

    .form-column .form-step,
    .pi-card,
    .review-card {
      background: linear-gradient(180deg, #ffffff 0%, #f4fffb 100%);
      border-color: rgba(36,121,111,0.16);
    }

    .section-title i,
    .product-select-title i,
    .input-group label i,
    .payment-tick i,
    .product-info p i {
      color: var(--secondary-color);
    }

    .section-subtitle {
      border-left-color: var(--secondary-color);
      background: linear-gradient(90deg, rgba(36,121,111,0.12), rgba(255,255,255,0.86));
    }

    .form-progress-steps {
      background: linear-gradient(90deg, #f0fbf7, #ffffff);
      border-color: rgba(36,121,111,0.16);
    }

    .progress-step.active,
    .live-stats-bar,
    .order-summary,
    .reviews-eyebrow {
      background: linear-gradient(135deg, #071f1e, #123c3a, #1f6f66);
      color: #f7fffb;
      border-color: rgba(199,160,90,0.50);
    }

    .live-stats-bar i,
    .reviewer-avatar,
    .stars {
      color: var(--accent-color);
    }

    .stat-item .count,
    .discount-badge,
    .submit-btn {
      background: linear-gradient(90deg, #c7a05a, #f1d98f, #9a7433);
      color: #102c2b;
    }

    .product-item {
      background: #ffffff;
      border-color: #d8eee7;
    }

    .product-item:hover,
    .product-item.selected,
    .payment-tick:hover,
    .payment-tick.selected {
      border-color: rgba(36,121,111,0.42);
      background: linear-gradient(180deg, #f1fff9 0%, #ffffff 100%);
      box-shadow: 0 12px 26px rgba(18,60,58,0.09);
    }

    .product-item.selected .product-tick,
    .payment-tick.selected .tick-box-small,
    .reviewer-avatar {
      background: linear-gradient(135deg, #071f1e, #123c3a);
      border-color: var(--accent-color);
    }

    .product-item.selected .product-tick::after,
    .payment-tick.selected .tick-box-small::after {
      color: var(--accent-color);
    }

    .shipping-note,
    .pi-badge,
    .pi-emoji,
    .review-tags span {
      background: #fff7df;
      border-color: rgba(199,160,90,0.38);
      color: var(--accent-dark);
    }

    .inputic,
    .selectic,
    .payment-tick {
      background: #ffffff;
      border-color: #d8eee7;
    }

    .inputic:focus,
    .selectic:focus {
      border-color: var(--secondary-color);
      box-shadow: 0 0 0 4px rgba(36,121,111,0.12);
    }

    .summary-total .total-price {
      color: #f3dc96;
    }

    .submit-btn {
      box-shadow: 0 14px 30px rgba(138,104,48,0.25);
    }

    .submit-btn:hover {
      box-shadow: 0 18px 38px rgba(138,104,48,0.32);
    }

   
    .reviews-section {
      background:
        radial-gradient(circle at top left, rgba(36,121,111,0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(199,160,90,0.14), transparent 30%),
        linear-gradient(180deg, rgba(250,255,252,0.98) 0%, rgba(239,250,245,0.96) 100%);
    }

    .reviews-section::before {
      background: linear-gradient(90deg, #123c3a, #c7a05a, #5ad0b2, #123c3a);
    }

    .reviews-header h2,
    .pi-header h2,
    .pi-card h3,
    .reviewer h4,
    .review-mini-stat strong {
      color: var(--primary-color);
    }

    .reviews-header h2 span,
    .pi-card strong,
    .footer-links a,
    .terms-container a {
      color: var(--accent-dark) !important;
    }

    .review-card::after {
      color: rgba(36,121,111,0.10);
    }

    .review-card:hover {
      border-color: rgba(36,121,111,0.34);
      box-shadow: 0 16px 34px rgba(18,60,58,0.10);
    }

    .verified,
    .verified i,
    .current-price {
      color: var(--success-color);
    }

    .review-text {
      color: #2d403c;
    }

    .footer {
      border-top-color: rgba(36,121,111,0.18);
    }

    @media (max-width: 992px) {
      body {
        background: linear-gradient(180deg, #fbfffc 0%, #eaf8f2 48%, #f8fffb 100%);
      }

      .form-column {
        background: rgba(250,255,252,0.96);
        border-color: rgba(36,121,111,0.16);
      }

      .product-images .product-image-wrap,
      .info-column .product-image {
        background: #ffffff;
      }

      .product-image-wrap::before {
        font-size: clamp(3.4rem, 15vw, 7rem);
        opacity: 0.95;
      }
    }

    @media (max-width: 480px) {
      .product-image-wrap::before {
        font-size: clamp(2.65rem, 16vw, 5.8rem);
        letter-spacing: 0.16em;
      }
    }


/* JSON ile yüklenen içerik yardımcı sınıfları */
.pi-muted { color: var(--light-text-color); }
.pi-list { padding-left: 20px; }
.pi-faq-item { margin-bottom: 12px; }
.pi-faq-question { color: var(--primary-color); }
.pi-faq-answer { font-size: 0.9rem; }
.reviews-loading,
.reviews-empty {
  grid-column: 1 / -1;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed var(--border-color);
  color: var(--light-text-color);
  text-align: center;
}
.popup-title { color: var(--primary-color); margin-bottom: 15px; }
.popup-body { line-height: 1.6; }

/* Inline stilleri sadeleştirme */
.is-hidden { display: none !important; }
.package-note {
  font-size: 0.85rem;
  background: #fff7df;
  padding: 10px 12px;
  border-radius: 12px;
  border-left: 4px solid #f5b942;
  color: #7a5b13;
}
.package-note i { color: #c58a14; }
.phone-error {
  color: var(--accent-color);
  font-size: 0.8rem;
  margin-top: 3px;
  display: none;
}
.summary-product-name { font-weight: 600; }
