:root{
  --vcp-pink:#ff5fa8;
  --vcp-pink-soft:#fff3f8;
  --vcp-green:#143d3a;
  --vcp-text:#202020;
  --vcp-muted:#77706a;
  --vcp-line:#efe8e2;
  --vcp-card:#ffffff;
  --vcp-bg:#faf8f6;
}
body.woocommerce-cart .woocommerce > .woocommerce-cart-form,
body.woocommerce-cart .woocommerce > .cart-collaterals{
  display:none!important;
}
body.woocommerce-cart .page-title,
body.woocommerce-cart .page-title-default,
body.woocommerce-cart .title-size-small,
body.woocommerce-cart .entry-title{
  display:none!important;
}
.vcp-cart-page{
  width:min(1240px, calc(100% - 40px));
  margin:54px auto 90px;
  color:var(--vcp-text);
  font-family:inherit;
}
.vcp-cart-title{
  margin:0 0 32px;
  font-size:34px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:-.02em;
}
.vcp-cart-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 380px;
  gap:34px;
  align-items:start;
}
.vcp-cart-items{
  display:grid;
  gap:18px;
}
.vcp-cart-item{
  position:relative;
  display:grid;
  grid-template-columns:96px minmax(0,1fr);
  gap:22px;
  align-items:center;
  background:#fff;
  border:1px solid #f2e8ee;
  border-radius:18px;
  padding:20px 22px;
  box-shadow:0 16px 42px rgba(35,25,22,.04);
}
.vcp-item-image,
.vcp-item-image a{
  display:block;
  width:96px;
  height:96px;
  border-radius:13px;
  overflow:hidden;
  background:#f7f7f7;
}
.vcp-item-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.vcp-item-content{min-width:0;}
.vcp-item-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:12px;
}
.vcp-item-title{
  color:#1d1d1d;
  font-size:17px;
  line-height:1.45;
  font-weight:700;
  text-decoration:none!important;
}
.vcp-item-title:hover{color:var(--vcp-pink);}
.vcp-remove-trigger{
  flex:0 0 auto;
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:50%;
  background:#fff3f8;
  color:var(--vcp-pink);
  font-size:25px;
  line-height:1;
  cursor:pointer;
  transition:background .18s ease, color .18s ease, transform .18s ease;
}
.vcp-remove-trigger:hover{
  background:var(--vcp-pink);
  color:#fff;
  transform:scale(1.04);
}
.vcp-delivery-info{
  font-size:15px;
  line-height:1.55;
  color:#4e4a46;
}
.vcp-delivery-label{
  font-weight:700;
  color:#2f2f2f;
  margin-bottom:2px;
}
.vcp-delivery-date{
  color:#222;
}
.vcp-delivery-district{
  color:#8a827c;
  margin-top:3px;
}
.vcp-item-price-row{
  margin-top:12px;
  display:none;
}
.vcp-item-price{
  color:var(--vcp-pink);
  font-weight:800;
}
.vcp-cart-sidebar{
  background:#fff;
  border-radius:18px;
  padding:26px;
  box-shadow:0 18px 48px rgba(35,25,22,.06);
  border:1px solid #f4ece7;
  position:sticky;
  top:110px;
}
.vcp-checkout-button{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:58px;
  border-radius:10px;
  background:var(--vcp-green);
  color:#fff!important;
  text-decoration:none!important;
  font-size:17px;
  font-weight:800;
  letter-spacing:.02em;
  border:0;
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.vcp-checkout-button:hover{
  background:#0f302d;
  color:#fff!important;
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(20,61,58,.18);
}
.vcp-order-summary{
  margin-top:30px;
  padding-top:6px;
}
.vcp-order-summary h2{
  margin:0 0 22px;
  text-align:center;
  font-size:18px;
  line-height:1.35;
  font-weight:700;
  letter-spacing:0;
}
.vcp-summary-items{
  display:grid;
  gap:16px;
  padding-bottom:20px;
  border-bottom:1px solid var(--vcp-line);
}
.vcp-summary-item{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:18px;
  align-items:start;
}
.vcp-summary-name{
  color:#67605a;
  font-size:15px;
  line-height:1.45;
}
.vcp-summary-price{
  white-space:nowrap;
  color:#222;
  font-weight:700;
  font-size:15px;
}
.vcp-totals-box{
  margin-top:20px;
  display:grid;
  gap:0;
}
.vcp-total-row{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:15px 0;
  border-bottom:1px solid var(--vcp-line);
  color:#555;
  font-size:15px;
}
.vcp-total-row strong{color:#222;white-space:nowrap;}
.vcp-grand-total{
  border-bottom:0;
  padding-top:22px;
  align-items:baseline;
}
.vcp-grand-total span{
  color:#1e1e1e;
  font-size:21px;
  font-weight:800;
  letter-spacing:.02em;
}
.vcp-grand-total strong{
  font-size:26px;
  font-weight:900;
  color:#111;
}
.vcp-discount-section{margin-top:20px;}
.vcp-discount-toggle{
  width:100%;
  min-height:54px;
  border-radius:9px;
  border:1px solid #f1bfd3;
  background:var(--vcp-pink-soft);
  color:#252525;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
}
.vcp-discount-toggle:hover{
  background:#ffe8f2;
  color:#252525;
}
.vcp-coupon-form{
  margin-top:12px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 110px;
  gap:8px;
}
.vcp-coupon-form[hidden]{display:none!important;}
.vcp-coupon-form input{
  height:48px;
  border:1px solid #eadfe5;
  border-radius:9px;
  padding:0 13px;
  box-shadow:none!important;
}
.vcp-coupon-form button{
  height:48px;
  border:0;
  border-radius:9px;
  background:#111;
  color:#fff;
  font-weight:700;
}
.vcp-mobile-fixed-bottom{display:none;}
.vcp-remove-modal{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
}
.vcp-remove-modal.is-open{display:flex;}
.vcp-remove-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.48);
}
.vcp-remove-dialog{
  position:relative;
  width:min(460px,100%);
  background:#fff;
  border-radius:19px;
  padding:34px 34px 36px;
  text-align:center;
  box-shadow:0 28px 80px rgba(0,0,0,.28);
  animation:vcp-pop .18s ease both;
}
@keyframes vcp-pop{from{transform:scale(.96);opacity:0}to{transform:scale(1);opacity:1}}
.vcp-remove-close{
  position:absolute;
  top:18px;
  right:20px;
  border:0;
  background:transparent;
  color:#999;
  font-size:29px;
  line-height:1;
  cursor:pointer;
}
.vcp-remove-icon{
  width:58px;
  height:58px;
  border-radius:50%;
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--vcp-pink);
  background:#fff3f8;
  font-size:32px;
}
.vcp-remove-dialog h2{
  margin:0 auto 22px;
  max-width:330px;
  color:#222;
  font-size:19px;
  line-height:1.45;
  font-weight:700;
}
.vcp-keep-button,
.vcp-confirm-remove{
  width:100%;
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:9px;
  text-decoration:none!important;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
}
.vcp-keep-button{
  border:0;
  background:var(--vcp-pink-soft);
  color:#222;
  margin-bottom:12px;
}
.vcp-confirm-remove{
  border:1px solid #e7ddd6;
  background:#fff;
  color:#222!important;
}
.vcp-confirm-remove:hover{
  border-color:var(--vcp-pink);
  color:var(--vcp-pink)!important;
}
.vcp-empty-box{
  background:#fff;
  border:1px solid #f2e8ee;
  border-radius:18px;
  padding:42px;
  text-align:center;
}
.vcp-empty-box h2{margin:0 0 8px;}
.vcp-empty-box p{margin:0 auto 24px;max-width:520px;color:#6f6862;}
.vcp-empty-box .vcp-checkout-button{max-width:240px;margin:0 auto;}
@media (max-width:1024px){
  .vcp-cart-page{width:min(100% - 28px, 900px);margin-top:34px;}
  .vcp-cart-layout{grid-template-columns:1fr;gap:24px;}
  .vcp-cart-sidebar{position:static;}
}
@media (max-width:768px){
  body.woocommerce-cart{padding-bottom:92px;}
  .vcp-cart-page{width:100%;margin:26px 0 70px;padding:0 16px;}
  .vcp-cart-title{font-size:30px;margin-bottom:22px;}
  .vcp-cart-item{grid-template-columns:82px minmax(0,1fr);gap:16px;border-radius:15px;padding:16px;}
  .vcp-item-image,.vcp-item-image a{width:82px;height:82px;border-radius:11px;}
  .vcp-item-title{font-size:16px;line-height:1.38;}
  .vcp-item-header{gap:10px;}
  .vcp-remove-trigger{width:30px;height:30px;font-size:23px;}
  .vcp-delivery-info{font-size:14px;}
  .vcp-item-price-row{display:block;}
  .vcp-cart-sidebar{border-radius:16px;padding:22px 18px;}
  .vcp-desktop-checkout{display:none;}
  .vcp-grand-total strong{font-size:23px;}
  .vcp-mobile-fixed-bottom{
    position:fixed;
    left:0;right:0;bottom:0;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(150px, 48%);
    gap:12px;
    align-items:center;
    padding:12px 16px calc(12px + env(safe-area-inset-bottom));
    background:#fff;
    box-shadow:0 -12px 30px rgba(0,0,0,.10);
    z-index:9998;
  }
  .vcp-mobile-total span{display:block;font-size:12px;color:#8a827c;margin-bottom:2px;}
  .vcp-mobile-total strong{font-size:18px;color:#111;font-weight:900;}
  .vcp-mobile-fixed-bottom .vcp-checkout-button{min-height:52px;border-radius:10px;}
  .vcp-coupon-form{grid-template-columns:1fr;}
  .vcp-remove-dialog{padding:32px 22px 26px;}
}
@media (max-width:420px){
  .vcp-cart-item{grid-template-columns:74px minmax(0,1fr);gap:13px;padding:14px;}
  .vcp-item-image,.vcp-item-image a{width:74px;height:74px;}
  .vcp-item-title{font-size:15px;}
}

/* v1.0.1 - Sepet sayfasındaki WooCommerce teslimat bilgi uyarısını gizle */
body.woocommerce-cart .woocommerce > .woocommerce-info,
body.woocommerce-cart .woocommerce-info[role="status"]{
  display:none!important;
}

/* v1.0.3 district delivery fee rows in order summary */
.vcp-summary-delivery-fee{
  margin-top:-8px;
  padding-left:10px;
}
.vcp-summary-delivery-fee .vcp-summary-name{
  color:#8f8881;
  font-size:14px;
}
.vcp-summary-delivery-fee .vcp-summary-price{
  color:#8f8881;
  font-weight:700;
  font-size:14px;
}
@media (max-width:768px){
  .vcp-summary-delivery-fee{
    padding-left:0;
  }
}

/* v1.0.4 mobile bottom total one-line fix */
@media (max-width:768px){
  .vcp-mobile-fixed-bottom{
    grid-template-columns:minmax(0,1fr) minmax(150px, 48%)!important;
  }
  .vcp-mobile-total{
    min-width:0!important;
  }
  .vcp-mobile-total span{
    display:inline!important;
    margin:0 6px 0 0!important;
    font-size:14px!important;
    line-height:1!important;
    color:#8a827c!important;
    vertical-align:baseline;
  }
  .vcp-mobile-total strong{
    display:inline!important;
    white-space:nowrap!important;
    font-size:18px!important;
    line-height:1!important;
    color:#111!important;
    font-weight:900!important;
    vertical-align:baseline;
  }
}
@media (max-width:380px){
  .vcp-mobile-fixed-bottom{
    grid-template-columns:minmax(0,44%) minmax(150px,56%)!important;
    gap:10px!important;
  }
  .vcp-mobile-total span{font-size:12px!important;}
  .vcp-mobile-total strong{font-size:16px!important;}
}
