#scfw-floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--bs-primary);
    color: white;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 1050;
    transition: background 0.3s ease;
}
#scfw-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
	transform: translateX(100%);
    color: var(--bs-body-color);
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease-in-out;
    z-index: 1000 !important;
    display: flex;
    flex-direction: column;
    padding: 28px 20px 0 20px;
    overflow-y: auto;
}
#scfw-sidebar.open {
    transform: translateX(0);
}
#scfw-sidebar h2 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding: 10px;
    background: var(--bs-body-bg);
    border-radius: 5px;
}
#scfw-items li {
    width: 100%;
    display: flex;
    position: relative;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid #dee2e6;
    padding: 15px 0;
	margin: 0px;
}
#scfw-items {
	margin: 0px;
}
#scfw-items img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}
#scfw-items .remove-item {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    color: #dc3545;
    font-size: 20px;
    font-weight: bold;
    padding: 0;
    line-height: 1;
    border: none;
    cursor: pointer;
}

.details-div{
	width: 100%;
}
.qty-controls .qty-btn,
.qty-controls .qty-input {
  flex: 0 0 auto;
}

.qty-controls .flex {
  flex: 1 1 auto; /* This spacer takes up all available space */
}

.item-total {
  flex: 0 0 auto;
  margin-left: auto;
  font-weight: bold;
  margin-right: 15px;
}

.qty-controls {
    display: flex;
    align-items: center;
	width: 100%;
}
.qty-price-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}
.qty-btn {
    font-size: 12px;
    padding-left:5px;
	padding-right:5px;
	padding-bottom:1px;
	padding-top:1px;
    height: 28px;
}
.qty-input {
	width: 28px;
    height: 28px;
    font-size: 12px;
    padding: 0px !important;
    text-align: center;
	border-bottom: 1px solid #ccc;
	-moz-appearance: textfield; /* Firefox */
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.coupon-area {
    margin-top: 1.5rem;
}
.coupon-area input[type="text"] {
    width: 70%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.cart-footer {
    position: sticky;
    bottom: 0;
    background: inherit;
    padding: 15px 0;
    margin-top: auto;
    text-align: center;
}
.cart-footer .cart-total {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}
.checkout-button {
    width: 100%;
    padding: 15px;
    font-weight: bold;
}


#scfw-sidebar .qty-controls .qty-btn {
  font-size: 12px !important;
  padding: 4px 8px !important;
  height: 28px !important;
  border: 1px solid #ccc;
  background-color: #f8f9fa;
  cursor: pointer;
}

/* === Vanilla CSS Replacement for Bootstrap === */

.sc-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
}
.sc-btn-primary {
  background-color: #007bff;
  color: #fff;
}
.sc-btn-secondary {
  background-color: #6c757d;
  color: #fff;
}
.sc-full-width {
  width: 100%;
}
.sc-flex {
  display: flex;
}
.sc-flex-column {
  flex-direction: column;
}
.sc-gap-2 {
  gap: 0.5rem;
}
.sc-gap-3 {
  gap: 1rem;
}
.sc-mt-3 {
  margin-top: 1rem;
}
.sc-mb-3 {
  margin-bottom: 1rem;
}
.sc-mt-4 {
  margin-top: 1.5rem;
}
.sc-mb-2 {
  margin-bottom: 0.5rem;
}
.sc-text-muted {
  color: #6c757d;
}
.sc-text-dark {
  color: #212529;
}
.sc-no-decoration {
  text-decoration: none;
}
.sc-bold {
  font-weight: 700;
}
.sc-semibold {
  font-weight: 600;
}
.sc-progress {
  background-color: #e9ecef;
  border-radius: 0.25rem;
  height: 8px;
  overflow: hidden;
}
.sc-progress-bar {
  height: 100%;
  background-color: #28a745;
}

#scfw-sidebar-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
}

#scfw-sidebar .sidebar-footer {
    flex-shrink: 0;
    padding: 15px 20px;
    background: inherit;
}
.recommended-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    margin-top: 15px;
}
.recommended-scroll::-webkit-scrollbar {
    display: none;
}
.recommended-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 6px;
    padding: 10px;
    min-width: 250px;
    gap: 10px;
}
.recommended-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 5px;
}
.recommended-item .info {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
}
#scfw-sidebar,
#scfw-sidebar * {
  font-family: inherit !important;
  font-size: inherit;
  line-height: inherit;
}
.minus{
	border-radius: 5px 0px 0px 5px;
}
.plus{
	border-radius: 0px 5px 5px 0px;
}