:root {

  --color-white: #ffffff;
  --color-bg: #ffffff;


  --color-accent-orange: #F59943;
  --color-accent-blue: #416AB0;


  --color-text: #333333;
  --color-text-light: #666666;


  --color-border: #e0e0e0;
  --color-bg-light: #f9f9f9;
}

input.vezel-addon-option {
    margin-top: 10px;
    margin-bottom: 10px;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

a {
  color: var(--color-accent-blue);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover {
  color: var(--color-accent-orange);
}

.btn,
button,
input[type="submit"] {
  background: var(--color-accent-orange);
  color: var(--color-white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background .2s ease;
}
.btn:hover,
button:hover,
input[type="submit"]:hover {
  background: var(--color-accent-blue);
}


h1, h2, h3, h4, h5, h6 {
  color: var(--color-accent-blue);
  font-weight: 700;
  margin-bottom: .5em;
}


.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}


.highlight {
  background: var(--color-accent-blue);
  color: var(--color-white);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.highlight.orange {
  background: var(--color-accent-orange);
}

/* Base booking form wrapper */
.vezel-booking-form {
  width:100%;	
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  color: #333;
  max-width: 600px;
  position: relative;
}

/* Labels */
.vezel-booking-form label {
  font-weight: 600;
  color: #416AB0;
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

/* Inputs & selects */
.vezel-booking-form input[type="text"],
.vezel-booking-form input[type="number"],
.vezel-booking-form select {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  transition: all 0.2s ease;
}

.vezel-booking-form input[type="text"]:focus,
.vezel-booking-form input[type="number"]:focus,
.vezel-booking-form select:focus {
  border-color: #416AB0;
  box-shadow: 0 0 0 3px rgba(65,106,176,0.15);
  outline: none;
}

/* Dropdown arrow */
.vezel-booking-form select {
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23416AB0' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

/* Addons wrapper */
.vezel-booking-addons {
  margin-top: 15px;
  padding: 12px 15px;
  border: 1px dashed #F59943;
  border-radius: 10px;
  background: #fff9f5;
}

.vezel-booking-addons h4 {
  margin-bottom: 10px;
  color: #F59943;
  font-weight: 600;
}

/* Addon options */
.vezel-addon label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  cursor: pointer;
}

/* Checkbox / radio */
.vezel-booking-form input[type="checkbox"],
.vezel-booking-form input[type="radio"] {
  accent-color: #416AB0;
  transform: scale(1.1);
}

/* Total price */
.vezel-total-price {
  font-weight: 700;
  font-size: 18px;
  color: #416AB0;
}

/* Buttons */
.vezel-booking-form .button,
.vezel-booking-form button {
  background: #F59943;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vezel-booking-form .button:hover,
.vezel-booking-form button:hover {
  background: #e58330;
}


.single-product .product-type-vezel_booking form.cart .quantity {
  display: none !important;
}
.vezel-loader {
  position: absolute;
  top: 50%;
  left: 45%;
  background: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  display: none; 
}

.vezel-loader .spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #416AB0; 
  border-radius: 50%;
  width: 30px; height: 30px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
form p {
    text-align: left;
}
.single-product .product-type-vezel_booking form.cart button.single_add_to_cart_button {
  width: 100% !important;
  margin-top:20px!important;
  display: block;
  text-align: center;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  background-color: #416AB0; 
  color: #fff;
  transition: background 0.2s ease;
}
.woocommerce div.product form.cart button.single_add_to_cart_button, .woocommerce div.product form.cart button[name=add-to-cart] {
  margin-top:20px!important;
  width: 100% !important;
  display: block;
  text-align: center;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  background-color: #416AB0; 
  color: #fff;
  transition: background 0.2s ease;
}
.woocommerce div.product form.cart button.single_add_to_cart_button, .woocommerce div.product form.cart button[name=add-to-cart]:hover {
  background-color: #F59943; 
}

.wp-block-woocommerce-add-to-cart-form .variations_button, .wp-block-woocommerce-add-to-cart-form form.cart {
    -ms-grid-columns: min-content auto auto;
    display: block;
    grid-auto-flow: column;
    grid-template-columns: min-content auto auto;
}

.vezel-addon-info {
    display: inline-block;
    margin-left: 6px;
    cursor: pointer;
    color: #0073aa;
    font-size: 14px;
}

.vezel-addon-info:hover {
    color: #416AB0;
}
.vezel-addon-desc {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    padding: 0 10px;
    background: #f9f9f9;
    border-left: 3px solid #416AB0;
    font-size: 13px;
    color: #333;
    transition: all 0.3s ease;
}

.vezel-addon-desc.open {
    max-height: 400px; 
    opacity: 1;
    margin: 6px 0 12px;
    padding: 8px 10px;
}
.vezel-addon-option-wrap {
	display: flex;
    text-align: left;
    gap: 10px;	
}