/** Shopify CDN: Minification failed

Line 421:5 Expected ":"

**/
/* ==========================================================================
   SOFINE — Philharmonia Orchestra Shopify Theme
   Base Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   Font Faces
   Current files in assets:
   - ABCOracle-Black.woff2  (headings — weight 900)
   - ITC - CheltenhamITCPro-Book.otf  (body — weight 400)
   Add more weights as you get them and duplicate the @font-face blocks.
   Note: Shopify may rename uploaded files (spaces → hyphens, etc).
   Check the actual filename in your assets list and update if needed.
   -------------------------------------------------------------------------- */

@font-face {
  font-family: 'ABCOracle';
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url('ABCOracle-Black.woff2') format('woff2');
}

@font-face {
  font-family: 'CheltenhamITCPro';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('ITC_-_CheltenhamITCPro-Book.otf') format('opentype');
}


/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */

:root {
  /* Colors */
  --color-red: #F94239;
  --color-red-hover: #DC372F;
  --color-red-dark: #b9261f;
  --color-green: #19b684;
  --color-green-dark: #1a8464;
  --color-black: #1A1A1A;
  --color-white: #FFFFFF;
  --color-silver: #B2B9BE;
  --color-gold: #C4A06F;
  --color-violet: #CB93FF;
  --color-body: #272b31;
  --color-muted: #424852;
  --color-border: #000;
  --color-border-light: #eee;
  --color-bg: #fff;
  --color-bg-alt: #f5f5f5;

  /* Typography */
  --font-heading: 'ABCOracle', 'NeuzeitOffice', sans-serif;
  --font-body: 'CheltenhamITCPro', Georgia, serif;
  --font-size-base: 18px;
  --font-size-small: 0.8rem;
  --font-size-tiny: 0.7rem;
  --font-size-lead: 1.15rem;
  --font-size-large: 1.55rem;
  --font-size-xl: 2rem;
  --font-size-mega: 2.44rem;
  --letter-spacing-heading: 0.01em;

  /* Spacing */
  --spacing-xs: 6px;
  --spacing-sm: 12px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 80px;

  /* Layout */
  --max-width: 1600px;
  --content-padding: 15px;
  --header-height: 97px;
  --stave-width: 5px;

  /* Transitions */
  --transition-fast: 250ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  --transition-smooth: 300ms cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media (min-width: 1000px) {
  :root {
    --content-padding: 5%;
    --header-height: 144px;
  }
}

@media (min-width: 1600px) {
  :root {
    --content-padding: 80px;
  }
}


/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  line-height: 1.33;
  font-family: var(--font-body);
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-color: var(--color-bg);
  color: var(--color-body);
  overflow-y: scroll;
  min-height: 100%;
}

@media (max-width: 999px) {
  html { font-size: 16px; }
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-style: normal;
  letter-spacing: var(--letter-spacing-heading);
  margin: 0 0 0.3em;
  line-height: 1.1;
}

h1 { font-size: var(--font-size-mega); }
h2 { font-size: var(--font-size-xl); }
h3 { font-size: var(--font-size-large); }
h4, h5, h6 { font-size: 1rem; }

@media (max-width: 999px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
}

p {
  margin: 0 0 1.25em;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul, ol {
  margin: 1em 0 2em 1.5em;
  padding-left: 1em;
}

li {
  line-height: 1.25;
  margin-bottom: 0.5em;
}

strong { font-weight: bold; }
em { font-style: italic; }

::selection {
  color: #000;
  background: var(--color-green);
}

:focus-visible {
  outline: 3px solid #000;
  outline-offset: 3px;
}


/* --------------------------------------------------------------------------
   Layout Utilities
   -------------------------------------------------------------------------- */

.page-width {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--content-padding);
  padding-right: var(--content-padding);
}

.site-wrap {
  padding-top: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--content-padding);
  padding-right: var(--content-padding);
}


/* --------------------------------------------------------------------------
   Stave Borders (the Philharmonia's signature design element)
   -------------------------------------------------------------------------- */

.stave-top { border-top: var(--stave-width) solid var(--color-border); }
.stave-bottom { border-bottom: var(--stave-width) solid var(--color-border); }
.stave-both {
  border-top: var(--stave-width) solid var(--color-border);
  border-bottom: var(--stave-width) solid var(--color-border);
}


/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  background-color: var(--color-red);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-heading);
  font-size: 90%;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  padding: 8px 30px;
  transition: all var(--transition-fast);
  text-decoration: none;
  border-radius: 3px;
  border: none;
  box-shadow: inset 0 -2px 0 0 rgba(0,0,0,0.2);
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.6;
}

.btn:hover {
  background-color: var(--color-red-dark);
}

.btn:active {
  transform: translateY(1px);
  box-shadow: none;
}

.btn--black {
  background-color: #000;
  color: #fff;
}
.btn--black:hover { background-color: #222; }

.btn--white {
  background-color: #fff;
  color: var(--color-red);
}
.btn--white:hover { background-color: #e6e6e6; }

.btn--ghost {
  background: none;
  border: 1px solid var(--color-red);
  box-shadow: inset 0 -1px 0 0 var(--color-red);
  color: var(--color-red);
  padding: 7px 29px;
}
.btn--ghost:hover {
  color: var(--color-red-dark);
  border-color: var(--color-red-dark);
  background: none;
}

.btn--large {
  font-size: 110%;
  padding: 10px 40px;
}

.btn--full {
  display: block;
  width: 100%;
}


/* --------------------------------------------------------------------------
   Links (editorial underline style)
   -------------------------------------------------------------------------- */

.link-underline {
  color: var(--color-red);
  display: inline;
  background-image: linear-gradient(
    transparent calc(100% - 4px),
    rgba(220, 55, 47, 0.3) calc(100% - 4px),
    rgba(220, 55, 47, 0.3) calc(100% - 2px),
    transparent calc(100% - 2px)
  );
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: background-size 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding-bottom: 0.2em;
}
.link-underline:hover {
  background-size: 0 100%;
  opacity: 0.8;
}


/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  width: 100%;
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  transition: all var(--transition-fast);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-heading);
}

/* Top bar (red announcement bar) */
.top-bar {
  background: var(--color-red);
  color: #fff;
  font-size: 80%;
}

@media (min-width: 1000px) {
  .top-bar { font-size: 85%; }
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4px 15px;
}

@media (min-width: 1000px) {
  .top-bar__inner { padding: 8px var(--content-padding); }
}

.top-bar__link {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}

.top-bar__link + .top-bar__link {
  margin-left: 1.5em;
}

/* Main bar — background spans full width, content is constrained */
.main-bar {
  background-color: #fff;
}

.main-bar__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 15px;
}

@media (min-width: 1000px) {
  .main-bar__inner { padding: 10px var(--content-padding); }
}

.main-bar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-top: var(--stave-width) solid #000;
  border-bottom: var(--stave-width) solid #000;
  transition: all var(--transition-fast);
}

@media (min-width: 1000px) {
  .main-bar__content {
    height: 88px;
    padding: 0;
  }
}

/* Logo */
.header-logo__link {
  display: block;
  transition: all var(--transition-fast);
  transform-origin: 0 50%;
}

.header-logo__img {
  display: block;
  width: 180px;
  src = 'https://philharmonia.co.uk/themes/childtheme//assets/images/philharmonia-logo.svg'
}

@media (min-width: 800px) {
  .header-logo__img { width: 270px; }
}

@media (min-width: 1200px) {
  .header-logo__img {
    width: 320px;
  }
}

/* Header scrolled state */
.site-header.scrolled {
  box-shadow: 0 0 7px rgba(0,0,0,0.3);
}

@media (min-width: 1000px) {
  .site-header.scrolled .main-bar__content { height: 64px; }
  .site-header.scrolled .header-logo__link { transform: scale(0.75); }
  .site-header.scrolled { --header-height: 120px; }
}

/* Desktop navigation */
.nav-desktop {
  display: none;
}

@media (min-width: 1000px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
  }
}

.nav-desktop__link {
  font-size: 1rem;
  padding: 8px 5px;
  position: relative;
}

@media (min-width: 1200px) {
  .nav-desktop__link { font-size: 1.1rem; }
}

.nav-desktop__link:hover {
  color: var(--color-red);
}

/* Header actions (search, account, cart) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (min-width: 1000px) {
  .header-actions { gap: 20px; }
}

.header-actions__btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: inherit;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  transition: color var(--transition-fast);
}

.header-actions__btn:hover {
  color: var(--color-red);
}

.header-actions__cart-count {
  background: var(--color-red);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

@media (min-width: 1000px) {
  .mobile-toggle { display: none; }
}

.hamburger {
  width: 20px;
  height: 15px;
  position: relative;
}

@media (min-width: 800px) {
  .hamburger { width: 28px; }
}

.hamburger__line {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #000;
  left: 0;
  transition: 0.25s ease-in-out;
}

@media (min-width: 1000px) {
  .hamburger__line { height: 3px; }
}

.hamburger__line:nth-child(1) { top: 0; }
.hamburger__line:nth-child(2),
.hamburger__line:nth-child(3) { top: 5px; }
.hamburger__line:nth-child(4) { top: 10px; }

@media (min-width: 1000px) {
  .hamburger__line:nth-child(2),
  .hamburger__line:nth-child(3) { top: 8px; }
  .hamburger__line:nth-child(4) { top: 16px; }
}

/* Mobile nav open state */
.nav-open .hamburger__line:nth-child(1) { top: 5px; width: 0; left: 50%; }
.nav-open .hamburger__line:nth-child(2) { transform: rotate(45deg); }
.nav-open .hamburger__line:nth-child(3) { transform: rotate(-45deg); }
.nav-open .hamburger__line:nth-child(4) { top: 5px; width: 0; left: 50%; }

/* Mobile nav */
.nav-mobile {
  display: none;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 0 20px 20px;
  box-shadow: 0 5px 7px rgba(0,0,0,0.3);
  max-height: 70vh;
  overflow-y: auto;
}

@media (min-width: 1000px) {
  .nav-mobile { display: none !important; }
}

.nav-open .nav-mobile { display: block; }

.nav-mobile__item {
  font-size: 1.15rem;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.nav-mobile__item a {
  display: block;
}

.nav-mobile__item a:hover {
  color: var(--color-red);
}


/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background-color: #000;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-heading);
  font-size: 90%;
  margin-top: 100px;
  padding: 30px 0;
}

@media (min-width: 1000px) {
  .site-footer { padding: 60px 0; }
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.footer__logo {
  width: 200px;
  margin-bottom: 30px;
}

@media (min-width: 1000px) {
  .footer__logo { margin-bottom: 60px; }
}

.footer__logo img {
  width: 100%;
  /* Invert for white version, or use a white logo asset */
  filter: brightness(0) invert(1);
}

.footer__details {
  padding: 30px 0;
  border-top: var(--stave-width) solid #fff;
  border-bottom: var(--stave-width) solid #fff;
}

@media (min-width: 1000px) {
  .footer__details { padding: 60px 0; }
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 1000px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }
}

.footer__section-title {
  font-size: 1rem;
  margin-bottom: 1em;
  color: var(--color-green);
}

.footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav li { margin: 0; }

.footer__nav a {
  display: block;
  padding: 8px 0;
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.footer__nav a:hover { opacity: 1; }

/* Social links */
.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.85rem;
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.footer__social-link:hover { opacity: 1; }

.footer__social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Newsletter */
.footer__newsletter {
  margin-top: 30px;
}

@media (min-width: 1000px) {
  .footer__newsletter {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 0;
  }
}

.footer__newsletter-form {
  display: flex;
  margin-top: 15px;
}

@media (min-width: 1000px) {
  .footer__newsletter-form { margin-top: 0; }
}

.footer__newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-family: var(--font-heading);
  padding: 8px 0;
  font-size: 0.9rem;
  min-width: 200px;
}

.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.footer__newsletter-input:focus { outline: none; border-color: #fff; }

.footer__newsletter-btn {
  background: var(--color-red);
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.85rem;
  border-radius: 0 3px 3px 0;
  transition: background var(--transition-fast);
}

.footer__newsletter-btn:hover { background: var(--color-red-dark); }

/* Footer bottom */
.footer__bottom {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 1000px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
  }
}

.footer__credit {
  font-size: var(--font-size-tiny);
  opacity: 0.5;
}

.footer__credit a {
  opacity: 0.6;
}

.footer__credit a:hover { opacity: 1; }


/* --------------------------------------------------------------------------
   Hero Section (with video support)
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: var(--stave-width) solid #000;
}

.hero__media {
  position: relative;
  width: 100%;
  min-height: 300px;
}

@media (min-width: 1000px) {
  .hero__media { min-height: 500px; }
}

.hero__video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 5%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.1) 50%,
    transparent 100%
  );
  color: #fff;
}

.hero__content {
  max-width: 700px;
}

.hero__title {
  font-size: 2rem;
  margin-bottom: 0.3em;
  color: #fff;
}

@media (min-width: 1000px) {
  .hero__title { font-size: var(--font-size-mega); }
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1em;
  opacity: 0.9;
}

@media (min-width: 1000px) {
  .hero__subtitle { font-size: var(--font-size-lead); }
}

.hero__video-control {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2em;
  cursor: pointer;
  opacity: 0.7;
  transition: all var(--transition-fast);
  z-index: 10;
  padding: 5px;
}

.hero__video-control:hover {
  transform: scale(1.1);
  opacity: 1;
}


/* --------------------------------------------------------------------------
   Section Containers (matching the Philharmonia's content blocks)
   -------------------------------------------------------------------------- */

.section {
  position: relative;
  margin-top: 15px;
}

@media (min-width: 1000px) {
  .section { margin-top: 30px; }
}

.section--stave {
  border-top: var(--stave-width) solid #000;
  padding-top: 15px;
}
.section img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 1000px) {
  .section--stave { padding-top: 30px; }
}

.section__header {
  margin-bottom: 0.8em;
}

.section__title {
  font-size: var(--font-size-xl);
  margin-bottom: 0.2em;
}


/* --------------------------------------------------------------------------
   Product Cards (matching event card styling)
   -------------------------------------------------------------------------- */

.product-card {
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-heading);
  font-size: 90%;
}

.product-card__image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  background-color: #222;
  aspect-ratio: 1 / 1;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.03);
}

.product-card__details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-top: 10px;
  margin-bottom: 15px;
}

@media (min-width: 1000px) {
  .product-card__details {
    margin-bottom: 30px;
    border-bottom: var(--stave-width) solid #f1f1f1;
    padding-bottom: 15px;
  }
}

.product-card__title {
  font-size: var(--font-size-large);
  margin-bottom: 0.3em;
}

.product-card__price {
  color: var(--color-green);
  font-weight: bold;
  margin-bottom: 0.5em;
}

.product-card__vendor {
  color: var(--color-muted);
  font-size: 0.85rem;
  margin-bottom: 0.3em;
}


/* --------------------------------------------------------------------------
   Grid Layout
   -------------------------------------------------------------------------- */

.grid {
  display: grid;
  gap: 25px;
}

@media (min-width: 1000px) {
  .grid { gap: 50px; }
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }

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

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


/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */

.visually-hidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.text-center { text-align: center; }
.text-green { color: var(--color-green); }
.text-red { color: var(--color-red); }
.text-muted { color: var(--color-muted); }
.font-heading { font-family: var(--font-heading); font-weight: 900; letter-spacing: var(--letter-spacing-heading); }

.bg-black { background-color: var(--color-black); color: #fff; }
.bg-red { background-color: var(--color-red); color: #fff; }
.bg-green { background-color: var(--color-green); color: var(--color-body); }
.bg-light { background-color: var(--color-bg-alt); }


/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
  animation: fadeIn 600ms cubic-bezier(0.42, 0.01, 0.23, 1) both;
}

.animate-fadeInUp {
  animation: fadeInUp 600ms cubic-bezier(0.42, 0.01, 0.23, 1) both;
}
