/* ===============================
PREMIUM LUXURY CHECKOUT
================================= */

.checkout{
max-width:1200px;
margin:auto;
padding:80px 24px;
animation:checkoutFade .8s ease;
}

@keyframes checkoutFade{
from{opacity:0; transform:translateY(30px);}
to{opacity:1; transform:translateY(0);}
}

/* ===============================
GRID LAYOUT
================================= */

.checkout-grid{
display:grid;
grid-template-columns:1.2fr .8fr;
gap:40px;
align-items:start;
}

/* ===============================
BOX STYLE
================================= */

.checkout-box{
background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
border:1px solid rgba(198,168,74,.14);
padding:35px;
border-radius:24px;
box-shadow:0 24px 70px rgba(0,0,0,.4);
transition:.35s;
}

.checkout-box:hover{
transform:translateY(-4px);
box-shadow:0 30px 80px rgba(0,0,0,.52);
}

/* ===============================
HEADINGS
================================= */

.checkout-box h2{
font-size:22px;
margin-bottom:25px;
letter-spacing:.5px;
color:var(--ivory);
}

.checkout-account-note{
margin:-8px 0 18px;
padding:14px 16px;
border:1px solid rgba(198,168,74,.14);
border-radius:16px;
background:rgba(255,255,255,.03);
color:#d7cab0;
font-size:13px;
line-height:1.8;
}

/* ===============================
INPUTS
================================= */

.checkout-box input,
.checkout-box textarea,
.checkout-box select{
width:100%;
margin-bottom:16px;
padding:14px;
border-radius:16px;
border:1px solid rgba(198,168,74,.12);
background:rgba(7,7,7,.55);
color:#fff;
font-size:14px;
transition:.25s;
}

.checkout-box input::placeholder,
.checkout-box textarea::placeholder{
color:#a99d89;
}

.checkout-box input:focus,
.checkout-box textarea:focus,
.checkout-box select:focus{
outline:none;
border-color:#d4af37;
box-shadow:0 0 0 1px rgba(212,175,55,.25), 0 0 24px rgba(212,175,55,.08);
}

.checkout-box textarea{
resize:vertical;
min-height:90px;
}

/* ===============================
ORDER SUMMARY
================================= */

.checkout-summary{
display:flex;
flex-direction:column;
gap:12px;
}

.summary-row{
display:flex;
justify-content:space-between;
font-size:15px;
color:#cfcfcf;
}

.summary-row.total{
font-size:20px;
font-weight:600;
margin-top:10px;
color:#fff;
}

/* ===============================
PLACE ORDER BUTTON
================================= */

.place-order{
width:100%;
padding:16px;
margin-top:20px;
background:linear-gradient(135deg,#e2cb87,#b58d31);
border:none;
border-radius:999px;
color:#070707;
font-size:16px;
font-weight:600;
letter-spacing:.18em;
text-transform:uppercase;
cursor:pointer;
transition:.35s;
}

.place-order:hover{
transform:translateY(-3px);
box-shadow:0 20px 50px rgba(212,175,55,.3);
}

.place-order:disabled{
cursor:not-allowed;
opacity:.58;
transform:none;
box-shadow:none;
background:linear-gradient(135deg,#7e745c,#5a5243);
color:#f3ead6;
}

/* ===============================
PAYMENT METHODS
================================= */

.payment-methods{
display:flex;
flex-direction:column;
gap:12px;
margin-top:20px;
}

.payment-method{
display:flex;
align-items:center;
gap:10px;
padding:12px;
border:1px solid #1f1f1f;
border-radius:8px;
background:#111;
cursor:pointer;
transition:.3s;
}

.payment-method:hover{
border-color:#d4af37;
background:#151515;
}

/* ===============================
TABLET
================================= */

@media(max-width:1024px){

.checkout{
padding:70px 20px;
}

.checkout-grid{
grid-template-columns:1fr;
gap:30px;
}

}

/* ===============================
MOBILE
================================= */

@media(max-width:768px){

.checkout{
padding:60px 18px;
}

.checkout-box{
padding:25px;
}

.checkout-box h2{
font-size:20px;
}

.summary-row{
font-size:14px;
}

.place-order{
font-size:15px;
padding:15px;
}

}

/* ===============================
SMALL MOBILE
================================= */

@media(max-width:480px){

.checkout-box{
padding:20px;
}

.checkout-box h2{
font-size:18px;
}

.checkout-box input,
.checkout-box textarea,
.checkout-box select{
padding:12px;
font-size:13px;
}

.place-order{
padding:14px;
font-size:14px;
}

.summary-row.total{
font-size:18px;
}

}

.payment-info{
background:rgba(255,255,255,.03);
border:1px solid rgba(198,168,74,.14);
padding:15px;
border-radius:16px;
margin-top:15px;
font-size:14px;

}

.payment-info h4{

margin-bottom:8px;
color:#d4af37;

}

.payment-info input{

width:100%;
padding:8px;
margin-top:8px;
border-radius:4px;
border:1px solid #444;

}

.whatsapp-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 24px;
  background: #25D366;
  color: #fff;
  font-weight: 500;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.checkout-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}