.fruitful-form-wrapper {
    display: flex;
    flex-direction: column;
    max-width: none !important;
    width: 100% !important;
}

.step1-container,
.step2-container {
    max-width: 135rem !important;
    width: calc(100% - 8rem) !important;
    margin-left: auto;
    margin-right: auto;
}


.form-steps {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
    max-width: 135rem !important;
    width: calc(100% - 8rem) !important;
}


.step-container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    background: #fff;
    margin-right: 70px;
}
.step-container:last-of-type {
    margin-right: 0;
}

.step-label {
    font-size: 1.6rem;
    font-weight: 600;
}

.step-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-weight: bold;
}

.step-indicator.active {
    background: #00442A;
    color: #fff;
}

.step-indicator.active + .step-label {
    color: #00442A;
    font-weight: 600;
}

.step-indicator.active::before {
    background: #000;
}

.step-indicator::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: #eee;
    top: calc(50% - 1px);
    left: -60px;
}

.step-container:first-child .step-indicator::before {
    display: none;
}

.form-step {
    display: block;
}

.form-step.hidden {
    display: none;
}

.form-field {
    margin-bottom: 25px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-field input,
.form-field select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin: 0;
    max-width: 100%;
    padding: 1.5rem 1.8rem;
}

.form-field-horizontal-wrapper {
    display: flex;
    justify-content: space-between;
}

.form-field-horizontal-wrapper .form-field {
    width: 48%;
}


/* Buttons */
button.next-step,
.get-quote-button {
    background-color: #00A3FF;
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='16' viewBox='0 0 9 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 14L7.5 8L1.5 2' stroke='white' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E%0A");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center right 20px;
    padding-right: 5rem !important;
}

/* Login */
.login-instead {
    margin-top: 2rem;
}

/* Make postcode and staff dropdown same width */

.form-field input::placeholder {
    color: #999;
}

.form-step h2 {
    color: #00442A;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}

.form-description {
    color: #00442A;
    margin-bottom: 30px;
    font-size: 16px;
}

.delivery-frequency > label {
    margin-bottom: 15px;
}

.delivery-frequency .radio-group {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.delivery-frequency .radio-option {
    flex: 1;
}

.delivery-frequency .radio-option label {
    display: block;
    padding: 1.5rem;
    background-color: #E8F5EE;
    color: #00442A;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    position: relative;
}

.delivery-frequency .radio-option label:hover {
    border-color: #00442A;
}

.delivery-frequency .radio-option input[type="radio"]:checked + label {
    border-color: #00442A;
}

.delivery-frequency .radio-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.delivery-frequency input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.delivery-frequency .radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #00442A;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.delivery-frequency .radio-circle::after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00442A;
    opacity: 0;
    transition: opacity 0.2s ease;
    position: absolute;
}

.delivery-frequency .radio-option input[type="radio"]:checked + label .radio-circle::after {
    opacity: 1;
}

.delivery-frequency .radio-label {
    color: #00442A;
    font-weight: bold;
}

.delivery-frequency .most-popular {
    position: absolute;
    top: -10px;
    left: 12px;
    background-color: #00442A;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}



/* Fruit selection styling */
.fruit-options {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.fruit-box {
    width: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.fruit-box-inner {
    background: #F4F8B8;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    text-align: center;
}

.fruit-box:hover .fruit-box-inner {
    border-color: #00442A;
}

.fruit-box:hover {
    transform: translateY(-2px);
}

.fruit-box.selected {
    border-color: #00442A;
}

.fruit-box * {
    pointer-events: none;
}

.fruit-box h3 {
    margin: 1.5rem 0 !important;
}

.selection-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.6rem;
}

.selection-indicator:before {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 1.09998L6.5 11.9' stroke='%2300442A' stroke-width='2' stroke-linecap='square'/%3E%3Cpath d='M1.09961 6.5L11.8996 6.5' stroke='%2300442A' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E%0A");
}

.selected .selection-indicator:before {
    background-color: #07CA7B;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='13' viewBox='0 0 18 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 2L6.375 11L2 6.90909' stroke='%2300442A' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E%0A");
}




.fruit-box img {
    width: 100%;
    height: auto;
    margin: 30px 0 15px;
}

.mix-label {
    margin: 25px 0;
}

.variety-tag {
    display: inline-block;
    background: #00442A;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    margin-bottom: 10px;
}



.fruit-description {
    color: #666;
    font-size: 13px;
}

.fruit-contents {
    margin-top: 30px;
}

.content-section {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.content-section:last-of-type {
    border: none;
}

.content-label {
    font-size: 12px;
    color: #00442A;
    margin-bottom: 4px;
    display: block;
}

.fruits {
    font-size: 13px;
    line-height: 1.4;
    color: #00442A;
    word-wrap: break-word;
}

/* Navigation buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}






/* Add these new styles for step 2 layout */
.step2-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.fruit-selection-side {
    width: 66%;
}

.quote-form-side {
    width: 33%
}



/* Update form fields for the quote form */
.quote-form-side .form-field {
    margin-bottom: 15px;
}

.quote-form-side input,
.quote-form-side textarea {
    width: 100%;
    box-sizing: border-box;
}

/* Checkbox styling */
.checkbox-field {
    display: flex;
    align-items: center;
    gap: 8px;
}



.checkbox-field label {
    margin: 0;
    font-size: 14px;
}

.privacy-link {
    color: #00442A;
    text-decoration: underline;
}



/* Hide step navigation on step 2 if using the get quote button */
.step2-container + .form-navigation {
    display: none;
}

/* Add these styles for step 1 layout */
.step1-container {
    display: flex;
    align-items: flex-start;
}

.information-form-side {
    width: 33%;
}

.fruit-baskets-side {
    width: 77%;
    position: relative;
}

.fruit-baskets-side img {
    width: 100%;
    height: auto;
    display: block;
}

.price-tag {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 30px 20px;
    max-width: 370px;
    text-align: center;
    background-image: url("data:image/svg+xml,%3Csvg width='459' height='125' viewBox='0 0 459 125' fill='none' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M458.166 37.302V47.66V101.529C458.166 101.529 458.165 111.542 449.397 116.377C440.628 121.211 433.321 121.901 433.321 121.901C405.853 122.952 401.454 123.497 379.978 124.318C354.6 125.289 328.403 123.077 295.944 124.318H170.259C109.584 126.254 68.6883 123.628 43.8436 121.901C18.9989 120.175 12.4224 118.794 8.03799 113.614C3.65363 108.435 4.38437 90.8249 4.38437 90.8249L3.05176e-05 51.8069V26.6006C3.05176e-05 26.6006 3.65363 20.3853 8.03799 15.2059C12.4224 10.0266 27.0369 6.91894 27.0369 6.91894L49.6894 2.43014C49.6894 2.43014 66.8886 0.192311 78.1877 0.0130996C92.0937 -0.207458 113.45 2.43014 113.45 2.43014C113.45 2.43014 140.272 4.84719 158.54 4.84719H199.266H268.177H314.171H379.978C379.978 4.84719 435.794 2.43014 449.397 12.0983C463 21.7665 458.166 37.302 458.166 37.302Z' fill='%23F4F8B8'/%3E%3C/svg%3E%0A");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}


.price-tag h3 {
    margin: 0 0 10px 0 !important;
}

.price-tag p {
    margin: 0;
}

/* Form Navigation Header */
.form-navigation-header {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    max-width: 135rem !important;
    width: calc(100% - 8rem) !important;
}

.navigation-controls .prev-step {
    color: #00442A;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.6rem;
    padding: 10px 40px 10px 0;

}

.navigation-controls .prev-step:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='16' viewBox='0 0 9 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 2L1.5 8L7.5 14' stroke='%2300442A' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    width: 10px;
    height: 15px;
    background-size: contain;
    margin-right: 5px;
}

.navigation-controls .prev-step:hover {
    text-decoration: underline;
}

.navigation-controls .arrow {
    font-size: 18px;
    line-height: 1;
}

.step-info {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    color: #00442A;
}

.step-info .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-info span {
    color: #00442A;
}

.step-info strong {
    color: #00442A;
}

.step-info .edit-step {
    color: #00442A;
    text-decoration: none;
    font-weight: 500;
    margin-left: 16px;
}

.step-info .edit-step:hover {
    text-decoration: underline;
}

.step-info-summary {
    background: #f5f5f5;
    border-radius: 6px;
    padding: 12px 20px;
    margin: -20px 0 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
}

.step-info-summary .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-info-summary .info-label {
    color: #00442A;
}

.step-info-summary .info-value {
    color: #00442A;
}

.step-info-summary .edit-step {
    margin-left: auto;
    color: #00442A;
    text-decoration: none;
    font-weight: 500;
}

.step-info-summary .edit-step:hover {
    text-decoration: underline;
}

.quote-total {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 0;
}

.quote-total-more-total-wrapper {
    width: 60%;
    display: flex;
    justify-content: space-between;
}

.quote-total-buttons {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 30px;
    width: 60%;
    justify-content: space-between;
    border-top: 1px solid #dddddd;
    padding-top: 2rem;
    margin-top: 2rem;
}

.quote-total-price-wrapper {
    text-align: right;
}

p#quoteTotal {
    margin-bottom: 0;
}

p#quoteTotalDisclaimer {
    margin: 0;
}

.trial-button {
    background-color: #00A3FF;
}

.quote-email-button {
    white-space: nowrap;
}

.quote-email-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

input[type="email"].quote-email-input {
    width: auto;
    border-radius: 100px;
    border: 1px solid #ddd;
}


.quote-email-input:focus {
    border-color: #00442A;
    outline: none;
}

.quote-email-input::placeholder {
    color: #999;
}

.email-validation-message {
    font-size: 14px;
    margin-top: 5px;
    min-height: 20px;
}

.email-validation-message.checking {
    color: #00442A;
}

.email-validation-message.valid {
    color: #28a745;
}

.email-validation-message.invalid {
    color: #dc3545;
}

.email-validation-message.error {
    color: #856404;
}

/* Promo Code Styles */
.promo-code-section {
    margin-top: 2rem;
    width: 60%;
    margin-left: auto;
    text-align: right;
}

a#toggle-promo-code {
    margin-bottom: 2rem;
    display: block;
    cursor: pointer;
}

div#promo-code-form-wrapper {
    display: none;
}

.promo-code-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.promo-code-input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 100px !important;
    font-size: 14px;
    
}

.promo-code-button {}

.promo-code-button:hover {}

.promo-code-message {
    font-size: 14px;
    margin-top: 0.5rem;
}

.promo-code-message.error {
    color: #dc3545;
}

.promo-code-message.success {
    color: #07CA7B;
}

/* Price breakdown styles */
.price-breakdown {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-breakdown .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.8em;
}

.price-breakdown .discounted-price {
    color: #07CA7B;
    font-weight: bold;
}

/* Postcode validation styles moved to form-step.css */

/* Button styles moved to form-step.css */




/* Responsive design */


/* Desktop small */
@media only screen and (max-width: 1200px) {
    
    .information-form-side {
        width: 50%;
    }

    .fruit-baskets-side {
        width: 50%;
    }

    .step1-container {
        gap: 4rem;
            align-items: center;
    }
    .price-tag {
    position: relative;
    } 
    

}

@media only screen and (max-width: 1100px) {
    
.quote-total-buttons {
        width: 100%;
    }

    .quote-total-more-total-wrapper {
        width: 100%;
    }
    

    
}


@media only screen and (max-width: 1000px) {


.step2-container {
    flex-direction: column;
}

.fruit-selection-side {
    width: 100%;
}

.quote-form-side {
    width: 100%;
}
    


}



@media only screen and (max-width: 900px) {
/* Table row styling */
  tbody#quoteTableBody tr {
    display: flex;
    flex-wrap: wrap;
    max-width: none;
  }
  
  /* First column - full width */
  tbody#quoteTableBody tr td:first-child {
    width: 100%;
    display: block;
    border-bottom: none;
  }
  
  /* Other columns - side by side */
  tbody#quoteTableBody tr td:not(:first-child) {
        width: 20%;
              padding: 1.75rem 0;
    }

#quoteTable thead {
    display: block;
    position: relative;
}

#quoteTable thead tr {
    display: flex;
}
#quoteTable th:first-child {
    display: none;
}
#quoteTable th {
    width: 100% !important;
}


}




@media only screen and (max-width: 800px) {
    .step1-container {
        flex-direction: column;
    }

    .information-form-side {
        width: 100%;
    }

    .fruit-baskets-side {
        width: 100%;
    }
    
    .step1-container {
        flex-direction: column;
    }

    .information-form-side {
        width: 100%;
    }

    .fruit-baskets-side {
        width: 100%;
    }

    .step-container {
        flex-direction: column;
        align-items: flex-start;
        margin-right: 130px;
        gap: 5px;
    }

    .step-indicator::before {
        top: 1.5rem;
        width: 100px;
        left: -115px;
    }

    span.step-label {
        width: 3rem;
        white-space: nowrap;
    }
    
    
    .form-steps {
        width: calc(100% - 4rem) !important;
    }
    .step1-container, .step2-container {
        width: calc(100% - 4rem) !important;  
    }
    .form-navigation-header {
        width: calc(100% - 4rem) !important;  
    }
    
    .calculator-container > * {
        padding: 2rem !important;
    }
    
    .step3-marketing-section {
        padding: 6rem 2rem !important;
    }
    
   
    
}

@media only screen and (max-width: 700px) { 
    
  .quote-total-buttons {
        flex-direction: column;
        gap: 2rem;
    }

    .quote-total-more-total-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .promo-code-section {
        width: 100%;
        text-align: center;
    }

    input[type="email"].quote-email-input {
        flex: 1;
    }

    .quote-email-group {
        width: 100%;
    }
    .quote-total-price-wrapper {
        text-align: center;
    }
    
    .trial-button {
        width: 100%;
    }

}


@media only screen and (max-width: 600px) { 

.form-navigation-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
}

    
.fruit-options {
    flex-direction: column;
    color: #00442A;
}

.fruit-contents {
    display: none;
}

.fruit-box {
    width: 100%;
}
    
    

    
}




