/*
 * Improve Equine Child Theme — floating-cart.css
 * Source: WPCode snippet 1640
 * Migrated: Phase E (2026-05-31)
 */

#ie-fc-btn{
  position:fixed;
  bottom:24px;
  right:24px;
  z-index:9998;
  width:52px;
  height:52px;
  border-radius:50%;
  background:#1a5f6e;
  color:#fff;
  border:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 16px rgba(0,0,0,0.25);
  transition:background 0.2s;
}
#ie-fc-btn:hover{background:#154f5b;}
#ie-fc-badge{
  position:absolute;
  top:-3px;
  right:-3px;
  background:#c0392b;
  color:#fff;
  font-size:10px;
  font-weight:700;
  min-width:18px;
  height:18px;
  border-radius:50%;
  display:none;
  align-items:center;
  justify-content:center;
  padding:0 3px;
  line-height:1;
}
#ie-fc-badge.active{display:flex;}
#ie-fc-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.4);
  z-index:9999;
}
#ie-fc-overlay.open{display:block;}
#ie-fc-panel{
  position:fixed;
  top:0;
  right:-380px;
  width:360px;
  height:100vh;
  background:#fff;
  z-index:10000;
  display:flex;
  flex-direction:column;
  box-shadow:-4px 0 24px rgba(0,0,0,0.15);
  transition:right 0.3s ease;
}
#ie-fc-panel.open{right:0;}
#ie-fc-head{
  background:#1a5f6e;
  color:#fff;
  padding:16px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-family:Manrope,sans-serif;
  font-size:15px;
  font-weight:600;
  flex-shrink:0;
}
#ie-fc-close{
  background:none;
  border:none;
  color:#fff;
  font-size:22px;
  cursor:pointer;
  line-height:1;
  padding:0;
}
#ie-fc-body{
  flex:1;
  overflow-y:auto;
  padding:16px;
  font-family:Manrope,sans-serif;
}
.ie-fc-item{
  display:flex;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid #eee;
  align-items:flex-start;
}
.ie-fc-item img{
  width:56px;
  height:56px;
  object-fit:cover;
  border-radius:4px;
  flex-shrink:0;
}
.ie-fc-item-name{font-size:13px;font-weight:600;color:#222;margin-bottom:3px;line-height:1.3;}
.ie-fc-item-meta{font-size:11px;color:#888;margin-bottom:3px;}
.ie-fc-item-price{font-size:13px;font-weight:700;color:#1a5f6e;}
.ie-fc-subtotal{
  display:flex;
  justify-content:space-between;
  padding:14px 0 4px;
  font-size:15px;
  font-weight:700;
  color:#222;
  font-family:Manrope,sans-serif;
}
.ie-fc-empty{
  text-align:center;
  color:#aaa;
  padding:40px 16px;
  font-size:14px;
  font-family:Manrope,sans-serif;
}
.ie-fc-loading{
  text-align:center;
  color:#aaa;
  padding:30px 16px;
  font-size:13px;
  font-family:Manrope,sans-serif;
}
#ie-fc-foot{
  padding:16px;
  border-top:1px solid #eee;
  flex-shrink:0;
}
#ie-fc-checkout{
  display:block;
  background:#1a5f6e;
  color:#fff !important;
  text-align:center;
  padding:13px;
  border-radius:4px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  font-family:Manrope,sans-serif;
  transition:background 0.2s;
}
#ie-fc-checkout:hover{background:#154f5b;}
@media(max-width:768px){
  #ie-fc-panel{
    width:100%;
    right:auto;
    left:0;
    top:auto;
    bottom:-100vh;
    height:88vh;
    border-radius:16px 16px 0 0;
    transition:bottom 0.3s ease;
    right:0;
  }
  #ie-fc-panel.open{bottom:0;}
  #ie-fc-btn{bottom:20px;right:16px;}
}
.ie-fc-item-controls{
  display:flex;
  align-items:center;
  gap:6px;
  margin-top:6px;
  flex-wrap:wrap;
}
.ie-fc-qminus,.ie-fc-qplus{
  background:#1a5f6e;
  color:#fff;
  border:none;
  width:24px;
  height:24px;
  border-radius:4px;
  font-size:16px;
  cursor:pointer;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:background 0.15s;
}
.ie-fc-qminus:hover,.ie-fc-qplus:hover{background:#154f5b;}
.ie-fc-qty{
  font-size:13px;
  font-weight:700;
  color:#222;
  min-width:20px;
  text-align:center;
}
.ie-fc-line-price{
  font-size:13px;
  font-weight:700;
  color:#1a5f6e;
  margin-left:auto;
}
.ie-fc-remove{
  background:none;
  border:none;
  color:#ccc;
  font-size:14px;
  cursor:pointer;
  padding:0 2px;
  line-height:1;
  transition:color 0.15s;
  flex-shrink:0;
}
.ie-fc-remove:hover{color:#c0392b;}
