:root{
    --primary:#7c3aed;
    --dark:#5b21b6;
    --bg:#f5f3ff;
  }
  
  body{
    margin:0;
    font-family:system-ui;
    background:var(--bg);
  }
  
  /* HEADER SPACING */
  .main-content{
    margin-top:90px;
    padding-bottom:60px;
  }
  
  /* CONTAINER */
  .container{
    max-width:1100px;
    margin:auto;
    padding:20px;
  }
  
  /* HEADER */
  .page-header{
    background:linear-gradient(135deg,var(--primary),#a855f7);
    color:#fff;
    padding:25px 0;
  }
  
  /* WRAPPER */
  .cart-wrapper{
    display:flex;
    gap:20px;
  }
  
  /* LEFT */
  .cart-left{
    flex:3;
    background:#fff;
    padding:20px;
    border-radius:12px;
  }
  
  /* ITEM */
  .cart-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 0;
    border-bottom:1px solid #eee;
    transition:.3s;
  }
  
  .cart-img{
    width:90px;
    border-radius:10px;
  }
  
  .cart-info{
    flex:1;
    padding:0 15px;
  }
  
  /* QTY */
  .qty-box{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:10px;
  }
  
  .qty-box button{
    background:var(--primary);
    color:#fff;
    border:none;
    padding:5px 10px;
    border-radius:6px;
    cursor:pointer;
  }
  
  /* RIGHT */
  .cart-right{
    flex:1;
  }
  
  /* STEPPER */
  .stepper{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
  }
  
  .step{
    text-align:center;
    flex:1;
    position:relative;
  }
  
  .step span{
    width:30px;
    height:30px;
    display:inline-block;
    border-radius:50%;
    background:#ddd;
    line-height:30px;
    color:#000;
  }
  
  .step.active span{
    background:var(--primary);
    color:#fff;
  }
  
  .step p{
    font-size:12px;
  }
  
  /* SUMMARY */
  .summary{
    background:#fff;
    padding:20px;
    border-radius:12px;
  }
  
  .summary h1{
    color:var(--primary);
  }
  
  /* BUTTON */
 .checkout-btn{
  width:100%;
  padding:14px 16px;
  background:linear-gradient(135deg, var(--primary), #a855f7);
  color:#fff;
  border:none;
  border-radius:12px;
  margin-top:15px;
  cursor:pointer;

  font-size:16px;
  font-weight:600;
  letter-spacing:.3px;

  box-shadow:0 10px 25px rgba(124,58,237,0.25);
  transition:all .25s ease;
  position:relative;
  overflow:hidden;
}

/* HOVER EFFECT */
.checkout-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 15px 35px rgba(124,58,237,0.35);
  background:linear-gradient(135deg, var(--dark), var(--primary));
}

/* CLICK EFFECT */
.checkout-btn:active{
  transform:scale(0.98);
  box-shadow:0 8px 18px rgba(124,58,237,0.2);
}

/* DISABLED STATE */
.checkout-btn:disabled,
.checkout-btn.disabled{
  background:#d1d5db;
  color:#6b7280;
  cursor:not-allowed;
  box-shadow:none;
}

/* SHINE ANIMATION */
.checkout-btn{
    display:block;
    width:100%;
    padding:10px 12px;   /* 🔥 reduced height */
    background:linear-gradient(135deg, var(--primary), #a855f7);
    color:#fff;
    text-align:center;
    text-decoration:none; /* important for <a> tag */
  
    border:none;
    border-radius:10px;
  
    font-size:14px;      /* 🔥 smaller text */
    font-weight:600;
  
    margin-top:12px;
  
    box-shadow:0 6px 15px rgba(124,58,237,0.2);
  
    transition:all .2s ease;
    cursor:pointer;
  }
  
  /* hover */
  .checkout-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 20px rgba(124,58,237,0.25);
  }
  
  /* active click */
  .checkout-btn:active{
    transform:scale(0.98);
  }
  
  /* optional disabled */
  .checkout-btn.disabled{
    background:#d1d5db;
    color:#6b7280;
    cursor:not-allowed;
    box-shadow:none;
  }
  
  /* REMOVE */
  .remove-btn{
    background:none;
    border:none;
    color:var(--primary);
    cursor:pointer;
  }
  
  /* ANIMATION */
  .fade{
    opacity:0;
    transform:translateX(-20px);
    transition:.3s;
  }
  /* ══════════════════════════════
   ADD THESE TO THE BOTTOM OF
   YOUR EXISTING cart.css
══════════════════════════════ */

/* Price display per item */
.price {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
    white-space: nowrap;
  }
  
  /* Summary rows */
  .summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
  }
  
  /* ── GUEST WALL ── */
  .guest-wall {
    max-width: 460px;
    margin: 50px auto;
    background: #fff;
    border-radius: 16px;
    padding: 44px 36px 36px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(124,58,237,.10);
    border-top: 4px solid var(--primary);
  }
  
  .guest-icon {
    width: 68px;
    height: 68px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin: 0 auto 18px;
  }
  
  .guest-wall h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
  }
  
  .guest-wall p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  
  .guest-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  /* Outlined variant of checkout-btn for "Create Account" */
  .outline-btn {
    background: transparent !important;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    box-shadow: none !important;
  }
  
  .outline-btn:hover {
    background: var(--primary) !important;
    color: #fff !important;
  }
  
  .guest-tip {
    font-size: 12.5px;
    color: #0369a1;
    background: #eff6ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 10px 14px;
    text-align: left;
    margin-bottom: 18px;
  }
  
  .guest-browse {
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
  }
  
  .guest-browse:hover {
    text-decoration: underline;
  }
  
  /* Login alert info style (for login.css) */
  .login-alert.info {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
  }
  
  .login-alert.info a {
    color: #1d4ed8;
    font-weight: 700;
    text-decoration: underline;
  }
  
  /* RESPONSIVE */
  @media(max-width:900px){
    .cart-wrapper{
      flex-direction:column;
    }
  }