:root{
  --fcshop-primary:#e30511;
  --fcshop-secondary:#ffffff;
  --fcshop-accent:#f6f6f7;
  --fcshop-text:#1f2328;
  --fcshop-muted:#6b7280;
  --fcshop-border:#e5e7eb;
  --fcshop-radius:18px;
  --fcshop-radius-sm:14px;
  --fcshop-shadow:2px 2px 4px rgba(0,0,0,.06);
  --fcshop-shadow-soft:0 6px 18px rgba(0,0,0,.05);
}

.fcshop-wrap,
.fcshop-single,
.fcshop-cart-page,
.fcshop-checkout-page{
  width:100%;
}

/* =========================================================
   GLOBAL / BUTTONS
   ========================================================= */

.fcshop-btn,
.fcshop-btn:link,
.fcshop-btn:visited,
.fcshop-btn:active,
.fcshop-wrap .fcshop-btn,
.fcshop-single .fcshop-btn,
.fcshop-cart-page .fcshop-btn,
.fcshop-mini-cart .fcshop-btn,
.fcshop-checkout-page .fcshop-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:0 9px;
  border-radius:999px;
  border:1.5px solid #e30511 !important;
  background:#fff !important;
  color:#e30511 !important;
  font-weight:700;
  font-size:10.5px;
  line-height:1;
  text-decoration:none !important;
  cursor:pointer;
  transition:background .18s ease, color .18s ease, border-color .18s ease, opacity .18s ease;
  box-sizing:border-box;
  white-space:nowrap;
  box-shadow:none !important;
}

.fcshop-btn:hover,
.fcshop-btn:focus,
.fcshop-wrap .fcshop-btn:hover,
.fcshop-wrap .fcshop-btn:focus,
.fcshop-single .fcshop-btn:hover,
.fcshop-single .fcshop-btn:focus,
.fcshop-cart-page .fcshop-btn:hover,
.fcshop-cart-page .fcshop-btn:focus,
.fcshop-mini-cart .fcshop-btn:hover,
.fcshop-mini-cart .fcshop-btn:focus,
.fcshop-checkout-page .fcshop-btn:hover,
.fcshop-checkout-page .fcshop-btn:focus{
  border:1.5px solid #e30511 !important;
  background:#e30511 !important;
  color:#fff !important;
  text-decoration:none !important;
  outline:none;
  box-shadow:none !important;
}

.fcshop-btn-small{
  min-height:28px !important;
  padding:0 9px !important;
  font-size:10.5px !important;
}

.fcshop-btn-disabled{
  opacity:.75;
  cursor:not-allowed;
}

.fcshop-btn-disabled:hover,
.fcshop-btn-disabled:focus{
  border:1.5px solid #e30511 !important;
  background:#fff !important;
  color:#e30511 !important;
}

.fcshop-empty{
  grid-column:1 / -1;
  padding:18px;
  border:1px dashed var(--fcshop-border);
  border-radius:16px;
  background:#fff;
  color:var(--fcshop-muted);
}

.fcshop-empty p{
  margin:0;
  line-height:1.55;
  font-size:14px;
}

/* =========================================================
   SHOP GRID
   ========================================================= */

.fcshop-grid{
  display:grid;
  gap:20px;
  align-items:stretch;
}

.fcshop-grid.fcshop-grid-cols-1{ grid-template-columns:1fr; }
.fcshop-grid.fcshop-grid-cols-2{ grid-template-columns:repeat(2,minmax(0,1fr)); }
.fcshop-grid.fcshop-grid-cols-3{ grid-template-columns:repeat(3,minmax(0,1fr)); }
.fcshop-grid.fcshop-grid-cols-4{ grid-template-columns:repeat(4,minmax(0,1fr)); }

.fcshop-card{
  display:flex;
  flex-direction:column;
  background:linear-gradient(180deg,#eeeeee 0%, #ffffff 100%);
  border:1px solid var(--fcshop-border);
  border-radius:var(--fcshop-radius);
  overflow:hidden;
  box-shadow:var(--fcshop-shadow);
  min-height:100%;
}

.fcshop-card-media-link,
.fcshop-card-title-link{
  text-decoration:none;
  color:inherit;
}

.fcshop-card-media{
  position:relative;
  aspect-ratio:4 / 3;
  background:#f8f8f8;
  overflow:hidden;
}

.fcshop-card-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.fcshop-card-placeholder{
  width:100%;
  height:100%;
  min-height:200px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--fcshop-muted);
  font-size:13px;
  background:#f8f8f8;
}

.fcshop-card-body{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:16px;
  flex:1;
}

.fcshop-card-category{
  display:inline-flex;
  align-self:flex-start;
  padding:5px 9px;
  border:1px solid var(--fcshop-primary);
  border-radius:999px;
  color:var(--fcshop-primary);
  background:#fff;
  font-size:11px;
  font-weight:700;
  line-height:1;
}

.fcshop-card-title{
  margin:0;
  color:var(--fcshop-text);
  font-size:18px;
  line-height:1.22;
}

.fcshop-card-title-link:hover{
  color:var(--fcshop-primary);
}

.fcshop-card-excerpt{
  color:var(--fcshop-muted);
  font-size:13px;
  line-height:1.55;
  margin-bottom:8px;
}

.fcshop-card-price-row,
.fcshop-single-price-row{
  display:flex;
  align-items:flex-end;
  gap:8px;
  flex-wrap:wrap;
}

.fcshop-card-price-row{
  margin-top:auto;
  padding-top:12px;
}

.fcshop-card-price-old{
  color:#9ca3af;
  font-size:13px;
  text-decoration:line-through;
  line-height:1;
}

.fcshop-card-price{
  color:var(--fcshop-primary);
  font-size:22px;
  font-weight:800;
  line-height:1;
}

.fcshop-card .fcshop-btn{
  margin-top:14px;
}

/* =========================================================
   SINGLE PRODUCT
   ========================================================= */

.fcshop-single{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.fcshop-single-grid{
  display:grid;
  grid-template-columns:minmax(320px, 1.05fr) minmax(280px, .95fr);
  gap:22px;
  align-items:stretch;
}

.fcshop-single-media,
.fcshop-single-content{
  background:linear-gradient(180deg,#eeeeee 0%, #ffffff 100%);
  border:1px solid var(--fcshop-border);
  border-radius:var(--fcshop-radius);
  box-shadow:var(--fcshop-shadow);
  overflow:hidden;
}

.fcshop-single-media{
  padding:0;
  min-height:100%;
}

.fcshop-single-image{
  width:100%;
  height:100%;
  min-height:380px;
  max-height:680px;
  display:block;
  object-fit:cover;
}

.fcshop-single-content{
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:14px;
  align-self:stretch;
}

.fcshop-single-title{
  margin:0;
  font-size:26px;
  line-height:1.06;
  color:var(--fcshop-text);
  letter-spacing:-0.02em;
}

.fcshop-single-excerpt{
  color:var(--fcshop-muted);
  font-size:14px;
  line-height:1.6;
}

.fcshop-single-price-box{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:12px 14px;
  border:1px solid var(--fcshop-border);
  border-radius:14px;
  background:#fff;
  box-shadow:none;
}

.fcshop-single-price-row .fcshop-card-price-old{
  font-size:13px;
}

.fcshop-single-price-row .fcshop-card-price{
  font-size:24px;
}

.fcshop-single-meta{
  display:grid;
  gap:8px;
  padding:14px 16px;
  border:1px solid var(--fcshop-border);
  border-radius:14px;
  background:#fff;
  color:var(--fcshop-text);
  font-size:13px;
  line-height:1.45;
}

.fcshop-single-meta strong{
  color:var(--fcshop-text);
}

.fcshop-single-actions{
  margin-top:4px;
  display:flex;
  flex-wrap:nowrap;
  gap:5px;
  align-items:center;
}

.fcshop-add-to-cart-form{
  margin:0;
  display:flex;
  flex:0 1 auto;
}

.fcshop-single-actions .fcshop-btn,
.fcshop-single-actions .fcshop-add-to-cart-form .fcshop-btn{
  min-width:0 !important;
  min-height:30px !important;
  padding:0 9px !important;
  font-size:10.5px !important;
  letter-spacing:0;
}

/* Counter/Meta-Fremdausgaben im Shopbereich möglichst unterdrücken */
.fcshop-wrap .post-views,
.fcshop-wrap .entry-meta,
.fcshop-wrap .views,
.fcshop-wrap .popular-posts,
.fcshop-single .post-views,
.fcshop-single .entry-meta,
.fcshop-single .views,
.fcshop-single .popular-posts{
  display:none !important;
}

/* =========================================================
   CART
   ========================================================= */

.fcshop-cart-page{
  width:100%;
}

.fcshop-cart-box{
  width:100%;
  max-width:none;
  background:linear-gradient(180deg,#eeeeee 0%, #ffffff 100%);
  border:1px solid var(--fcshop-border);
  border-radius:var(--fcshop-radius);
  box-shadow:var(--fcshop-shadow);
  padding:18px;
}

.fcshop-cart-form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.fcshop-cart-table{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.fcshop-cart-row{
  display:grid;
  grid-template-columns:minmax(0, 2fr) 84px 120px 96px;
  gap:14px;
  align-items:center;
  padding:14px;
  border:1px solid var(--fcshop-border);
  border-radius:14px;
  background:#fff;
}

.fcshop-cart-product-wrap{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.fcshop-cart-thumb-link{
  text-decoration:none;
  flex:0 0 auto;
}

.fcshop-cart-thumb,
.fcshop-cart-thumb-placeholder{
  width:74px;
  height:74px;
  border-radius:12px;
  object-fit:cover;
  display:block;
  background:#f3f4f6;
}

.fcshop-cart-thumb-placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--fcshop-muted);
  font-size:16px;
}

.fcshop-cart-product-info{
  min-width:0;
}

.fcshop-cart-product-title{
  display:block;
  text-decoration:none;
  color:var(--fcshop-text);
  font-weight:700;
  font-size:14px;
  line-height:1.35;
  margin-bottom:5px;
}

.fcshop-cart-product-title:hover{
  color:var(--fcshop-primary);
}

.fcshop-cart-price-single{
  color:var(--fcshop-muted);
  font-size:12px;
}

.fcshop-qty-input{
  width:100%;
  min-height:34px;
  border:1.5px solid #e30511 !important;
  border-radius:10px !important;
  padding:0 10px;
  font-size:13px;
  font-weight:700;
  background:#fff;
  color:#e30511 !important;
  box-sizing:border-box;
  box-shadow:none !important;
}

.fcshop-qty-input:focus{
  outline:none;
  border-color:#e30511 !important;
  box-shadow:none !important;
}

.fcshop-cart-col-total{
  font-weight:800;
  color:var(--fcshop-text);
  font-size:14px;
}

.fcshop-cart-col-remove{
  display:flex;
  justify-content:flex-start;
}

.fcshop-cart-summary{
  margin-top:2px;
  background:#fff;
  border:1px solid var(--fcshop-border);
  border-radius:14px;
  padding:14px 16px;
}

.fcshop-cart-summary-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size:15px;
  color:var(--fcshop-text);
}

.fcshop-cart-summary-row strong{
  font-size:18px;
  color:var(--fcshop-primary);
  line-height:1;
}

.fcshop-cart-actions{
  display:flex;
  justify-content:flex-start;
  gap:8px;
  flex-wrap:wrap;
}

.fcshop-cart-actions-bottom{
  margin-top:2px;
}

/* =========================================================
   MINI CART
   ========================================================= */

.fcshop-mini-cart{
  display:flex;
  flex-direction:column;
  gap:0;
  background:#fff;
  border:1px solid #e30511 !important;
  border-radius:6px !important;
  box-shadow:var(--fcshop-shadow) !important;
  padding:12px 14px;
}

.fcshop-mini-cart .fcshop-empty{
  margin:0;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
}

.fcshop-mini-cart-summary{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:0 0 12px 0;
  border:0;
  border-bottom:1px dashed #e30511 !important;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.fcshop-mini-cart-line{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-size:13px;
  color:var(--fcshop-text);
}

.fcshop-mini-cart-items{
  display:flex;
  flex-direction:column;
  gap:0;
}

.fcshop-mini-cart-item{
  padding:12px 0;
  border:0;
  border-bottom:1px dashed #e30511 !important;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.fcshop-mini-cart-item:last-child{
  border-bottom:1px dashed #e30511 !important;
}

.fcshop-mini-cart-item-category{
  display:inline-flex;
  align-self:flex-start;
  margin-bottom:6px;
  padding:4px 8px;
  border:1px solid #e30511 !important;
  border-radius:999px;
  background:#fff !important;
  color:#e30511 !important;
  font-size:10px;
  font-weight:700;
  line-height:1;
}

.fcshop-mini-cart-item-title{
  display:block;
  text-decoration:none;
  color:var(--fcshop-text);
  font-weight:700;
  font-size:13px;
  line-height:1.35;
  margin-bottom:3px;
}

.fcshop-mini-cart-item-title:hover{
  color:var(--fcshop-primary);
}

.fcshop-mini-cart-item-meta,
.fcshop-mini-cart-empty{
  color:var(--fcshop-muted);
  font-size:12px;
  line-height:1.45;
}

.fcshop-mini-cart-actions{
  display:flex;
  justify-content:flex-start;
  padding-top:12px;
}

/* =========================================================
   CHECKOUT
   ========================================================= */

.fcshop-checkout-page{
  width:100%;
}

.fcshop-checkout-errors{
  margin-bottom:16px;
  padding:10px 12px;
  border:1px solid rgba(227,5,17,.35);
  border-radius:12px;
  background:rgba(227,5,17,.06);
  color:#7a0b10;
}

.fcshop-checkout-errors p{
  margin:0;
}

.fcshop-checkout-form{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.fcshop-checkout-main{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.fcshop-checkout-summary-top{
  padding:16px;
}

.fcshop-checkout-summary-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.fcshop-checkout-card{
  color:var(--fcshop-text);
  background:linear-gradient(180deg,#eeeeee 33%, #ffffff 66%, #ffffff 100%);
  border:1px solid var(--fcshop-border);
  border-radius:8px;
  box-shadow:var(--fcshop-shadow);
  padding:16px;
}

.fcshop-checkout-title{
  margin:0 0 12px 0;
  color:var(--fcshop-text);
  font-size:15px;
  font-weight:600;
  line-height:1.25;
}

.fcshop-checkout-title-summary{
  font-size:15px;
  font-weight:600;
}

.fcshop-checkout-fields{
  display:flex;
  flex-wrap:wrap;
  margin-left:-16px;
  margin-top:-16px;
}

.fcshop-checkout-fields-2 > .fcshop-checkout-field,
.fcshop-checkout-fields-2 > .fcshop-field-span-2{
  padding-left:16px;
  padding-top:16px;
  min-width:0;
}

.fcshop-checkout-fields-2 > .fcshop-checkout-field{
  width:50%;
}

.fcshop-checkout-fields-2 > .fcshop-field-span-2{
  width:100%;
}

.fcshop-checkout-field{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.fcshop-checkout-label{
  margin:0 !important;
  padding:0 !important;
  font-size:13px;
  font-weight:700;
  line-height:1.25;
  color:var(--fcshop-text);
}

.fcshop-checkout-input,
.fcshop-checkout-textarea{
  margin:0 !important;
  width:100%;
  border:1.5px solid #e30511 !important;
  border-radius:4px !important;
  padding:10px 12px !important;
  font-size:14px !important;
  outline:none !important;
  background:#eee !important;
  color:var(--fcshop-text) !important;
  box-shadow:none !important;
  transition:background .12s ease;
}

.fcshop-checkout-input{
  height:42px;
  min-height:42px;
  line-height:20px;
}

.fcshop-checkout-textarea{
  min-height:120px;
  resize:vertical;
}

.fcshop-checkout-input:focus,
.fcshop-checkout-textarea:focus{
  background:#fff !important;
}

.fcshop-checkout-combined-card{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.fcshop-checkout-combined-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.fcshop-checkout-combined-col{
  min-width:0;
}

.fcshop-checkout-combined-note{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.fcshop-checkout-options{
  display:grid;
  gap:12px;
}

.fcshop-checkout-option{
  min-height:85px;
  border:1px solid #e3e3e3;
  border-radius:12px;
  background:#fff;
  padding:10px 12px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.fcshop-checkout-option input{
  width:18px;
  height:18px;
  margin-top:2px;
  accent-color:#e30511;
}

.fcshop-checkout-option-text{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.fcshop-checkout-option-text strong{
  font-size:14px;
  font-weight:600;
  line-height:1.2;
  color:var(--fcshop-text);
}

.fcshop-checkout-option-text small{
  font-size:12px;
  color:var(--fcshop-muted);
  line-height:1.25;
}

.fcshop-checkout-note-box{
  margin-top:14px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.15);
  background:rgba(0,0,0,.03);
  color:#111;
  font-size:13px;
  line-height:1.45;
}

.fcshop-checkout-note-box-no-top{
  margin-top:0;
}

.fcshop-checkout-summary-items{
  display:flex;
  flex-direction:column;
  gap:0;
}

.fcshop-checkout-summary-item{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:12px;
  padding:10px 0;
  border-bottom:1px dashed #d4d7dd;
}

.fcshop-checkout-summary-item:first-child{
  padding-top:0;
}

.fcshop-checkout-summary-item:last-child{
  border-bottom:0;
}

.fcshop-checkout-summary-item-main{
  display:flex;
  min-width:0;
}

.fcshop-checkout-summary-item-left{
  display:flex;
  align-items:flex-start;
  gap:10px;
  min-width:0;
}

.fcshop-checkout-summary-thumb-btn{
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
  cursor:pointer;
  flex:0 0 auto;
  box-shadow:none !important;
}

.fcshop-checkout-summary-thumb{
  width:52px;
  height:52px;
  object-fit:cover;
  display:block;
  border-radius:8px;
  border:1px solid var(--fcshop-border);
  background:#f5f5f5;
}

.fcshop-checkout-summary-thumb-placeholder{
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  border:1px solid var(--fcshop-border);
  background:#f5f5f5;
  color:var(--fcshop-muted);
  font-size:16px;
}

.fcshop-checkout-summary-item-text{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}

.fcshop-checkout-product-link{
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
  color:var(--fcshop-text) !important;
  font-size:14px;
  font-weight:700;
  line-height:1.35;
  text-align:left;
  cursor:pointer;
  box-shadow:none !important;
  text-decoration:underline;
  text-decoration-color:rgba(227,5,17,.35);
  text-underline-offset:3px;
}

.fcshop-checkout-product-link:hover,
.fcshop-checkout-product-link:focus{
  color:#e30511 !important;
  outline:none;
}

.fcshop-checkout-summary-item-text small{
  font-size:12px;
  color:var(--fcshop-muted);
  line-height:1.35;
}

.fcshop-checkout-summary-item-total{
  font-size:13px;
  font-weight:700;
  color:var(--fcshop-text);
  white-space:nowrap;
}

.fcshop-checkout-totals{
  display:grid;
  gap:8px;
  margin-top:14px;
  padding-top:14px;
  border-top:1px dashed #d4d7dd;
}

.fcshop-checkout-total-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-size:14px;
  color:var(--fcshop-text);
}

.fcshop-checkout-total-row strong{
  font-size:14px;
}

.fcshop-checkout-total-row-grand{
  margin-top:2px;
  font-size:18px;
  font-weight:500;
}

.fcshop-checkout-total-row-grand strong{
  font-size:18px;
  font-weight:500;
  color:#e30511;
}

.fcshop-checkout-submit{
  display:flex;
  justify-content:flex-start;
  gap:10px;
  margin-top:2px;
}

.fcshop-checkout-submit-outside{
  margin-top:2px;
}

.fcshop-btn-checkout{
  min-height:34px !important;
  padding:0 12px !important;
  font-size:11px !important;
}

/* =========================================================
   CHECKOUT MODAL
   ========================================================= */

body.fcshop-modal-open{
  overflow:hidden;
}

.fcshop-product-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:99999;
}

.fcshop-product-modal-overlay.is-open{
  display:flex;
}

.fcshop-product-modal{
  position:relative;
  width:min(980px, 100%);
  max-height:90vh;
  overflow:auto;
  background:#fff;
  border-radius:16px;
  box-shadow:0 25px 80px rgba(0,0,0,.25);
  padding:0;
}

.fcshop-product-modal-close{
  position:absolute;
  top:12px;
  right:12px;
  left:auto;
  width:34px;
  height:34px;
  border:1.5px solid #e30511;
  border-radius:999px;
  background:#fff;
  color:#e30511;
  font-size:22px;
  line-height:1;
  cursor:pointer;
  z-index:3;
}

.fcshop-product-modal-close:hover{
  background:#e30511;
  color:#fff;
}

.fcshop-modal-product-layout{
  display:grid;
  grid-template-columns:minmax(240px, .85fr) minmax(320px, 1.15fr);
  gap:0;
  align-items:stretch;
}

.fcshop-modal-product-media-wrap{
  position:relative;
}

.fcshop-modal-product-media{
  overflow:hidden;
  background:#f8f8f8;
  border-top-left-radius:16px;
  border-bottom-left-radius:16px;
}

.fcshop-modal-product-image{
  width:100%;
  height:100%;
  max-height:none;
  min-height:100%;
  object-fit:cover;
  display:block;
}

.fcshop-modal-product-content{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding:24px;
}

.fcshop-modal-product-title{
  margin:0;
  color:var(--fcshop-text);
  font-size:28px;
  line-height:1.08;
}

.fcshop-modal-product-description{
  color:var(--fcshop-text);
  font-size:14px;
  line-height:1.6;
}

.fcshop-modal-product-price-box{
  max-width:320px;
}

@media (max-width: 1100px){
  .fcshop-single-grid{
    grid-template-columns:1fr;
  }

  .fcshop-single-image{
    max-height:560px;
  }
}

@media (max-width: 980px){
  .fcshop-grid.fcshop-grid-cols-4,
  .fcshop-grid.fcshop-grid-cols-3{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .fcshop-cart-row{
    grid-template-columns:1fr;
    gap:10px;
  }

  .fcshop-cart-col-remove{
    justify-content:flex-start;
  }

  .fcshop-modal-product-layout{
    grid-template-columns:1fr;
  }

  .fcshop-modal-product-media{
    border-top-right-radius:16px;
    border-bottom-left-radius:0;
  }

  .fcshop-product-modal-close{
    top:12px;
    right:12px;
    left:auto;
  }

  .fcshop-checkout-combined-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 720px){
  .fcshop-checkout-fields-2 > .fcshop-checkout-field{
    width:100%;
  }

  .fcshop-checkout-summary-item{
    grid-template-columns:1fr;
    gap:6px;
  }

  .fcshop-checkout-summary-item-total{
    white-space:normal;
  }
}

@media (max-width: 640px){
  .fcshop-grid.fcshop-grid-cols-4,
  .fcshop-grid.fcshop-grid-cols-3,
  .fcshop-grid.fcshop-grid-cols-2{
    grid-template-columns:1fr;
  }

  .fcshop-card-title{
    font-size:17px;
  }

  .fcshop-card-price{
    font-size:20px;
  }

  .fcshop-single-title{
    font-size:24px;
  }

  .fcshop-single-price-row .fcshop-card-price{
    font-size:22px;
  }

  .fcshop-single-content,
  .fcshop-cart-box,
  .fcshop-checkout-card{
    padding:16px;
  }

  .fcshop-single-image{
    min-height:260px;
    max-height:400px;
  }

  .fcshop-single-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .fcshop-single-actions .fcshop-btn,
  .fcshop-single-actions .fcshop-add-to-cart-form,
  .fcshop-single-actions .fcshop-add-to-cart-form .fcshop-btn{
    width:100%;
    min-width:0;
  }

  .fcshop-cart-actions{
    flex-direction:column;
  }

  .fcshop-cart-actions .fcshop-btn{
    width:100%;
  }

  .fcshop-cart-summary-row{
    font-size:14px;
  }

  .fcshop-cart-summary-row strong{
    font-size:17px;
  }

  .fcshop-checkout-title{
    font-size:13px;
  }

  .fcshop-checkout-title-summary{
    font-size:15px;
  }

  .fcshop-checkout-total-row-grand strong{
    font-size:18px;
  }

  .fcshop-checkout-submit .fcshop-btn{
    width:100%;
  }

  .fcshop-product-modal{
    width:min(100%, 980px);
  }

  .fcshop-modal-product-title{
    font-size:22px;
  }
}

  /* =========================================================
   ORDER SUCCESS PAGE
   ========================================================= */

.fcshop-success-page{
  width:100%;
}

.fcshop-success-card{
  max-width:820px;
  margin:0 auto;
  padding:28px 24px;
  border:1px solid var(--fcshop-border);
  border-radius:18px;
  background:linear-gradient(180deg,#eeeeee 0%, #ffffff 100%);
  box-shadow:var(--fcshop-shadow);
  text-align:center;
}

.fcshop-success-icon-wrap{
  display:flex;
  justify-content:center;
  margin-bottom:14px;
}

.fcshop-success-icon{
  width:68px;
  height:68px;
  border-radius:999px;
  border:2px solid #e30511;
  background:#fff;
  color:#e30511;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  font-weight:700;
  line-height:1;
}

.fcshop-success-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 12px;
  border:1px solid #e30511;
  border-radius:999px;
  background:#fff;
  color:#e30511;
  font-size:12px;
  font-weight:700;
  line-height:1;
  margin-bottom:16px;
}

.fcshop-success-title{
  margin:0 0 16px 0;
  color:var(--fcshop-text);
  font-size:30px;
  line-height:1.12;
}

.fcshop-success-text{
  color:var(--fcshop-text);
  font-size:15px;
  line-height:1.7;
}

.fcshop-success-text p{
  margin:0 0 14px 0;
}

.fcshop-success-order-box{
  margin:18px auto;
  max-width:360px;
  padding:16px 18px;
  border:1px solid #e5e7eb;
  border-radius:14px;
  background:#fff;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.fcshop-success-order-label{
  color:var(--fcshop-muted);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.fcshop-success-order-number{
  color:#e30511;
  font-size:22px;
  font-weight:800;
  line-height:1.1;
}

.fcshop-success-info{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
  text-align:left;
}

.fcshop-success-info-item{
  padding:16px;
  border:1px solid #e5e7eb;
  border-radius:14px;
  background:#fff;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.fcshop-success-info-item strong{
  color:var(--fcshop-text);
  font-size:14px;
}

.fcshop-success-info-item span{
  color:var(--fcshop-muted);
  font-size:13px;
  line-height:1.55;
}

.fcshop-success-actions{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:22px;
}

@media (max-width: 760px){
  .fcshop-success-info{
    grid-template-columns:1fr;
  }

  .fcshop-success-title{
    font-size:24px;
  }

  .fcshop-success-card{
    padding:20px 16px;
  }
}