@charset "UTF-8";

/* ────────────────────
   Skip Product Card 
   ──────────────────── */
ul.product-list {
	padding-left:0px;
}

.product-card {
  list-style: none;
  margin: 2rem 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}


.product-card-body {
  padding: 1.5rem;
}

.product-card-content {
  display: flex;
  flex-direction: column;
}

.product-card-image {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
}

.responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.product-card-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-description {
  margin-bottom: 0;
}

.product-card-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.product-price {
  font-weight: bold;
  font-size: 1.8rem;
  color: var(--charcoal);
	line-height:2em;
	padding:0 20px 0 0;
	white-space:nowrap;
}

.product-price-qualifier {
  font-size: 1rem;
  color: var(--green-dark);
	font-weight:bold;
	line-height:1.2rem;	
}


.prod-order {
padding:5px;
width:auto;
min-width:60px;
height: auto;
min-height:10px;
overflow:hidden;
font-size:1.2em;
line-height:1.2em;
text-align:center;
cursor:pointer;
background-color:var(--red-dark);
color:var(--white);
text-decoration:none;
-moz-border-radius:5px; 	-webkit-border-radius:5px; border-radius:5px;
border:0 none;
}
.prod-order:hover {
background-color:var(--green-mid);
}

@media (min-width: 980px) {
	ul.product-list {
		padding-left:25px;
	}

  .product-card-content {
    flex-direction: row;
    gap: 2rem;
  }

  .product-card-image {
    flex: 0 0 250px;
    margin-bottom: 0;
  }

  .product-card-text {
    flex: 1;
  }
}


/* ---------------------------
   Bin Product Cards
   --------------------------- */

@media(max-width:980px) {
	.bin-product-card {
		width: auto;
	}
}

/* Always position title at top */
.bin-title {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--red);
}

/* General layout stack for mobile */
.bin-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Image styles */
.bin-card-image {
	width:100%;
	text-align: center;
}
.bin-card-image img {
  max-width: 75%;
  height: auto;
  display: block;
  border-radius: 4px;
	margin:auto;
}

/* Text + form container */
.bin-card-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
}

/* Form and description block */
.bin-card-footer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
	margin-right: 0;
}
.bin-card-footer.ca-content {
	margin-right: 0;
}
/* Form above description */
form[id^="bin-form-"] {
  order: 1;
}

.purchase-option {
    float: right;
    clear: both;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    height: auto;
    min-height: 10px;
    background-image: none;
    background-position: left;
    background-repeat: no-repeat;
	margin-bottom:10px;
}
.purchase-option:hover {
    background-image: url('../assets/option-indicator.png');
}

img.option-image {
    width: auto;
    max-width: 300px;
    margin: 0 0 0 30px;
    float: right;
}

/* Desktop layout */
@media (min-width: 600px) {
  .bin-card-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    grid-template-areas:
      "title  title"
      "image  form"
      "desc   desc";
    column-gap: 2rem;
    row-gap: 1rem;
  }

  .bin-title {
		margin: 0 0 1rem 0;
		padding: 0 1rem;
		font-size: 1.5rem;
		font-weight: bold;
		color: var(--red);  
	}

  .bin-card-image {
    grid-area: image;
  }
	
	.bin-card-image img {
		max-width: 100%;
	}
	
  .bin-card-text {
    grid-area: form;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .bin-card-footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
  }

  form[id^="bin-form-"] {
    align-self: start;
    justify-self: end;
  }

  .bin-description {
  width: 100%;
  margin-top: 1.25rem;
	}
}

h3.product-subheading {
      margin:0 0 10px;
      font-size:1em;
      font-weight:600;
      color:var(--green-dark);
}

/* --------------------------
	 VOUCHERS
   --------------------------- */
.voucher-card {
	background-color: var(--cream);
	
}
.voucher-option {
	float: right;
	clear: both;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	height: auto;
	min-height: 10px;
  background:radial-gradient(circle at 30% 30%, #ffe27a, var(--yellow));
	margin:10px 10px 10px 0;
	border:1px solid var(--white);
	border-radius: 8px;
	padding:5px 15px 8px 15px;
	white-space: nowrap;
	box-shadow: 0 0 10px .2rem rgba(13,13,13,.15);
	font-size: 1.2rem;
	font-weight: 800;
}
.voucher-option:hover {
  background:radial-gradient(circle at 30% 30%, #ffe27a, var(--orange));
}

.voucher-image {
	max-width: 80%;
	margin:auto;
}
.voucher-card-image {
  width: 100%;
  max-width: 100%;
	text-align: center;
}
.voucher-card-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.voucher-description {
  margin-bottom: 0;
}

.voucher-range-desc {
	text-align:left; 
	font-size:.9rem; 
	font-weight:800; 
	padding-top:10px;
}

@media (max-width:600px) {
	.voucher-description {
		margin-bottom: 1rem;
	}
	.voucher-range-desc {
		padding-top:0px;
		padding-bottom: 10px;
	}
	.voucher-option {
		margin:5px 10px 20px 10px;
		float:none;
	}
}

/* Form lays out as a single row, but can wrap on smaller widths */
.voucher-order-form{
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem .75rem;
}

/* Label can wrap independently */
.voucher-label{
  display: inline-block;
	white-space: nowrap;
	margin-top: 10px;
}

/* € + input + button stay together as a unit */
.voucher-entry{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: nowrap;
	width: auto;
	float: right;
}

/* Keep input sensible */
.voucher-cost{
  min-width: 150px;
}

/* Slightly larger € */
.voucher-currency{
  font-size: 1.8rem;
	font-weight: 400;
  line-height: 1;
}

.voucher-order{
  margin-left: 10px;
	float: right;
}

@media (max-width: 520px){
  .voucher-entry{
		float: right;
		margin-top: 20px;
  }
	.voucher-order{
    margin-left: 20px;
  }
}
/* ---------------------------
   Customer Details Page
   --------------------------- */

div.shop-heading-container {
	width: 100%;
	padding: 0 ;
	margin-bottom: 20px;
	border-bottom: 2px solid var(--green-mid);
}

h3.shop-heading {
	color: var(--green-mid);
	font-size: 1.3rem;
	margin-top: 30px;
}

.input-group {
	display: flex;
	max-width: 100%;
	gap: 8px;
	align-items: center;
	position: relative;
}

.status-message {
	font-size: 1rem;
	color: green;
	margin-top: 4px;
}

.shop-header-grid {
	display: flex;
	align-items: center; /* vertical alignment */
	gap: 1rem; /* optional: space between logo and title */
}

.shop-content {
	margin-right:0!important;
}

.shop-logo {
	margin:15px 30px;
	width: 15vw;
	max-width: 120px;
}

@media(max-width:980px) {
	.shop-logo {
		max-width: 30vw;
		margin:15px 15px 15px 10px;
	}
}

#final-price {
	font-size: 1.2rem;
	color: var(--green-dark);
}

.final-price-value {
	font-size: 1.4rem;
	color: var(--green-dark);
}

/* FORM LAYOUT ADJUSTMENTS */
/* FLEX CONTAINER FOR ADDRESS + CONTACT SIDE-BY-SIDE */
.form-duo-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	max-width: 100%;
	align-items: flex-start;
}

/* ADDRESS BLOCK (non-editable) */
.address-block {
	flex: 1 1 300px;
	background: #f1f3f5;
	border-radius: 6px;
	padding: 16px;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #333;
	border: 1px solid #ccc;
}

.address-block div {
	margin-bottom: 4px;
}

/* HIDDEN INPUTS still accessible to JS */
.address-hidden {
	display: none;
}

/* CONTACT INPUTS */
.contact-block {
	flex: 1 1 500px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

/* TOOLTIP CURSOR */
[data-bs-toggle="tooltip"] {
	cursor: help;
}
/* FORM FLEX LAYOUT */
.form-flex-group {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	max-width: 840px;
}

/* FLEX ITEMS */
.form-flex-item {
	flex: 1 1 380px;
}

/* FULL WIDTH ROWS */
.form-flex-item.full {
	flex: 1 1 100%;
}

/* FLOATING LABEL COMPAT */
.form-floating > label {
	font-weight: 600;
	color: #444;
}

/* INPUT BASE STYLE */
input,
select {
	padding: 12px 12px;
	font-size: 1rem;
	border: 1px solid #ced4da;
	border-radius: 6px;
	background-color: #f8f9fa;
	transition: all .15s ease-in-out;
}

/* FOCUS STATE */
input:focus,
select:focus {
	background-color: #fff;
	border-color: #0d6efd;
	outline: none;
	box-shadow: 0 0 0 .2rem rgba(13,110,253,.25);
}

/* INPUT GROUP ICON */
.input-group-text {
	background: #fff;
	border-right: 0;
}

/* INVALID FEEDBACK */
.invalid-feedback {
	color: #dc3545;
	font-size: .9rem;
	margin-top: 4px;
}

/* TOOLTIP CURSOR */
[data-bs-toggle="tooltip"] {
	cursor: help;
}

/* Responsive groupings inside contact-block */
.contact-row {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.contact-half {
	flex: 1 1 100%;
}

@media (min-width: 981px) {
	.contact-half {
		flex: 1 1 calc(50% - 9px); /* Account for gap */
	}
}

/* CUSTOM ORDER FIELDS  */

.form-check-input {
	border: 2px solid var(--charcoal)!important; 
	margin:0 20px 0 0!important;
}
.form-check {
	padding:0!important;
	margin:0!important;
}
.form-check-inline {
	margin:0!important;
}





