
  /* Trigger button styling - EXCLUDE accessories */
  .details_modal-features,
  .details_modal-specs,
  .details_modal-warranty {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    padding-right: 0;
    border-bottom: 1px solid #cccccc;
  }

  .details_modal-features::after,
  .details_modal-specs::after,
  .details_modal-warranty::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: #C9A227;
  }

  /* Modal wrapper - force override Webflow display:none */
  .modal_features,
  .modal_specs,
  .modal_warranty,
  .modal_accessories {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
  
  .modal_features.is-open,
  .modal_specs.is-open,
  .modal_warranty.is-open,
  .modal_accessories.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  
  /* Background overlay */
  .modal_background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.2s ease-out;
    cursor: pointer;
  }
  
  .is-open .modal_background-overlay {
    opacity: 1;
  }
  
  /* Drawer content - force override Webflow transforms */
  .modal_content-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 40vw;
    min-width: 400px;
    max-width: 90vw;
    height: 100%;
    background: #fff;
    transform: translateX(100%) !important;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    z-index: 2;
  }
  
  .is-open .modal_content-wrapper {
    transform: translateX(0) !important;
  }

