.elementor-6469 .elementor-element.elementor-element-6e9acca1{--display:flex;--min-height:100vh;--overflow:hidden;overflow:visible;}/* Start custom CSS for html, class: .elementor-element-000bfc8 *//* ==========================================================================
   1. SHARED CARD ELEMENT & CONTAINER LAYOUT
   ========================================================================== */

.ssldl-card-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #ffffff; 
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06); 
  border: 1px solid #e0e6ed; 
}

.ssldl-card-form h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #3E5063;
}

.ssldl-card-form .form-row {
  margin-bottom: 1.25rem;
}

.ssldl-card-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1c2b3a;
}

.ssldl-card-form input,
.ssldl-card-form select,
.ssldl-card-form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccd3db;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

.ssldl-card-form input[type="radio"],
.ssldl-card-form input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
  transform: scale(1.1);
}

.ssldl-card-form .form-row label input[type="radio"],
.ssldl-card-form .form-row label input[type="checkbox"] {
  display: inline-block;
  margin-right: 0.5rem;
  transform: scale(1.2);
}

.ssldl-card-form button[type="submit"] {
  background: #3E5063;
  color: #fff;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin: 20px auto 0 auto;
  text-align: center;
}

.ssldl-card-form button[type="submit"]:hover {
  background: #2d3c4d;
}

/* Universal Container layout for both Service and Day choices */
.radio-card-container {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

/* Hide default browser radio inputs completely while keeping keyboard accessibility */
.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Base structural parameters for the interactive tiles */
.radio-card .pickup-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Changed to center to balance inner text layout */
  padding: 16px;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
  text-align: center; /* Forces paragraph desc lines to match centers */
  width: 100%;       /* Allows box to inherit the flex element's total scalable width */
}

/* CONSOLIDATED MASTER PICKUP SERVICE LAYOUT */
#pickup_service_group.radio-card-container {
    display: flex;
    justify-content: center;     /* Centers the collective cards row */
    align-items: stretch;        /* Keeps heights perfectly locked to matching dimensions */
    gap: 12px;                   /* Tightened up gap spacing per request */
    flex-wrap: wrap;             /* Mobile responsive wrapping safety gate */
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Forces the Drive-Up and Locker tiles to evenly share space up to full desktop width */
#pickup_service_group .radio-card {
    flex: 1 1 calc(50% - 6px);   /* Dynamic split allocation accounting for the 12px gap */
    max-width: 320px;            /* Keeps boxes from blowing out too wide on huge monitors */
    min-width: 240px;            /* Mobile Safety cutoff barrier */
}

/* ==========================================================================
   2. DESKTOP & LANDSCAPE DIMENSION RULES
   ========================================================================== */

/* Removed the rigid 220px hard width so flex stretching can work natively */
:not(.day-card) > .pickup-box {
  min-height: 140px; /* Swapped height to min-height for fluid content layout protection */
}

/* Layout specific only to the Date Selection tiles */
.day-card .pickup-box {
  width: 140px;
  height: 90px;
  align-items: center;
  text-align: center;
}

/* ==========================================================================
   3. INTERNAL TEXT LAYOUT RULES
   ========================================================================== */
.pickup-box .box-title,
.day-card .box-day-name {
  font-weight: bold;
  font-size: 1.1em;
  color: #333;
}

.pickup-box .box-title {
  margin-bottom: 6px;
}

.pickup-box .box-desc {
  font-size: 0.85em;
  color: #666;
  line-height: 1.3;
}

.day-card .box-day-date {
  font-size: 0.85em;
  color: #666;
  margin-top: 4px;
}

/* ==========================================================================
   4. DEVICE ORIENTATION MEDIA QUERIES
   ========================================================================== */

/* Portrait View Optimization for Mobile Phones */
@media (max-width: 600px) and (orientation: portrait) {
  /* Transforms the day row into a clean, easy-to-tap 2x2 grid */
  #day_cards_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
  }

  #day_cards_container .day-card,
  #day_cards_container .day-card .pickup-box {
    width: 100%;
  }

  #day_cards_container .day-card .pickup-box {
    height: 85px;
  }

  /* Force standard Service layout choices to stack vertically to save margin */
  #pickup_service_group {
    flex-direction: column;
    align-items: center;
  }
  
  #pickup_service_group .radio-card {
    width: 100%;
    max-width: 100%;
  }
  
  #pickup_service_group .radio-card .pickup-box {
    width: 100%;
    height: auto;
    min-height: 100px;
  }
}

/* Landscape View Optimization for Mobile Phones */
@media (max-width: 900px) and (orientation: landscape) {
  .radio-card-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto; 
  }
  
  .day-card .pickup-box {
    width: 130px; 
  }
}

/* Disabled card parameters for holiday/emergency exceptions */
.radio-card.tile-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.radio-card.tile-disabled .pickup-box {
  background-color: #f9f9f9;
  border-color: #ddd;
  cursor: not-allowed;
}

.radio-card.tile-disabled:hover .pickup-box {
  border-color: #ddd; 
}

/* Specific text alignment layout rules for the dynamic closures */
.closed-notice {
  color: #d93025 !important; 
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9em;
  margin-top: 2px;
}

.closure-reason {
  font-size: 0.72em;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  margin-top: 1px;
}

/* ==========================================================================
   5. INTERACTIVE SELECTION STATES (ACTIVE HIGHLIGHT ENGINE)
   ========================================================================== */

/* Target the pickup-box sibling ONLY when the hidden radio button is checked */
.radio-card input[type="radio"]:checked + .pickup-box {
    border-color: #F4B400;       /* Your signature Library Yellow brand color */
    background-color: #FFFDF3;   /* A soft, subtle yellow tint fill */
    box-shadow: 0 0 0 1px #F4B400; /* Crisp inner border strengthening */
}

/* Optional: Add a subtle hover border change to show it's clickable before choosing */
.radio-card:not(.tile-disabled):hover .pickup-box {
    border-color: #A0B2C6;       /* Shifts neutral grey to a subtle blue-grey hover link */
}

/* ==========================================================================
   6. DYNAMIC FONT AWESOME ICON STYLING
   ========================================================================== */

/* 1. Default State: Target the icon inside the box when NOT checked */
.radio-card .pickup-box i.fas {
    color: #58A0B5 !important; /* Your custom blue hex value */
    transition: color 0.2s ease-in-out; /* Smoothly morphs color on tap */
}

/* 2. Active State: Target the icon ONLY when the radio button is checked */
.radio-card input[type="radio"]:checked + .pickup-box i.fas {
    color: #F4B400 !important; /* Swaps to signature library yellow */
}/* End custom CSS */