:root {
  --primary-green: #7cb342;
  --dark-green: #558b2f;
  --light-gray: #f5f5f5;
  --border-gray: #e0e0e0;
  --text-dark: #2c2c2c;
  --text-muted: #757575;
  --success-green: #81c784;
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --radius: 8px;
  --radius-lg: 12px;
}
.config-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
}

.rating {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 14px;
  color: var(--text-muted);
}

.rating-stars {
  color: var(--primary-green);
  font-weight: 600;
}

.sku {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

h1 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
  line-height: 1.2;
}

/* Configuration Section */
.config-section {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--light-gray);
}

.config-section:last-of-type {
  border-bottom: none;
  margin-bottom: var(--spacing-lg);
}

.section-title {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.section-icon {
  font-size: 18px;
}

.info-icon {
  cursor: help;
  color: #f06292;
}

.section-description {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
}

/* Dropdown Styling */
.dropdown-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.dropdown-wrapper {
  position: relative;
}

.dropdown-wrapper select {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  border: 2px solid var(--border-gray);
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23757575' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right var(--spacing-sm) center;
  background-size: 20px;
  padding-right: 36px;
}

.dropdown-wrapper select:hover {
  border-color: var(--primary-green);
}

.dropdown-wrapper select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
}

/* Checkbox Section */
.checkbox-group {
display: flex;
align-items: center;
min-height:75px;
gap: var(--spacing-md);
padding: var(--spacing-md);
background: #FAFAFA;
border-radius: var(--radius-lg);
cursor: pointer;
transition: all 0.3s ease;
}

.checkbox-group:hover {
background: #f0f0f0;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: white;
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 2px 2px 11px -8px #0000007a;
  transition: all 0.3s ease;
}

.checkbox-wrapper svg {
	width:18px;
  height:18px;
}

.checkbox-group input[type="checkbox"] {
  display: none;
}

.checkbox-group input[type="checkbox"]:checked + .checkbox-wrapper {
  background: #86BC25;;
  border-color: #86BC25;;
}  

.checkbox-group input[type="checkbox"]:checked + .checkbox-wrapper::after {
  opacity: 1;
}

.checkbox-label {
  flex: 1;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
}

/* Button Grid for Gravel Options */
.button-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.option-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg);
  border: 2px solid var(--border-gray);
  border-radius: var(--radius-lg);
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.option-button:hover {
  border-color: var(--primary-green);
  box-shadow: 0 4px 12px rgba(124, 179, 66, 0.15);
  transform: translateY(-2px);
}

.option-image {
  width: 80px;
  height: 80px;
  background: var(--light-gray);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.option-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.option-price {
  font-size: 12px;
  color: var(--text-muted);
}

/* Installation Section */
.installation-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--spacing-lg);
  align-items: center;
}

.installation-text {
  flex: 1;
}

.installation-image {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-lg);
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
  flex-shrink: 0;
}

/* Price Section */
.price-section {
  display: flex;
  align-items: center;
  justify-content: space-between; 
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom:0;
  font-size: 14px;
  gap:10px;
}

.price-row:last-child {
  margin-bottom: 0;
  padding-top:0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.price-row div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.price-label {
  color: #7E7E7E;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

.price-value {
  color: #161616;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}

.tax-note {
  color: #7E7E7E;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

/* CTA Button */
.cta-button {
  width: 100%;
  padding: 0;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 6px;
	background: #86BC25;
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}
.cta-button__loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite; /* ← Rotating animation */
}
.cta-button:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(124, 179, 66, 0.25);
}

.cta-button:active {
  transform: translateY(0);
}
.offerte-button {
	width: 100%;
  padding: 0;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 6px;
	background: #fff;
  border:1px solid #E3E3E3;
  color: #171717;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}
.offerte-button:hover {
  background:#ededed;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgb(145 145 145 / 25%);
}

.offerte-button:active {
  transform: translateY(0);
}
.sqm-input-wrapper {
position:relative;
width:150px;
display: flex;    
}
.sqm-input-wrapper em {
position: absolute;
right: 0px;
top: 0px;
height: 100%;
background: #d60956;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 10px;
border-radius: 0 8px 8px 0;
color: #fff;
font-weight: bold;
font-size: 12px;
}
.checkbox-group figure {
margin:0px;
}
.checkbox-group figure img {
width:41px;
height:41px;
border-radius: 5px;
border: 1px solid #DFE6E2;
object-fit:contain;
mix-blend-mode: darken;
}
#config-main-form {
  border-radius: 15px;
  background: #FBFBFB;
  display:flex;
  flex-direction:column;
  gap:20px;
  padding:24px;
}
.config-usp {
	display:flex;
  flex-direction:column;
  gap:6px;
  background:#fff;
  padding:20px 15px;
  border-radius:6px;
  margin-bottom:0px;
}
.config-usp li {
	display:flex;
  align-items:center;
  gap:8px;
  color: #161616;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.config-usp li svg {
	width:15px;
}
.product-content .images {
	height: 100%;
  position: sticky;
  top: 170px;
}
  /* Responsive */
@media (max-width: 991px) {
	.product-content .images {
  	position:initial;
  }
}
@media (max-width: 600px) {
  .container {
      padding: var(--spacing-md);
  }

  h1 {
      font-size: 24px;
  }

  .dropdown-row {
      grid-template-columns: 1fr;
  }

  .button-grid {
      grid-template-columns: 1fr;
  }

  .installation-section {
      grid-template-columns: 1fr;
  }

  .installation-image {
      order: -1;
  }
  .price-section {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
}