/* Product Detail Page Styles */
.product-detail-section {
    padding: 105px 0 60px;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@media (min-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Product Image Styles */
.product-image-slider {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.main-image-container {
    width: 100%;
    margin-bottom: 20px;
}

.product-detail-image {
    overflow: hidden;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-image img {
    object-fit: cover;
    display: block;
}

.thumbnail-slider {
    display: flex;
    align-items: center; /* Vertical alignment of child items */
    gap: 10px;
    margin: 10px auto 0 auto; /* Top margin 10px, center horizontally */
    position: relative;
    width: fit-content; /* Optional: shrink-wrap content */
}


.slider-arrow {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
}

.slider-arrow:disabled {
    background: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
}

.thumbnail-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.thumbnail-track {
    display: flex;
    gap: 10px;
    transition: transform 0.3s ease;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.thumbnail-item:hover {
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: #965d32;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {

    
    .thumbnail-item {
        width: 60px;
        height: 60px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {

    
    .thumbnail-item {
        width: 50px;
        height: 50px;
    }
    
    .slider-arrow {
        width: 30px;
        height: 30px;
    }
}

/* Product Info Styles */
.product-detail-info {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.product-detail-title {
    color: #965d32; /* Make product name color different */
    font-size: 2rem;
    margin: 0 0 5px;
    font-weight: 600;
}

.product-detail-botanical {
    color: #333;
    margin-bottom: 10px;
    font-size: 16px;
}

.product-detail-botanical em {
    font-style: italic;
}

.product-detail-description {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #333;
}

/* Usage & Benefits Section */
.usage-benefits-section {
    padding-top: 8px;
    margin-bottom: 15px;
}

.usage-benefits-title {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 10px;
    padding-bottom: 3px;
}

.usage-benefits-list {
    padding-left: 0;
    margin: 0 0 15px 0;
}

/* Override CKEditor bullet styles to ensure they display properly */
.usage-benefits-list ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 5px;
}

.usage-benefits-list li {
    margin-bottom: 5px;
    line-height: 1.3;
    font-size: 0.95rem;
}

/* Quality & Shelf Life */
.quality-shelf-life {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 10px 0;
    border-bottom: 2px solid #f1ecec;
    padding: 8px 0;
}

@media (min-width: 768px) {
    .quality-shelf-life {
        grid-template-columns: 1fr 1fr;
    }
}

.quality-shelf-life-item {
    display: flex;
    align-items: baseline; /* Align text baselines */
    flex-wrap: nowrap; /* Prevent wrapping */
    white-space: nowrap; /* Prevent text wrapping */
}

.quality-shelf-life-title {
    display: inline; /* Make h4 behave like inline element */
    margin: 0; /* Remove all margins */
    padding: 0; /* Remove all padding */
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.quality-shelf-life-content {
    display: inline; /* Make span truly inline */
    font-size: 0.95rem;
    color: #333;
    margin-left: 8px; /* Add space after heading */
}

/* Product Metadata */
.product-meta-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0;
    border-bottom: 2px solid #f1ecec;
    padding: 8px 0;
}

.meta-section-title {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    padding-bottom: 3px;
}

.product-meta-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 10px;
}

.product-meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 2px;
}

.meta-value {
    font-size: 0.95rem;
    color: #333;
}

/* Certification Section */
.certification-section {
    margin: 8px 0;
}

.certification-title {
    color:#333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.certification-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.certification-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f1ecec;
    background-color: #fff;
}

.certification-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

/* Action Buttons */
.product-detail-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.product-detail-btn {
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-specification {
    background-color: #e8f4e5;
    color: var(--primary-dark);
    border: 1px solid var(--primary-light);
    flex: 2;
}

.btn-specification:hover {
    background-color: #d4ebd0;
}

.btn-sample {
    background-color: #965d32;
    color: white;
    flex: 1;
}

.btn-sample:hover {
    background-color: #7a4a20;
    color:white;
}

.product-detail-btn i {
    margin-right: 5px;
}

/* Related Products Section */
.related-products-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.section-header p {
    color: #666;
}

.related-products-container {
    position: relative;
    padding: 0 10px;
}

.related-products-slider {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
}

.related-product-card {
    min-width: 220px;
    flex: 0 0 220px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-product-card:hover {
    transform: translateY(-5px);
}

.related-product-image {
    height: 160px;
    overflow: hidden;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.related-product-info {
    padding: 12px;
    text-align: center;
}

.related-product-name {
    font-size: 1rem;
    color: var(--primary-dark);
    margin: 0;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.slider-controls .slider-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    color: #333;
    font-size: 18px;
}

.slider-arrow:hover {
    background-color: var(--primary-light);
    transform: scale(1.1);
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.slider-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-indicator.active {
    background-color: var(--primary);
}

/* CTA Section */
.cta {
    padding: 40px 0;
    background-color: #2E5D1C;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: var(--White);
    margin-bottom: 22px;
}

.cta-content p {
    color: var(--White);
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-whatsapp {
    background-color: #7ab55c;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* Enquiry Form Section Styles - IMPROVED COMPACT VERSION */
.enquiry-form-section {
    padding: 25px 0;
    background-color: #f5f8f5;
    border-top: 1px solid #e0e0e0;
}

.enquiry-form-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

/* Product Enquiry Form Styles */
.enquiry-form-section {
  padding: 25px 0;
  background-color: #f5f8f5;
  border-top: 1px solid #e0e0e0;
}

.enquiry-form-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 1200px; /* Increased width */
  margin: 0 auto;
}

.enquiry-form-header {
  padding: 10px 15px;
  background-color: #2e7d32;
  color: white;
  text-align: center;
}

.enquiry-form-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.enquiry-form-body {
  padding: 20px;
}

/* Alert styles */
.alert {
  padding: 6px 10px;
  margin: 0 0 10px 0;
  border: 1px solid transparent;
  border-radius: 4px;
  animation: fadeIn 0.5s ease;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

/* Form Grid - 4 fields per row */
.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  gap: 15px;
  row-gap: 20px;
}

/* Form field styles */
.form-field {
  margin-bottom: 0;
}

/* Column spans for different field widths */
.form-field.col-4 {
  grid-column: span 4; /* Full width */
}

.form-field.col-3 {
  grid-column: span 3; /* 3/4 width */
}

.form-field.col-2 {
  grid-column: span 2; /* Half width */
}

.form-field.col-1 {
  grid-column: span 1; /* 1/4 width */
}

/* Default is 1/4 width (one column) */
.form-field {
  grid-column: span 1;
}

/* Label styles */
.form-field label {
  display: block;
  font-weight: 500;
  color: #444;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

/* Input field styles with fixed width */
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  background-color: white;
  height: 38px;
  box-sizing: border-box;
}

/* Textarea specific styles */
.form-field textarea {
  height: auto;
  min-height: 80px;
  resize: vertical;
}

/* Focus states */
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #2e7d32;
  box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.1);
  outline: none;
}

/* Placeholder styles */
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #aaa;
}

/* Form divider */
.form-divider {
  width: 100%;
  height: 1px;
  background-color: #eee;
  margin: 10px 0;
  grid-column: span 4; /* Span all 4 columns */
}

/* Radio group styles */
.radio-group {
  display: flex;
  gap: 15px;
  align-items: center;
  height: 38px;
}

.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.85rem;
}

.radio-label input {
  margin-right: 5px;
  width: auto;
  height: auto;
}

/* Multi-select styles */
.multi-select-container {
  position: relative;
  width: 100%;
}

.multi-select-dropdown {
  position: relative;
  width: 100%;
}

.multi-select-selected {
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  min-height: 38px;
  position: relative;
  font-size: 0.85rem;
  width: 100%;
  box-sizing: border-box;
}

.multi-select-selected:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #666 transparent transparent transparent;
}

.multi-select-selected.active:after {
  border-color: transparent transparent #666 transparent;
  top: 40%;
}

.multi-select-dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  z-index: 100;
  max-height: 200px;
  overflow-y: auto;
  margin-top: 2px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.multi-select-search {
  padding: 6px;
  position: sticky;
  top: 0;
  background-color: white;
  border-bottom: 1px solid #eee;
  z-index: 1;
}

.multi-select-search input {
  width: 100%;
  padding: 5px 8px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 0.8rem;
  height: 30px;
}

.multi-select-options {
  padding: 5px 0;
}

.multi-select-option {
  display: flex;
  align-items: center;
  padding: 5px 8px;
  cursor: pointer;
  transition: background-color 0.2s;
  font-size: 0.8rem;
}

.multi-select-option:hover {
  background-color: #f5f5f5;
}

.multi-select-option input[type="checkbox"] {
  margin-right: 6px;
  width: auto;
  height: auto;
}

/* Error message styles */
.error-message {
  color: #dc3545;
  font-size: 0.7rem;
  margin-top: 3px;
  display: none;
}

.form-field input.is-invalid,
.form-field select.is-invalid,
.multi-select-selected.is-invalid {
  border-color: #dc3545;
}

.form-field input.is-invalid + .error-message,
.form-field select.is-invalid + .error-message,
.multi-select-container + .error-message {
  display: block;
}

/* Submit button styles */
.enquiry-form-submit {
  text-align: center;
  margin-top: 20px;
}

.enquiry-submit-btn {
  background-color: #2e7d32;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enquiry-submit-btn:hover {
  background-color: #1b5e20;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
  }

  .form-divider {
    grid-column: span 2;
  }

  .form-field.col-4,
  .form-field.col-3,
  .form-field.col-2 {
    grid-column: span 2; /* Span full width on medium screens */
  }
}


/* MOBILE RESPONSIVE IMPROVEMENTS */
@media (max-width: 768px) {
    .product-detail-section {
        padding: 80px 0 40px; /* Reduced padding for mobile */
    }
    
    .product-detail-container {
        gap: 20px; /* Reduced gap for mobile */
        margin: 0 10px; /* Add side margins */
    }
    
    .product-detail-info {
        padding: 15px 20px; /* Reduced padding */
    }
    
    .product-detail-title {
        font-size: 1.5rem; /* Smaller title for mobile */
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .product-detail-botanical {
        font-size: 14px; /* Smaller botanical name */
        margin-bottom: 8px;
        line-height: 1.4;
    }
    
    .product-detail-description {
        font-size: 14px; /* Smaller description text */
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .usage-benefits-title {
        font-size: 15px; /* Smaller section titles */
        margin-top: 8px;
        margin-bottom: 4px;
    }
    
    .usage-benefits-list {
        margin-bottom: 12px;
    }
    
    .usage-benefits-list li {
        font-size: 0.85rem; /* Smaller list items */
        line-height: 1.4;
        margin-bottom: 4px;
    }
    
    .quality-shelf-life-item {
        white-space: normal; /* Allow text wrapping on mobile */
        flex-wrap: wrap;
        align-items: flex-start;
    }
    
    .quality-shelf-life-title {
        font-size: 0.9rem; /* Smaller quality/shelf life titles */
    }
    
    .quality-shelf-life-content {
        font-size: 0.85rem; /* Smaller content text */
        margin-left: 6px;
    }
    
    .meta-section-title {
        font-size: 1rem; /* Smaller meta section title */
        margin-bottom: 8px;
    }
    
    .meta-label {
        font-size: 0.8rem; /* Smaller meta labels */
    }
    
    .meta-value {
        font-size: 0.85rem; /* Smaller meta values */
    }
    
    .certification-title {
        font-size: 1rem; /* Smaller certification title */
        margin-bottom: 6px;
    }
    
    .certification-logo {
        width: 60px; /* Smaller certification logos */
        height: 60px;
    }
    
    .product-detail-actions {
        flex-direction: column; /* Stack buttons vertically */
        gap: 8px;
        margin-top: 15px;
    }
    
    .product-detail-btn {
        width: 100%;
        padding: 12px 15px; /* Larger touch targets */
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        padding: 12px 20px; /* Larger touch targets */
    }
    
    .product-meta-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-field.col-6,
    .form-field.col-4,
    .form-field.col-3,
    .form-field.col-2 {
        grid-column: span 12; /* Full width on mobile */
    }
    
    .enquiry-form-title {
        font-size: 1.1rem; /* Smaller form title */
    }
    
    .enquiry-form-body {
        padding: 12px; /* Reduced form padding */
    }
    
    .related-product-card {
        min-width: 180px; /* Smaller cards on mobile */
        flex: 0 0 180px;
    }
    
    .related-product-image {
        height: 140px; /* Smaller image height */
    }
    
    .related-product-name {
        font-size: 0.9rem; /* Smaller product names */
    }
    
    .section-header h2 {
        font-size: 1.5rem; /* Smaller section headers */
    }
    
    .section-header p {
        font-size: 0.9rem; /* Smaller section descriptions */
    }
    
    .cta-content h2 {
        font-size: 1.5rem; /* Smaller CTA title */
    }
    
    .cta-content p {
        font-size: 0.9rem; /* Smaller CTA text */
    }
}

/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
    .product-detail-container {
        margin: 0 5px; /* Even smaller margins */
    }
    
    .product-detail-info {
        padding: 12px 15px; /* Further reduced padding */
    }
    
    .product-detail-title {
        font-size: 1.3rem; /* Even smaller title */
    }
    
    .product-detail-botanical,
    .product-detail-description {
        font-size: 13px; /* Even smaller text */
    }
    
    .usage-benefits-list li {
        font-size: 0.8rem; /* Even smaller list items */
    }
    
    .certification-logo {
        width: 50px; /* Even smaller logos */
        height: 50px;
    }
    
    .related-product-card {
        min-width: 160px; /* Even smaller cards */
        flex: 0 0 160px;
    }
    
    .enquiry-form-body {
        padding: 10px; /* Minimal form padding */
    }
     .form-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
  }

  .form-divider {
    grid-column: span 2;
  }

  .form-field.col-4,
  .form-field.col-3,
  .form-field.col-2 {
    grid-column: span 2; /* Span full width on medium screens */
  }
}

/* Enhanced Mobile View Styles */
@media (max-width: 576px) {
  /* Container adjustments */
  .enquiry-form-container {
    border-radius: 0;
    box-shadow: none;
    margin: 0 -15px; /* Extend to full width on mobile */
  }

  .enquiry-form-header {
    padding: 12px 15px;
  }

  .enquiry-form-title {
    font-size: 1.2rem;
  }

  .enquiry-form-body {
    padding: 15px 12px;
  }

  /* Form grid adjustments */
  .form-grid {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 12px;
    row-gap: 15px;
  }

  /* Make all fields full width on mobile */
  .form-field,
  .form-field.col-4,
  .form-field.col-3,
  .form-field.col-2,
  .form-field.col-1 {
    grid-column: span 1; /* All fields take full width */
  }

  /* Divider adjustments */
  .form-divider {
    grid-column: span 1;
    margin: 8px 0;
  }

  /* Input field adjustments */
  .form-field input,
  .form-field select,
  .form-field textarea,
  .multi-select-selected {
    height: 42px; /* Larger touch targets */
    font-size: 16px; /* Prevent iOS zoom on focus */
    padding: 8px 12px;
  }

  /* Label adjustments */
  .form-field label {
    font-size: 0.85rem;
    margin-bottom: 5px;
  }

  /* Radio group adjustments */
  .radio-group {
    height: 42px;
    gap: 20px; /* More space between radio options */
  }

  .radio-label {
    font-size: 16px;
  }

  /* Multi-select adjustments */
  .multi-select-dropdown-content {
    max-height: 250px; /* Larger dropdown area */
  }

  .multi-select-option {
    padding: 8px 12px; /* Larger touch targets */
    font-size: 16px;
  }

  .multi-select-search input {
    height: 38px;
    font-size: 16px;
  }

  /* Error message adjustments */
  .error-message {
    font-size: 0.8rem;
  }

  /* Submit button adjustments */
  .enquiry-submit-btn {
    width: 100%; /* Full width button */
    padding: 12px 20px;
    font-size: 1rem;
  }

  /* Textarea adjustments */
  .form-field textarea {
    min-height: 100px;
  }

  /* Alert adjustments */
  .alert {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  /* Fix for iOS input zoom */
  @supports (-webkit-touch-callout: none) {
    .form-field input,
    .form-field select,
    .form-field textarea {
      font-size: 16px !important;
    }
  }

  /* Improve spacing between sections */
  .form-field + .form-divider {
    margin-top: 15px;
  }

  .form-divider + .form-field {
    margin-top: 5px;
  }
}