/* Sub-site bindings of roles to specific components */
@layer theme {
  /* Site nav colours via roles (structure in shared components) */
  :where(#site-nav, #site22) {
    background: var(--site-nav-bg);
    color: var(--site-nav-ink);
    border-bottom: var(--site-nav-rule);
  }
  
  /* page-nav*/
	
nav.page > ul > li:first-child > a {
	height: calc(.8 * var(--page-nav-height))
}

  /* Buttons (shared structure) */
  .button, .btn, button, input[type="submit"] {
    --btn-bg:  var(--link);
    --btn-ink: var(--color-on-accent);
    --btn-bg-hover: color-mix(in oklab, var(--btn-bg), black 8%);

    background: var(--btn-bg);
    color: var(--btn-ink);
  }
  .button:hover, .btn:hover, button:hover, input[type="submit"]:hover {
    background: var(--btn-bg-hover);
  }

  label[for="collapsed"], #show-sitenav {
    display: none
  }  
  
  .media-object:nth-of-type(odd) {
  	background-color: var(--color-accent);
  	color: var(--palette-on-accent);
  }
  
  
    .media-object:nth-of-type(even)  {
  	background-color: var(--color-accent-2);
  	color: var(--palette-on-accent);
  }
  
  .media-object .button, .media-object .btn {
/* 
	--btn-bg:  var(--color-accent-2);
    --btn-bg-hover: color-mix(in oklab, var(--btn-bg), black 20%);

    background: var(--btn-bg);
 */
    text-decoration: none;
  }
  
  .media-object a {
  	color: inherit;
  	text-decoration: underline;
  
  }
  
  .quote.media-object {
  	padding-inline: 2%;
  }
  
  .quote img {
  	width: 20%
  }
  
  .quote .details {
	  width: 70%;
  	font-size: var(--font-size-large);
  	font-weight: var(--weight-medium); 
  }
  
  
  /* Essential pricing styles */
  
  /* ===================================
     TOOLBAR - Ticket Type Selector
     =================================== */
  
  .pricing .toolbar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
  }
  
  .pricing .toolbar .label {
    margin: 0;
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
  }
  
  .pricing .toolbar .group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex: 1;
  }
  
  .pricing .toolbar .chip {
    padding: 0.5rem 1rem;
    background: transparent;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    border: 1.5px solid #e2e8f0;
    transition: all 0.15s ease;
  }
  
  .pricing .toolbar .chip:hover {
    background: #f8fafc;
    border-color: #cbd5e0;
    color: #475569;
  }
  
  .pricing .toolbar .chip[aria-pressed="true"] {
    background: #5b3cc4;
    color: #ffffff;
    border-color: #5b3cc4;
    font-weight: 600;
  }
  
  .pricing .toolbar .chip[aria-pressed="true"]:hover {
    background: #4c2fb8;
    border-color: #4c2fb8;
  }
  
  .pricing .toolbar .chip:focus-visible {
    outline: 2px solid #5b3cc4;
    outline-offset: 2px;
  }
  
  /* ===================================
     CARDS - Compact Structure
     =================================== */
  
  .pricing .passes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
  }
  
  .pricing .pass {
    padding: 1rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
  }
  
  .pricing .pass.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Card header */
  .pricing .pass .head {
   /* 
 margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
 */
  }
  
  .pricing .pass .title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
  }
  
  .pricing .pass .price {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
    flex-wrap: wrap;
  }
  
  .pricing .pass .price .js-price {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
  }
  
  .pricing .pass .price .js-note {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #64748b;
  }
  
  /* Price animation */
  .pricing .pass .price.bump {
    animation: priceBump 0.3s ease;
  }
  
  @keyframes priceBump {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  
  /* Content spacing */
  .pricing .pass > ul,
  .pricing .pass > p,
  .pricing .pass > div:not(.head):not(.aud-local) {
    margin-bottom: 0.5rem;
  }
  
  .pricing .pass ul {
    /* 
margin-top: 0.5rem;
    margin-bottom: 0.5rem;
 */
  }
  
  .pricing .pass ul li {
    padding: 0.25rem 0;
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  
  /* ===================================
     PER-CARD TICKET SELECTOR - Minimal
     =================================== */
  
  .pricing .pass .aud-local {
    margin: 0.5rem 0 0.375rem 0;
    padding: 0;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .pricing .pass .aud-local .label {
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
    color: #64748b;
  }
  
  .pricing .pass .aud-select {
    flex: 1;
    padding: 0.375rem 0.625rem;
    font-size: 0.8125rem;
    font-weight: 500;
    background: #ffffff;
    border: 1.5px solid #cbd5e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
    
    /* Custom arrow */
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.625rem center;
    padding-right: 2.25rem;
  }
  
  .pricing .pass .aud-select:hover {
    border-color: #94a3b8;
  }
  
  .pricing .pass .aud-select:focus {
    outline: none;
    border-color: #5b3cc4;
    box-shadow: 0 0 0 3px rgba(91, 60, 196, 0.1);
  }
  
  /* Tiers line - no background */
  .pricing .pass .tiers-line {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0.375rem 0;
    padding: 0;
    background: transparent;
    border: none;
    line-height: 1.4;
  }
  
  /* Register button - keep compact */
  .pricing .pass .button {
    margin-top: 0.625rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }
  
  /* ===================================
     RESPONSIVE
     =================================== */
  
  @media (max-width: 768px) {
    .pricing .toolbar {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.875rem;
    }
    
    .pricing .toolbar .chip {
      font-size: 0.85rem;
      padding: 0.5rem 0.875rem;
    }
    
    .pricing .passes {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    
    .pricing .pass {
      padding: 1rem;
    }
    
    .pricing .pass .title {
      font-size: 1.6rem;
    }
    
    .pricing .pass .price .js-price {
      font-size: 1.25rem;
    }
    
    .pricing .pass .aud-local {
      flex-direction: column;
      align-items: stretch;
      gap: 0.5rem;
    }
    
    .pricing .pass .aud-select {
      width: 100%;
    }
  }

  
  
  
}
