
    * {
      box-sizing: border-box;
      font-family: Arial, Helvetica, sans-serif;
    }

    h1, h2, h3 {
      margin: 0 0 10px;
    }

    .title {
      text-align: center;
      margin-bottom: 30px;
    }

    .subtitle {
      font-size: 14px;
      color: #777;
    }

    /* Plans */
    .plans {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      margin-bottom: 50px;
    }

    .plan {
      background: #fff;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      transition: 0.2s;
    }

    .plan.selected {
      border-color: #00a3ff;
      box-shadow: 0 0 0 2px rgba(0,163,255,0.15);
    }

    .plan h3 {
      font-size: 18px;
    }

    .price {
      font-size: 24px;
      margin: 10px 0;
      font-weight: bold;
    }

    .features {
      text-align: left;
      font-size: 14px;
      margin: 15px 0;
    }

    .features li {
      margin-bottom: 8px;
    }

    .btn {
      width: 100%;
      padding: 10px;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      font-size: 14px;
    }

    .btn-primary {
      background: #00a3ff;
      color: #fff;
    }

    .btn-outline {
      background: #fff;
      border: 1px solid #ccc;
    }

    /* Form */
    .section {
      background: #fff;
      border-radius: 8px;
      padding: 30px;
      margin-bottom: 30px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 15px;
    }

    input, select {
      width: 100%;
      padding: 10px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 14px;
    }

    /* Payment */
    .summary {
      display: flex;
      justify-content: space-between;
      margin-top: 15px;
      font-size: 14px;
    }

    .summary strong {
      font-size: 16px;
    }

    .complete-btn {
      margin-top: 20px;
      width: 100%;
      padding: 12px;
      font-size: 16px;
      background: #00a3ff;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    .center {
      text-align: center;
    }
    .cart-body{
      width: 100% !important;
    }

  .box{
    background:#fff;
    border:1px solid #ddd;
    border-radius:4px;
    padding:20px;
  }

  h2{
    margin:0 0 10px;
  }

  .subtitle{
    font-size:13px;
    color:#666;
    margin-bottom:15px;
  }

  .section-title{
    font-size:14px;
    font-weight:bold;
    margin:20px 0 8px;
    border-bottom:1px solid #ddd;
    padding-bottom:5px;
  }

  input, select, textarea{
    width:100%;
    padding:8px;
    border:1px solid #ccc;
    border-radius:3px;
    font-size:13px;
  }

  .radio-group{
    margin:10px 0;
  }

  .radio-group label{
    display:block;
    font-size:13px;
    margin-bottom:6px;
  }

  .note{
    font-size:12px;
    color:#666;
    margin-top:5px;
  }

  .alert{
    background:#fff4cc;
    border:1px solid #ffe08a;
    padding:10px;
    font-size:13px;
    margin-top:15px;
    border-radius:3px;
  }

  .summary-header{
    background:#555;
    color:#fff;
    padding:10px;
    font-size:14px;
    font-weight:bold;
  }

  .summary-content{
    padding:15px;
    font-size:13px;
  }

  .summary-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:8px;
  }

  .summary-total{
    font-size:18px;
    font-weight:bold;
    text-align:right;
    margin-top:10px;
  }

  .continue-btn{
    background:#2c6fb2;
    color:#fff;
    border:none;
    width:100%;
    padding:12px;
    font-size:15px;
    border-radius:4px;
    cursor:pointer;
    margin-top:15px;
  }


/*jdgjhjhdjghsdskj*/
  .cart-container {
      max-width: 1100px;
      margin: auto;
      display: flex;
      gap: 20px;
  }

  /* Left Cart */
  .cart-left {
      flex: 2;
      background: #fff;
      padding: 20px;
      border-radius: 6px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }

  .cart-title {
      background: #005f8f;
      color: #fff;
      padding: 10px;
      font-weight: bold;
  }

  .cart-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      border-bottom: 1px solid #eee;
  }

  .cart-item h4 {
      margin: 0;
  }

  .cart-item span {
      color: gray;
      font-size: 14px;
  }

  .remove {
      color: red;
      cursor: pointer;
      font-size: 18px;
  }

  .cart-actions {
      margin-top: 15px;
  }

  .cart-actions button {
      background: #007bff;
      color: #fff;
      border: none;
      padding: 8px 15px;
      border-radius: 4px;
      cursor: pointer;
  }

  .cart-actions button:hover {
      background: #0056b3;
  }

  /* Promo Box */
  .promo-box {
      margin-top: 20px;
      padding: 15px;
      background: #f9f9f9;
      border-radius: 5px;
  }

  .promo-box input {
      width: 100%;
      padding: 8px;
      margin-bottom: 10px;
  }

  .promo-box button {
      width: 100%;
      background: #28a745;
      border: none;
      color: #fff;
      padding: 8px;
      border-radius: 4px;
  }

  /* Right Summary */
  .cart-right {
      flex: 1;
      background: #fff;
      padding: 20px;
      border-radius: 6px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }

  .summary-title {
      background: #666;
      color: #fff;
      padding: 10px;
      text-align: center;
      font-weight: bold;
  }

  .summary-item {
      display: flex;
      justify-content: space-between;
      margin: 15px 0;
  }

  .total {
      font-size: 22px;
      font-weight: bold;
      text-align: center;
      margin: 20px 0;
  }

  .checkout-btn {
      width: 100%;
      background: #28a745;
      border: none;
      color: #fff;
      padding: 12px;
      font-size: 16px;
      border-radius: 5px;
      cursor: pointer;
  }

  .checkout-btn:hover {
      background: #218838;
  }

  .continue {
      display: block;
      text-align: center;
      margin-top: 10px;
      color: #007bff;
      text-decoration: none;
  }

/* gfdhfghfghf */
  .checkout-container {
    margin: 40px auto;
    background: #fff;
    padding: 25px;
    border-radius: 4px;
  }

  .checkout-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
  }

  .checkout-header h2 {
    margin:0;
  }

  .login-btn {
    color:#fff;
    border:none;
    padding:6px 12px;
    border-radius:4px;
    cursor:pointer;
  }

  .section-title {
    margin:25px 0 10px;
    font-size:14px;
    font-weight:bold;
    border-bottom:1px solid #ddd;
    padding-bottom:5px;
  }

  .form-row {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:10px;
    margin-bottom:10px;
  }

  .form-row.full {
    grid-template-columns: 1fr;
  }

  input, select, textarea {
    width:100%;
    padding:8px;
    border:1px solid #ccc;
    border-radius:3px;
    font-size:13px;
  }

  textarea {
    resize:none;
    height:80px;
  }

  .password-note {
    font-size:12px;
    color:#666;
    margin-top:5px;
  }

  .payment-box {
    background:#dff5e4;
    padding:12px;
    margin:15px 0;
    font-weight:bold;
    color:#1d7a3a;
  }

  .payment-methods {
    margin:10px 0;
  }

  .payment-methods label {
    margin-right:15px;
    font-size:14px;
  }

  .complete-btn {
    background:#2c6fb2;
    color:#fff;
    border:none;
    padding:12px 20px;
    font-size:15px;
    border-radius:4px;
    cursor:pointer;
    display:block;
    margin:20px auto 0;
  }

  .mailing {
    margin-top:10px;
    font-size:13px;
  }
  #continueShopping {
    display: none;
  }
  #checkout {
    display: none;
  }
  .item-title a {
    display: none;
  }

