
/*
 Theme Name:   Astra Child
 Template:     astra
 Version:      1.0.0
*/


/*=============================================================================
  SCOPED TO CHECKOUT: only applies when .custom-checkout class is present
=============================================================================*/
.custom-checkout .checkout-container {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #F3F5F6;
}

.custom-checkout .checkout-columns {
  display: flex;
  gap: 40px;
  align-items: stretch;
 min-height: 100vh;
  flex-wrap: nowrap;
}

/* Shared column resets */
.custom-checkout .checkout-column--left,
.custom-checkout .checkout-column--right {
  flex: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
 
}

/* LEFT COLUMN styling */
.custom-checkout .checkout-column--left {
  background: #F3F5F6;

    padding-left: 400px;
}

/* RIGHT COLUMN styling */
.custom-checkout .checkout-column--right {
  background: #ECECEC;

  position: relative;
  padding-right: 400px;
  padding-left:50px;
   padding-top:50px;
}

/* Sticky order summary */
.custom-checkout .checkout-sticky-inner {
  position: sticky;
  top: 40px;
  
}

/* Ensure the sticky container fills its parent width */
.custom-checkout .checkout-column--right .checkout-sticky-inner {
  width: 100%;
  background: #ECECEC;
}

/*──────────────────────────────────────────────────────────────────────────────
  FORM BLOCKS & HEADINGS
──────────────────────────────────────────────────────────────────────────────*/
.custom-checkout .checkout-block {
  margin-bottom: 30px;
}
.custom-checkout .checkout-block h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #222222;
  margin-bottom: 16px;
}

/*──────────────────────────────────────────────────────────────────────────────
  FORM FIELDS
──────────────────────────────────────────────────────────────────────────────*/
.custom-checkout .form-row {
  margin-bottom: 16px;
}
.custom-checkout input.input-text,
.custom-checkout select,
.custom-checkout textarea {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.3;
  box-sizing: border-box;
}
.custom-checkout .form-row label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
.custom-checkout .woocommerce-form__label-for-checkbox {
  margin-top: 12px;
}

/*──────────────────────────────────────────────────────────────────────────────
  PAYMENT METHODS
──────────────────────────────────────────────────────────────────────────────*/
.custom-checkout .payment_methods li {
  list-style: none;
  margin-bottom: 12px;
}
.custom-checkout .payment_methods label {
  font-weight: 500;
}
.custom-checkout .payment_box {
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  padding: 16px;
  margin-top: 8px;
}

/*──────────────────────────────────────────────────────────────────────────────
  PLACE ORDER BUTTON
──────────────────────────────────────────────────────────────────────────────*/
.custom-checkout button[name="woocommerce_checkout_place_order"] {
  display: block;
  width: 100%;
  height: 52px;
  margin-top: 24px;
  background-color: #8dc63f;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.custom-checkout button[name="woocommerce_checkout_place_order"]:hover {
  opacity: 0.95;
}

/*──────────────────────────────────────────────────────────────────────────────
  ORDER ITEMS GRID (IMAGE / NAME / SUBTOTAL)
──────────────────────────────────────────────────────────────────────────────*/
.custom-checkout .custom-order-review-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}
.custom-checkout .custom-order-item {
  flex: 1 1 calc(33.333% - 10px);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border: none;
  box-sizing: border-box;
}
.custom-checkout .order-product-image img {
  width: 80px;
  height: auto;
  border-radius: 12px;
}
.custom-checkout .order-product-name {
  flex: 1;
  font-weight: 500;
  color: #222222;
  white-space: normal;
}
.custom-checkout .order-product-subtotal {
  font-weight: 500;
  color: #222222;
  white-space: nowrap;
}

/*──────────────────────────────────────────────────────────────────────────────
  TOTALS TABLE (SUBTOTAL / SHIPPING / COUPONS / TOTAL)
──────────────────────────────────────────────────────────────────────────────*/
.custom-checkout .custom-order-totals table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #222222;
  border: none;
}
.custom-checkout .custom-order-totals th {
  text-align: left;
  padding: 8px 10px;
  border-bottom: none;
  font-weight: 500;
  border: none;
}
.custom-checkout .custom-order-totals td {
  text-align: right;
  padding: 8px 10px;
  border-bottom: none;
  font-weight: 500;
  border: none;
}
.custom-checkout .custom-order-totals tr:last-child th,
.custom-checkout .custom-order-totals tr:last-child td {
  font-size: 16px;
  font-weight: 600;
}

/*──────────────────────────────────────────────────────────────────────────────
  THUMBNAILS & QTY BUBBLE
──────────────────────────────────────────────────────────────────────────────*/
.custom-checkout .astra-cart-thumb {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  width: 60px;
  height: 60px;
}
.custom-checkout .astra-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.custom-checkout .astra-cart-qty {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: #000;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}

/*──────────────────────────────────────────────────────────────────────────────
  RESPONSIVE BREAKPOINTS
──────────────────────────────────────────────────────────────────────────────*/
@media (max-width: 800px) {
  .custom-checkout .checkout-columns {
    flex-direction: column;
  }
  .custom-checkout .checkout-column--left,
  .custom-checkout .checkout-column--right {
    padding: 24px;
    width: 100%;
  }
  .custom-checkout .custom-order-item {
    flex: 1 1 100%;
  }
}

@media (min-width: 801px) and (max-width: 1500px) {
  .custom-checkout .checkout-columns {
    flex-direction: row;
    gap: 30px;
  }

  .custom-checkout .checkout-column--left {
    /* reduce from 300px to 150px */
    padding-left: 150px;
    padding-right: 24px;
  }

  .custom-checkout .checkout-column--right {
    /* symmetric padding on large screens */
    padding-right: 150px;
    padding-left: 24px;
  }
}


@media (max-width: 770px) {
  .custom-checkout .checkout-inner {
    padding: 20px 16px;
  }
  .custom-checkout .checkout-block h2 {
    font-size: 1.5rem;
  }

  .custom-checkout .order-product-image img {
    width:80px;
    
  }
  
 .custom-checkout .checkout-column--left, .custom-checkout .checkout-column--right
  {
    margin-top: -100px !important;
  }
  
}


