/* ───── Product rows ───── */
#product-list {

}
:focus-visible {
	outline: none;
}
.product-row {
	
	input::-webkit-outer-spin-button,
	input::-webkit-inner-spin-button {
	  -webkit-appearance: none;
	  margin: 0;
	}

	input[type=number] {
	  -moz-appearance: textfield;
	}	
	.title {
		margin-top: 15px;
		font-weight: 900;
		word-spacing: -2px;
	}
	
	

    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadowbox);

.header {
    display: flex;
    justify-content: space-between;
}  
  
.price {
    font-weight: 900;
    font-size: 1rem;
}
}

/* default: each “cell” takes full width (mobile) */
.product-row .cell.thumb {
    max-width: 120px;
	
	img {
		border-radius: 5px;
	}
	
}
.left-actions {
    display: flex;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
}
.product-row .cell.qty-cell {
    display: flex;
	width: 42px;
}
.product-row .cell.qty-cell input {
    width: 100%;
    background: #363f51;
    border: none;
    color: #fff;
    padding: 0 10px;
}
.product-row .cell.action {
    max-width: 100px;
    display: flex;
}



.add-to-cart-btn {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
	font-family: inherit;
    background: var(--primary-color);
	color: #fff;
	border: 0;
	padding: 10px;
	cursor: pointer;
	transition: 0.2s all;
	
	&:hover {
		background: var(--primary-color-darker);
	}
}
/* Coupon + summary */
.cart-bg {
    background: #f0f0f0;
    padding: 10px;
    box-shadow: var(--shadowbox);
    border-radius: 5px;
}

#coupon-section { margin: 20px 0; }
#cart-summary   {  }

/* Payment list */
.payment_methods li { list-style: none; margin: 6px 0; }
.captcha-wrap label { margin-right:6px; font-weight:600; }

/* Tiny inline spinner */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #bbb;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 4px;           /* bit of spacing before the total */
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── Cart preview ─── */
#cart-preview {

}
.preview-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.preview-item img { width: 40px; height: 40px; margin-left: 6px; display:none;}
.preview-item .name { flex: 1 1 auto; text-align: right; }
.preview-item .qty  { 
    width: 50px;
    text-align: center;
    background: #ffffff26;
    border-radius: 5px;
	margin-left: 4px;
}
.preview-item .line { width: 90px; }
/* Remove-line button inside preview */
.preview-item .remove-line {
  margin-right: 6px;
  cursor: pointer;
  color: #c00;
  font-weight: bold;
  user-select: none;
}



.btn-small {
  padding: 6px 12px;
  border: 1px solid #888;
  background: #f7f7f7;
  cursor: pointer;
  margin-right: 8px;
}
@media (min-width: 640px) {
    .uk-offcanvas-bar {
        width: 400px;
        padding: 30px 30px;
        font-size: smaller;
    }
}

#cart-tools {
	
	button {
		background: #fff;
        border-radius: 5px;
		
		&:hover {
			color: var(--primary-color);
		}
	}

}
.uk-notification-message {
    background: var(--primary-color) !important;
    color: #fff !important;
}