#bambuk-configurator {
  font-family: var(--e-global-typography-e939e51-font-family), "Roboto",
    Sans-serif;
  .accessory-category-bcaccordion {
    margin-bottom: 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .accessory-category-accordion {
    border-radius: 12px;
    background: white;
    border: solid 2px #efefef;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
  }

  .accessory-category-accordion:hover {
    border-color: #4aa548 !important;
  }

  .bcaccordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid transparent;

    .category-title {
      margin: 0;
      font-size: 1rem;
      font-weight: 500;
      padding-bottom: 0px;
      line-height: 30px;
      border: none;
    }
  }

  .bcaccordion-icon {
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.2s ease;
  }

  .bcaccordion-content {
    border-top: 1px solid #e5e5e5;
    border-radius: 0px 0px 8px 8px;
    overflow: hidden;
  }

  /* Accessory List Styles */

  .accessory-list {
    padding: 0;
  }

  .accessory-list-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .accessory-list-item:hover {
    transform: none;
    background: #f5f5f5;
  }

  .accessory-list-item.selected {
    background: #eef6ee;
    border-left: 4px solid #4aa548;
  }

  .accessory-item-image {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
  }

  .accessory-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .image-placeholder {
    font-size: 1.5rem;
    color: #6c757d;
  }

  .accessory-item-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
  }

  .accessory-item-content {
    flex: 1;
    min-width: 0;
  }

  .accessory-item-title {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.25rem;
    line-height: 1.3;
  }

  .accessory-item-price {
    font-size: 0.9rem;
    color: #4aa548;
    font-weight: 500;
  }

  .price-suffix {
    color: #6c757d;
    font-weight: normal;
    margin-left: 0.25rem;
  }

  .accessory-item-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .info-button {
    background: none !important;
    border: 1px solid #4aa548 !important;
    color: #4aa548 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    padding: 5px !important;
    border-radius: 50% !important;
    transition: background-color 0.2s ease !important;
    width: 22px !important;
    height: 22px !important;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
  }

  .info-button:hover {
    background: rgba(0, 123, 255, 0.1);
  }

  .selection-checkbox {
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .checkmark {
    color: #4aa548;
    font-weight: bold;
  }

  .checkbox-empty {
    color: #ffffff00;
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
  }

  /* Modal Styles */

  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
  }

  .modal-content {
    background: white;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
  }

  .modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
  }

  .modal-close {
    background: none !important;
    border: none !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
    padding: 0 !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: background-color 0.2s ease !important;
    color: #6c757d !important;
  }

  .modal-close:hover {
    background: #f8f9fa;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .modal-image {
    margin-bottom: 1rem;
    text-align: center;
  }

  .modal-image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    max-height: 200px;
  }

  .modal-description {
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #333;
  }

  .modal-price {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 1rem;
  }

  .modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid #e5e5e5;
  }

  /* No accessories message */

  .no-accessories-in-category {
    padding: 2rem;
    text-align: center;
    color: #6c757d;
    font-style: italic;
  }

  .submission-container {
    display: flex;
    flex-direction: column;
  }

  .submission-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .submission-success-message {
    display: flex;
    justify-content: center;
    margin: 140px 80px;
  }

  .submission-success-message h2 {
    color: #333 !important;
    font-size: 27px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    text-align: center;
    border-bottom: #28a745 solid 2px;
    display: inline-block;
  }

  .submission-success-message div {
    padding: 20px;
    background: #eef6ee;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #4aa548;
  }

  .submission-actions {
    gap: 16px;
  }

  &.bambuk-configurator {
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 80px;
    padding: 20px;
    background: #fff;
    position: relative;
  }

  .configurator-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
  }

  .configurator-header h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 28px;
    font-weight: 600;
  }

  .progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
  }

  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4aa548, #46962b);
    border-radius: 4px;
    transition: width 0.3s ease;
  }

  .step-indicators {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
  }

  .step:hover {
    background-color: #f8f9fa;
  }

  .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
  }

  .step.active .step-number {
    background-color: #4aa548;
    color: white;
  }

  .step.completed .step-number {
    background-color: #4aa548;
    color: white;
  }

  .step-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-align: center;
  }

  .step.active .step-label {
    color: #4aa548;
    font-weight: 600;
  }

  .step.completed .step-label {
    color: #4aa548;
  }

  .configurator-step {
    margin-bottom: 40px;
    min-height: 400px;
    justify-content: center;
  }

  .configurator-step h4 {
    margin: 0 0 25px 0;
    color: #333;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
  }

  .configurator-step h5 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 26px;
    font: "Roboto", sans-serif;
    line-height: 36px;
    font-weight: 600;
  }

  .desktop-view {
    display: block;
  }

  .mobile-view {
    display: none;
  }

  .products-grid-container {
    margin-bottom: 30px;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 0;
  }

  .product-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #4aa548;
  }

  .product-card.selected {
    border-color: #4aa548;
    background: #f8fffe;
    box-shadow: 0 8px 25px rgba(73, 165, 71, 0.2);
  }

  .product-card-header {
    padding: 0px 20px 15px 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
  }

  .product-card-header .product-image {
    width: calc(100% + 40px);
    position: relative;
    left: -20px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e9ecef;
    margin-bottom: 15px;
  }

  .product-card-header .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .product-card-header .product-image.placeholder {
    font-size: 16px;
    color: #6c757d;
    background: #f8f9fa;
  }

  .product-card-header .product-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
  }

  .product-card-header .product-price {
    font-size: 20px;
    font-weight: 700;
    color: #4aa548;
  }

  .product-features {
    padding: 15px 20px;
    background: #fafafa;
    flex: 1;
  }

  .feature-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .feature-item:last-child {
    border-bottom: none;
  }

  .feature-label {
    display: block;
    text-align: left;
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  .feature-value {
    font-size: 14px;
    color: #333;
    display: block;
    text-align: right;
    font-weight: 500;
  }

  .product-action {
    padding: 20px;
    background: white;
  }

  .product-action .btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #4aa548;
    background: white;
    color: #4aa548;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
  }

  .product-action .btn:hover {
    background: #4aa548;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(73, 165, 71, 0.3);
  }

  .product-action .btn.selected {
    background: #4aa548;
    border-color: #4aa548;
    color: white;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  }

  .product-action .btn.selected:hover {
    background: #218838;
    border-color: #218838;
  }

  .selection-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: #4aa548;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
  }

  .products-mobile-container {
    margin-bottom: 30px;
  }

  .product-mobile-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .product-mobile-card.selected {
    border-color: #4aa548;
    box-shadow: 0 4px 15px rgba(73, 165, 71, 0.2);
  }

  .product-mobile-header {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    background: white;
  }

  .product-mobile-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    margin-right: 15px;
    flex-shrink: 0;
  }

  .product-mobile-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .product-mobile-image.placeholder {
    font-size: 12px;
    color: #6c757d;
  }

  .product-mobile-info {
    flex: 1;
  }

  .product-mobile-info .product-title {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
  }

  .product-mobile-info .product-price {
    font-size: 18px;
    font-weight: 700;
    color: #4aa548;
  }

  .mobile-selection-indicator {
    width: 25px;
    height: 25px;
    background: #4aa548;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    margin-left: 10px;
  }

  .product-mobile-features {
    padding: 15px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
  }

  .mobile-feature-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .mobile-feature-item:last-child {
    border-bottom: none;
  }

  .mobile-feature-item .feature-label {
    font-weight: 600;
    color: #495057;
    font-size: 14px;
    display: block;
    text-align: left;
    margin-bottom: 4px;
  }

  .mobile-feature-item .feature-value {
    font-size: 14px;
    color: #333;
    display: block;
    text-align: right;
    font-weight: 500;
  }

  .product-mobile-action {
    padding: 15px;
    background: white;
    border-top: 1px solid #f0f0f0;
  }

  .btn-mobile {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #4aa548;
    background: white;
    color: #4aa548;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
  }

  .btn-mobile:hover {
    background: #4aa548;
    color: white;
  }

  .btn-mobile.selected {
    background: #4aa548;
    border-color: #4aa548;
    color: white;
  }

  .btn-mobile.selected:hover {
    background: #218838;
    border-color: #218838;
  }

  .product-image {
    width: 100%;
    height: 600px;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .product-info h5 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
  }

  .product-attributes {
    margin-bottom: 15px;
  }

  .attribute {
    display: flex;
    margin-bottom: 5px;
  }

  .attribute-label {
    font-weight: 500;
    color: #666;
    margin-right: 8px;
    text-transform: capitalize;
  }

  .attribute-value {
    color: #333;
  }

  .product-price {
    font-size: 16px;
    font-weight: 600;
    color: #4aa548;
  }

  .selected-product-info {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
    margin-bottom: 0 !important;
  }

  .selected-product-info h5 {
    margin: 0;
    color: #333;
    font-size: 16px;
  }

  .step-with-sidebar {
    display: flex;
    gap: 30px;
    align-items: flex-start;
  }

  .step-content {
    flex: 1;
    min-width: 0;
  }

  .selected-product-name {
    font-size: 2rem;
    font-weight: 700;
    color: #4aa548;
    text-align: center;
    padding: 0.7rem 1.2rem;
    background-color: #eef6ee;
    border-radius: 22px;
    display: inline-block;
    border-left: 3px solid #4aa548;
  }

  .configuration-sidebar {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 150px;
  }

  .sidebar-content {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    h5 {
      margin: 0 0 20px 0;
      color: #333;
      font-size: 18px;
      font-weight: 600;
      text-align: center;
      padding-bottom: 15px;
      border-bottom: 2px solid #4aa548;
    }
    .config-section {
      margin-bottom: 20px;
      border-bottom: 1px solid #f0f0f0;
      border-radius: 16px;
      width: 100%;
      &:last-of-type {
        border-bottom: none;
        margin-bottom: 0;
      }
    }
  }

  .sidebar-content
    .config-section
    .configuration-summary
    .config-section
    > div:not(:first-child) {
    margin-top: 32px;
  }

  .configuration-summary .config-section strong:first-of-type {
    font-size: 24px;
  }

  .config-section h6 {
    margin: 0 0 10px 0;
    color: #495057;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .category-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  .summary-item-name {
    flex: 1;
    font-size: 12px;
    color: #333;
    line-height: 1.4;
  }

  .summary-item-name::before,
  .summary-item .item-name::before {
    content: " ";
    width: 5px;
    height: 5px;
    background-color: #4aa548;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    position: relative;
    top: -2px;
  }

  .config-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
  }

  .config-item:last-child {
    margin-bottom: 0;
  }

  .item-name {
    flex: 1;
    font-size: 12px;
    color: #333;
    line-height: 1.4;
  }

  .item-price {
    font-size: 14px;
    font-weight: 600;
    color: #4aa548;
    text-align: right;
    white-space: nowrap;
    line-height: initial;
  }

  .no-selection {
    color: #6c757d;
    font-style: italic;
    font-size: 14px;
  }

  .config-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #4aa548;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .total-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
  }

  .total-price {
    font-size: 20px;
    font-weight: 700;
    color: #4aa548;
  }

  .price-note {
    margin-top: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
  }

  .price-note small {
    color: #6c757d;
    font-size: 12px;
    line-height: 1.4;
  }

  .accessory-categories {
    margin-top: 20px;
  }

  .accessory-category {
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
  }

  .accessory-category:last-child {
    margin-bottom: 0;
  }

  .category-title {
    margin: 0 0 20px 0;
    padding: 0 0 15px 0;
    border-bottom: 2px solid #4aa548;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .category-title--green {
    color: #4aa548 !important;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 15px;
  }
  .category-accessories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 15px;
  }

  .no-accessories-in-category {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-style: italic;
    grid-column: 1 / -1;
  }

  .accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
  }

  .accessory-card {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
  }

  .accessory-card:hover {
    border-color: #4aa548;
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(0, 124, 186, 0.1);
  }

  .accessory-card.selected {
    border-color: #4aa548;
    background-color: #f8fff9;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.2);
  }

  .accessory-image {
    width: 100%;
    height: 120px;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .accessory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .accessory-image.placeholder {
    background-color: #f8f9fa;
    border: 1px dashed #dee2e6;
    color: #6c757d;
    font-size: 12px;
  }

  .accessory-info h6 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 14px;
    font-weight: 600;
  }

  .accessory-price {
    font-size: 14px;
    font-weight: 500;
    color: #4aa548;
  }

  .accessory-description {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    line-height: 1.4;
  }

  .selection-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background-color: #4aa548;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
  }

  .no-accessories {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
  }

  .configuration-summary {
    background: none;
    padding: 0;
    border-radius: 16px;
    margin-bottom: 30px;
  }

  .configuration-summary .summary-item:first-child {
    font-size: 24px;
    align-items: center;
  }

  .configuration-summary .summary-item:first-child span {
    background: #4aa548;
    padding: 4px 12px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border-radius: 8px;
  }

  .summary-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;

    > div {
      flex: 1 1 0;
      width: 0;
    }

    .summary-image {
      margin-bottom: 1rem;
      padding: 10px;
      background-color: #fff;
      align-items: center;
      img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
      }
    }
    .summary-content {
      border: 1px solid #e0e0e0;
      border-radius: 50px;
      padding: 18px 36px;
      display: flex;
      flex-direction: column;
      gap: 15px;

      h3 {
        font-weight: 500;
        color: #4aa548;
        font-size: 20px;
        margin: 0;
      }

      .summary-product-name {
        font-size: 36px;
        font-weight: 700;
        color: #3f3f3f;
      }

      .summary-item {
        margin-bottom: 10px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
        &.price-row {
          justify-content: flex-end;
          flex-direction: column;
          align-items: end;
          gap: 0;
        }
      }

      .price {
        font-size: 24px;
        font-weight: 600;
        color: #4aa548;
      }

      .price-dark {
        color: #3f3f3f !important;
      }

      .summary-total {
        font-size: 18px;
        color: #4aa548;
        text-align: right;
        font-size: 24px;
        padding-top: 30px;
      }

      .tax-note {
        text-align: right;
      }

      .selected-config-header {
        font-size: 20px;
        color: #4aa548;
        margin-bottom: 10px;
      }

      .items {
        display: flex;
        flex-direction: column;
        align-items: flex-end;

        .config-item {
          max-width: 460px;
          min-width: 460px;
          gap: 25px;

          .config-name {
            text-align: right;
            width: 100%;
          }
          .config-price {
            text-align: right;
            min-width: 70px;
          }
        }
      }
    }
  }

  .summary-desc {
    width: 100%;
  }

  .summary-item strong {
    min-width: 80px;
    color: #555;
  }

  .summary-item ul {
    margin: 0;
    padding-left: 20px;
  }

  .summary-item li {
    margin-bottom: 5px;
  }

  .contact-form {
    background: #fff;
    padding: 25px;
    /* border-radius: 10px;
    border: 1px solid #e0e0e0; */
    /* width: 500px; */
    max-width: 80vw;
    margin: auto !important;
  }
  .form-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
    .form-row {
      display: flex;
      gap: 20px;
      /* justify-content: center; */
    }
  }

  .form-group {
    margin: 0;
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #3f3f3f;
    font-weight: 500;
    font-size: 18px;
  }

  .form-group input {
    display: inline-block;
    vertical-align: top;
    width: 296px;
    height: 40px;
    font-size: 16px !important;
    outline: none;
    background: #fafafa !important;
    padding: 24px 20px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    border: solid 2px #4aa548 !important;
  }

  .required-notice {
    font-size: 12px;
    color: #333;
    margin-bottom: 10px;
  }

  .form-group input:focus {
    outline: none;
    border-color: #4aa548;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
  }

  .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
  }

  .checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    display: none;
  }

  .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #4aa548;
    border-color: #4aa548;
  }

  .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: white;
    font-size: 12px;
    font-weight: bold;
  }

  .configurator-navigation {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
  }

  .btn {
    padding: 12px 30px !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center !important;
    justify-content: center !important;
    min-width: 120px !important;
  }

  .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }

  .btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .btn-primary {
    background-color: #4aa548 !important;
    color: white !important;
  }

  .btn-primary:hover:not(:disabled) {
    background-color: #498a58 !important;
  }

  .btn-secondary {
    background-color: #6c757d !important;
    color: white !important;
  }

  .btn-secondary.btn-light {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
  }

  .btn-secondary:hover:not(:disabled) {
    background-color: #545b62 !important;
  }

  .btn-secondary.btn-light:hover:not(:disabled) {
    background-color: #e2e6ea !important;
  }

  .btn-success {
    background-color: #4aa548 !important;
    color: white !important;
  }

  .btn-success:hover:not(:disabled) {
    background-color: #218838 !important;
  }

  .btn-outline {
    background-color: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
  }

  .btn-outline:hover:not(:disabled) {
    background-color: #6c757d !important;
    color: white !important;
  }

  .contact-header {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 24px;
    line-height: 1.1;
    text-align: center;
  }

  .contact-header .highlight {
    color: #4aa548;
  }

  .contact-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
  }

  .loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
  }

  .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4aa548;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  .configurator-messages {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
  }

  .message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
  }

  @keyframes slideIn {
    from {
      transform: translateX(100%);
      opacity: 0;
    }

    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .message.success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #4aa548;
  }

  .message.error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
  }

  .message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
  }

  .sidebar-product-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
  }

  [x-cloak] {
    display: none !important;
  }

  .standard-features-section {
    margin: 2rem 0;
    padding-top: 1.5rem;
  }

  .standard-feature-category {
    margin-bottom: 1.5rem;
  }

  .sfc-title {
    font-size: 1rem;
    font-weight: 700;
    color: #495057;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 0 15px 0;
    border-bottom: 2px solid #4aa548;
    display: inline-block;
  }

  .sfc-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .sfc-item {
    display: flex;
    align-items: center;
  }

  .sfc-item-icon {
    width: 5px;
    height: 5px;
    background-color: #4aa548;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
  }

  .sfc-item-title {
    font-weight: 600;
    color: #343a40;
  }

  .configuration-summary .config-section .category-label {
    text-transform: unset;
    font-size: 20px;
  }

  .configuration-summary .config-section .config-item .summary-item-name,
  .config-section .config-item .item-name {
    font-size: 14px;
  }

  .configuration-summary .config-section .config-item .summary-item-name:before,
  .config-section .config-item .item-name:before {
    height: 6px;
    width: 6px;
  }
  .standard-feature-accordion {
    padding: clamp(15px, 3vw, 30px);
  }

  .standard-features {
    .standard-features-header {
      font-size: 26px;
      color: #4aa548;
      font-weight: 700;
      margin: 20px 0;
    }
    .standard-features-content {
      .standard-features-columns {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 60px;

        .standard-features-column {
          background-color: #fafafa;
          padding: 20px;

          .standard-feature-element {
            margin-bottom: 20px;
            .standard-feature-label {
              font-weight: 600;
              color: #595d62;
            }

            .standard-feature-name {
              color: #595d62;
              font-size: 14px;
              line-height: 1.4;

              &:before {
                content: " ";
                width: 5px;
                height: 5px;
                background-color: #4aa548;
                border-radius: 50%;
                display: inline-block;
                margin-right: 6px;
                position: relative;
                top: -2px;
              }
            }
          }
        }
      }
    }
  }

  /* Responsive Design */

  @media (max-width: 768px) {
    .category-title--green {
      font-size: 18px !important;
      color: #4aa548;
      font-weight: 700 !important;
      text-align: center;
    }

    .standard-features-header {
      font-size: 20px !important;
      text-align: center;
    }
    .standard-features-content {
      .standard-features-columns {
        gap: 0 !important;
        .standard-features-column {
          &:first-child {
            padding-bottom: 0;
          }
          &:last-child {
            padding-top: 0;
          }
        }
      }
    }
    .bcaccordion-header {
      padding: 0.75rem 1rem;
    }

    .bcaccordion-header .category-title {
      font-size: 0.9rem;
    }

    .accessory-list-item {
      padding: 0.75rem 1rem;
      flex-direction: row;
      align-items: flex-start;
      text-align: left;
    }

    .accessory-item-info {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      width: 100%;
      flex-direction: row;
    }

    .accessory-item-image {
      width: 50px;
      height: 50px;
      margin-right: 0.75rem;
      margin-bottom: 0pc;
      align-self: flex-start;
    }

    .accessory-item-content {
      width: 100%;
      margin-bottom: 0.5rem;
    }

    .accessory-item-actions {
      align-self: center;
    }

    .modal-overlay {
      padding: 0.5rem;
    }

    .modal-footer {
      flex-direction: column;
    }

    .modal-footer .btn {
      width: 100%;
    }

    .desktop-view {
      display: none;
    }

    .mobile-view {
      display: block;
    }

    .configurator-step{
      margin-bottom: 15px;
    }

    .step-with-sidebar {
      flex-direction: column;
      gap: 20px;
    }

    .summary-container {
      flex-direction: column;
      gap: 20px;
    }

    .configuration-sidebar {
      width: 100%;
      position: static;
      order: -1;
    }
    
    .step-content{
      width: 100%;
    }

    .sidebar-content {
      padding: 20px;
    }

    .sidebar-content h5 {
      font-size: 16px;
      margin-bottom: 15px;
      padding-bottom: 12px;
    }

    .total-price {
      font-size: 18px;
    }

    .accessory-category {
      margin-bottom: 30px;
      padding: 15px;
    }

    .category-title {
      font-size: 18px;
      margin-bottom: 15px;
      padding-bottom: 10px;
    }

    .category-accessories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 15px;
    }

    &.bambuk-configurator {
      padding: 15px;
      margin: 10px;
      border-radius: 8px;
    }

    .btn {
      width: 80vw !important;
    }

    .configurator-header h3 {
      font-size: 24px;
    }

    .step-indicators {
      flex-direction: column;
      gap: 10px;
    }

    .step {
      flex-direction: row;
      gap: 10px;
      width: 100%;
      justify-content: flex-start;
    }

    .step-number {
      margin-bottom: 0;
    }

    .accessories-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 10px;
    }

    .form-row {
      grid-template-columns: 1fr;
      display: flex;
      flex-direction: column !important;
      margin-bottom: 24px;
      gap: 24px !important;
    }

    .form-group{
      input{
        width: 100% !important;
      }
    } 

    .configurator-navigation {
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
    }

    .btn {
      width: 100%;
      /* max-width: 300px; */
    }

    .configurator-messages {
      position: relative;
      top: auto;
      right: auto;
      max-width: none;
      margin-top: 20px;
    }

    .configuration-summary {
      padding: 15px;
    }

    .contact-form {
      padding: 0px;
    }

    .product-image{
      height: 300px;
    }

    .submission-success-message {
      margin: 140px 15px;
    }

    .submission-success-message h2 {
      color: #28a745 !important;
      font-size: 20px !important;
      border: none !important;
    }

    .summary-container {
      flex-direction: column;

      > div {
        flex: 1 1 0;
        width: 0;
      }

      .summary-image {
        width: 100%;
      }
      .summary-content {
        width: 100%;
        padding: 18px 20px;
        border-radius: 30px;

        h3 {
          margin-top: 5px;
        }

        .summary-item {
          flex-direction: column;
        }

        .summary-product-name {
          margin-bottom: 10px;
          font-size: 28px;
        }

        .price {
          text-align: right;
          font-size: 20px;
          width: 100%;
          padding: 0;
        }

        .tax-note {
          text-align: right;
        }

        .selected-config-header {
          font-size: 20px;
          color: #4aa548;
          margin-bottom: 10px;
        }
      }
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .product-card-header .product-image {
      height: 160px;
    }

    .product-card-header .product-title {
      font-size: 16px;
    }
  }

  @media (min-width: 1025px) {
    .products-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* @media (max-width: 480px) {
    .bambuk-configurator {
      padding: 10px;
      margin: 5px;
    }

    .configurator-header {
      margin-bottom: 25px;
      padding-bottom: 20px;
    }

    .configurator-header h3 {
      font-size: 20px;
    }

    .configurator-step {
      min-height: 300px;
    }

    .configurator-step h4 {
      font-size: 18px;
    }

    .product-image,
    .accessory-image {
      height: 150px;
    }

    .accessories-grid {
      grid-template-columns: 1fr;
    }
  } */

  @media only screen and (min-width: 768px) {
    .summary-product-image {
      position: sticky;
      top: 100px;
    }
  }
}
