    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background-color: #f5f5f5;
      padding: 20px;
    }

    .container {
      max-width: 900px;
      margin: 0 auto;
      background: white;
      padding: 40px;
      border-radius: 8px;
    }

    h1 {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #000;
    }

    .hindi-text {
      font-size: 14px;
      color: #666;
      margin-bottom: 20px;
      font-family: Arial, sans-serif;
      line-height: 1.5;
    }

    .badge {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      color: #0052cc;
      margin-bottom: 15px;
      letter-spacing: 0.5px;
    }

    .cash-badge {
      color: #e74c3c;
      font-weight: 700;
    }

    .divider {
      height: 1px;
      background: #ddd;
      margin: 20px 0;
    }

    .timer-section {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      font-size: 14px;
      color: #333;
    }

    .timer-section .icon {
      font-size: 16px;
    }

    .timer-text {
      font-weight: 500;
      color: #000;
    }

    .timer-boxes {
      display: flex;
      gap: 20px;
      margin-bottom: 20px;
    }

    .timer-box {
      background: #000;
      color: #ff0000;
      padding: 20px 40px;
      border-radius: 4px;
      text-align: center;
      flex: 1;
    }

    .timer-box .number {
      font-size: 48px;
      font-weight: bold;
      line-height: 1;
    }

    .timer-box .label {
      font-size: 14px;
      margin-top: 8px;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .offer-section {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 20px;
      padding: 12px;
      background: #f9f9f9;
      border-radius: 4px;
    }

    .offer-section .checkmark {
      color: #27ae60;
      font-weight: bold;
      font-size: 18px;
      margin-top: 2px;
    }

    .offer-text {
      font-size: 13px;
      line-height: 1.6;
    }

    .offer-text strong {
      color: #e74c3c;
    }

    .content-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 30px;
    }

    .left-section h2 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 20px;
      color: #000;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-group label {
      display: block;
      font-size: 13px;
      margin-bottom: 6px;
      color: #333;
      font-weight: 500;
    }

    .form-group input,
    .form-group select {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 14px;
      font-family: inherit;
    }

    .form-group input:focus,
    .form-group select:focus {
      outline: none;
      border-color: #5865f2;
      box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.1);
    }

    .form-group.phone-input {
      display: grid;
      grid-template-columns: 60px 1fr;
      gap: 8px;
      align-items: center;
    }

    .form-group.phone-input input {
      grid-column: 1 / -1;
    }

    .payment-section {
      margin-top: 20px;
    }

    .payment-option {
      padding: 15px;
      border: 1px solid #e0e0e0;
      border-radius: 4px;
      background: #f9f9f9;
      cursor: pointer;
    }

    .payment-option input[type="radio"] {
      margin-right: 10px;
    }

    .payment-option label {
      cursor: pointer;
      font-size: 14px;
      margin: 0;
    }

    .payment-desc {
      font-size: 13px;
      color: #666;
      margin-top: 8px;
      margin-left: 24px;
    }

    .terms-text {
      font-size: 12px;
      color: #666;
      margin-top: 15px;
      line-height: 1.5;
    }

    .place-order-btn {
      width: 100%;
      padding: 16px;
      background: #5865f2;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background 0.2s;
    }

    .place-order-btn:hover {
      background: #4752c4;
    }

    .lock-icon {
      font-size: 16px;
    }

    .right-section h2 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 20px;
      color: #000;
    }

    .order-summary {
      border: 1px solid #e0e0e0;
      border-radius: 4px;
      padding: 20px;
    }

    .order-item {
      display: grid;
      grid-template-columns: 60px 1fr auto;
      gap: 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid #f0f0f0;
      margin-bottom: 15px;
    }

    .order-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .item-image {
      width: 60px;
      height: 60px;
      background: #e8f4f8;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
    }
    .item-image img{
      width: 100%;
      object-fit: contain;
    }

    .item-details {
      font-size: 13px;
      line-height: 1.5;
    }

    .item-details .name {
      font-weight: 600;
      color: #000;
      margin-bottom: 4px;
    }

    .item-details .desc {
      color: #999;
      font-size: 12px;
    }

    .item-price {
      text-align: right;
      font-weight: 600;
      color: #000;
    }

    .item-qty {
      font-size: 12px;
      color: #999;
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      font-size: 14px;
      border-bottom: 1px solid #f0f0f0;
    }

    .summary-row.total {
      border-bottom: none;
      font-weight: 600;
      font-size: 16px;
      color: #000;
      margin-top: 10px;
    }

    .coupon-section {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      margin-top: 15px;
    }

    .coupon-section input {
      padding: 10px 12px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 13px;
    }

    .apply-btn {
      padding: 10px 20px;
      background: #5865f2;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
    }

    .apply-btn:hover {
      background: #4752c4;
    }

    .footer {
      border-top: 1px solid #ddd;
      margin-top: 40px;
      padding-top: 20px;
      display: flex;
      justify-content: center;
      gap: 30px;
      font-size: 13px;
    }

    .footer a {
      color: #666;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer a:hover {
      color: #000;
    }

    @media (max-width: 768px) {
      .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .timer-boxes {
        gap: 10px;
      }

      .timer-box {
        padding: 15px 20px;
      }

      .timer-box .number {
        font-size: 36px;
      }
    }