
@media only screen {.preview-mode-theme-mismatch-warning {display: none !important;}
}

/* ===================================
   CART MODAL LAYOUT
   =================================== */

/* Modal body scrolls on mobile, not on desktop */
.cart-modal .modal-body {
  overflow-y: auto;
}

@media (min-width: 1200px) {
  .cart-modal .modal-body {
    overflow: hidden;
  }
}

/* Desktop: left column is fixed height flex container */
@media (min-width: 1200px) {
  .cart-column-left {
    display: flex;
    flex-direction: column;
    height: calc(90vh - 150px); /* Adjust 150px based on header/footer height */
    overflow: hidden;
  }

  .cart-items-wrapper {
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
  }

  .cart-bottom-section {
    flex: 0 0 auto;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1rem;
    background: white;
  }
}

/* Mobile: everything flows naturally */
@media (max-width: 1199px) {
  .cart-bottom-section {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
/* =============================================================================
   RIC CART - STYLED QUANTITY DROPDOWN
   =============================================================================
   
   WHERE TO PUT THIS:
   RapidWeaver → Settings → Site-Wide Code → Footer section
   Paste this entire <style> block there.
   
   ============================================================================= */

<style>
/* -----------------------------------------------------------------------------
   QUANTITY DROPDOWN WRAPPER
   ----------------------------------------------------------------------------- */

.ric-select-wrapper {
    max-width: 220px;
    margin-bottom: 1rem;
}

.ric-select-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #333;
}

.ric-select-container {
    position: relative;
    display: block;
}

/* -----------------------------------------------------------------------------
   THE SELECT ELEMENT ITSELF
   ----------------------------------------------------------------------------- */

.ric-styled-select {
    /* Remove default browser styling */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    
    /* Size and spacing */
    width: 100%;
    padding: 12px 44px 12px 16px;
    
    /* Typography */
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    
    /* Background and border */
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    
    /* Interaction */
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    
    /* dropdown text center */
	text-align: center;
    text-align-last: center;  /* For Firefox and some browsers */
    padding-left: 44px;       /* Match right padding to balance the arrow */
}

.ric-styled-select option {
    text-align: center;
}

.ric-styled-select:hover {
    border-color: #86B2A3;
}

.ric-styled-select:focus {
    outline: none;
    border-color: #86B2A3;
    box-shadow: 0 0 0 3px rgba(134, 178, 163, 0.2);
}

/* -----------------------------------------------------------------------------
   CUSTOM DROPDOWN ARROW
   ----------------------------------------------------------------------------- */

.ric-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
    transition: color 0.2s ease;
}

.ric-styled-select:hover + .ric-select-arrow,
.ric-styled-select:focus + .ric-select-arrow {
    color: #86B2A3;
}

/* -----------------------------------------------------------------------------
   HINT TEXT BELOW DROPDOWN
   ----------------------------------------------------------------------------- */

.ric-select-hint {
    font-size: 0.8rem;
    color: #888;
    margin-top: 6px;
}

/* -----------------------------------------------------------------------------
   PRICE DISPLAY
   ----------------------------------------------------------------------------- */

.ric-price-display {
    font-size: 2.0rem;
    font-weight: 400;
    color: #000000;
}


/* Optional: Slightly smaller on mobile */
@media (max-width: 576px) {
    .ric-styled-select {
        padding: 10px 40px 10px 14px;
        font-size: 0.95rem;
    }
    
    .ric-price-display {
        font-size: 1.5rem;
    }
}
</style>