/** Shopify CDN: Minification failed

Line 481:0 Unexpected "}"
Line 650:0 Unexpected "}"

**/
/* Izzy Coffee native storefront layer. Scoped to custom Izzy selectors and Dawn/Craft hooks. */
:root {
  --izzy-espresso: #120b07;
  --izzy-roast: #5f3928;
  --izzy-caramel: #b7894f;
  --izzy-cream: #f5efe7;
  --izzy-ink: #1b120d;
}

.header-wrapper {
  background: linear-gradient(180deg, #1b100b 0%, #100905 100%) !important;
  border-bottom: 1px solid rgba(183, 137, 79, .28);
}
.header__menu-item,
.header__active-menu-item,
.menu-drawer__menu-item {
  color: #f7efe6 !important;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 1.2rem;
}
.header__menu-item:hover,
.header__active-menu-item,
.header__menu-item[aria-current="page"] {
  color: var(--izzy-caramel) !important;
}
.header__submenu {
  background: #120b07 !important;
  border: 1px solid rgba(183, 137, 79, .35) !important;
}
.header__submenu .header__menu-item {
  color: #f7efe6 !important;
}
.header__heading-logo,
.izzy-site-logo--header {
  background: transparent !important;
  max-height: 68px;
  object-fit: contain;
}
.announcement-bar,
.announcement-bar-section,
.utility-bar {
  background: #623724 !important;
  color: #fff7ed !important;
}

.izzy-home-experience {
  background: #f5efe7;
  color: var(--izzy-ink);
}
.izzy-lux-hero {
  position: relative;
  min-height: clamp(540px, 64vw, 820px);
  overflow: hidden;
  background: #120b07;
  color: #fff7ed;
  isolation: isolate;
}
.izzy-lux-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.izzy-lux-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.94) contrast(1.08) brightness(.72);
  transform: scale(1.035);
  animation: izzyHeroDrift 18s ease-in-out infinite alternate;
}
.izzy-lux-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 28%, rgba(183,137,79,.22), transparent 34%),
    linear-gradient(90deg, rgba(18,11,7,.94) 0%, rgba(18,11,7,.66) 44%, rgba(18,11,7,.38) 100%);
}
.izzy-lux-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(18,11,7,.92), transparent);
}
@keyframes izzyHeroDrift {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.085) translate3d(-1.5%, 1%, 0); }
}
.izzy-lux-grid {
  width: min(1180px, calc(100% - 36px));
  min-height: inherit;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(52px, 8vw, 92px) 0;
}
.izzy-lux-eyebrow,
.izzy-daily-kicker,
.izzy-card-eyebrow,
.izzy-collection-guide__kicker {
  color: var(--izzy-caramel);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.izzy-lux-copy h1 {
  color: #fff7ed;
  font-size: clamp(4rem, 6.3vw, 8.2rem);
  line-height: .9;
  margin: 1.2rem 0 1.6rem;
  max-width: 780px;
}
.izzy-lux-copy p {
  max-width: 650px;
  color: rgba(255, 247, 237, .86);
  font-size: clamp(1.55rem, 1.4vw, 1.9rem);
  line-height: 1.65;
}
.izzy-lux-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 2.4rem 0;
}
.izzy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 2rem;
  border-radius: 999px;
  background: #fff7ed;
  color: #1b120d !important;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 1.2rem;
}
.izzy-button--ghost {
  background: rgba(255, 247, 237, .1);
  border: 1px solid rgba(255, 247, 237, .45);
  color: #fff7ed !important;
}
.izzy-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 247, 237, .18);
  background: rgba(18, 11, 7, .42);
  backdrop-filter: blur(8px);
}
.izzy-proof {
  padding: 1.6rem;
  border-right: 1px solid rgba(255, 247, 237, .14);
}
.izzy-proof:last-child { border-right: 0; }
.izzy-proof strong {
  display: block;
  color: #fff7ed;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 1.1rem;
  margin-bottom: .7rem;
}
.izzy-proof span {
  color: rgba(255, 247, 237, .72);
  font-size: 1.25rem;
  line-height: 1.45;
}
.izzy-feature-card {
  width: min(430px, 100%);
  justify-self: end;
  background: rgba(18, 11, 7, .72);
  border: 1px solid rgba(255, 247, 237, .22);
  box-shadow: 0 24px 80px rgba(0,0,0,.38);
  padding: 1.2rem;
  transform-origin: center;
  animation: izzyCardFloat 8s ease-in-out infinite;
}
@keyframes izzyCardFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-.2deg); }
  50% { transform: translate3d(0, -8px, 0) rotate(.25deg); }
}
.izzy-rotator {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #24150e;
}
.izzy-rotator img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: izzyRotateImage 24s infinite;
}
.izzy-rotator img:nth-child(2) { animation-delay: 8s; }
.izzy-rotator img:nth-child(3) { animation-delay: 16s; }
@keyframes izzyRotateImage {
  0% { opacity: 0; transform: scale(1.04); }
  7%, 31% { opacity: 1; transform: scale(1); }
  38%, 100% { opacity: 0; transform: scale(1.035); }
}
.izzy-card-copy {
  padding: 1.5rem .6rem .4rem;
}
.izzy-card-copy h2 {
  color: #fff7ed;
  margin: .4rem 0 .6rem;
  font-size: clamp(2rem, 2vw, 2.8rem);
  line-height: 1.05;
}
.izzy-card-copy p {
  color: rgba(255, 247, 237, .76);
  margin: 0;
  line-height: 1.5;
}
.izzy-daily-brewing {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 88px) 0;
}
.izzy-daily-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 3rem;
}
.izzy-daily-intro h2 {
  color: var(--izzy-ink);
  font-size: clamp(3.2rem, 5vw, 6.8rem);
  line-height: .92;
  margin: 1rem 0 0;
}
.izzy-daily-intro p {
  color: rgba(27, 18, 13, .74);
  font-size: 1.65rem;
  line-height: 1.65;
  max-width: 720px;
}
.izzy-shop-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}
.izzy-shop-row a {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  background: var(--category-image) center/cover no-repeat;
  box-shadow: 0 24px 55px rgba(27, 18, 13, .12);
}
.izzy-shop-row a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.76), rgba(0,0,0,.18) 58%, transparent);
  transition: background .2s ease;
}
.izzy-shop-row a:hover::before {
  background: linear-gradient(0deg, rgba(0,0,0,.86), rgba(0,0,0,.12));
}
.izzy-shop-row span {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2rem 1.2rem;
  color: #fff;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 1.55rem;
}
.izzy-collection-guide {
  background: #f5efe7;
  color: var(--izzy-ink);
  padding: clamp(44px, 6vw, 76px) 0;
}
.izzy-collection-guide__inner {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}
.izzy-collection-guide h2 {
  margin: .8rem 0 0;
  color: var(--izzy-ink);
  font-size: clamp(3rem, 4.2vw, 5.8rem);
  line-height: .96;
  word-break: normal;
}
.izzy-collection-guide__copy {
  font-size: 1.65rem;
  line-height: 1.75;
  color: rgba(27,18,13,.74);
}
.izzy-collection-guide__copy p:first-child { margin-top: 0; }
.izzy-collection-guide__copy p:not(:first-child) { display: none; }
.izzy-collection-guide__copy a { color: var(--izzy-roast); }
.collection-hero__description { display: none !important; }

.footer,
.footer * {
  font-family: var(--font-body-family) !important;
}
.footer {
  background: #050403 !important;
  color: rgba(255,247,237,.78) !important;
}
.footer a,
.footer .link,
.footer .list-menu__item--link,
.footer .copyright__content a {
  color: rgba(255,247,237,.78) !important;
  font-size: 1.35rem !important;
  text-decoration: none !important;
}
.footer a:hover { color: var(--izzy-caramel) !important; }
.footer-block__heading {
  color: var(--izzy-caramel) !important;
  font-size: 1.45rem !important;
  letter-spacing: .03em;
}
.footer__content-bottom-wrapper,
.footer__copyright,
.copyright__content {
  color: rgba(255,247,237,.68) !important;
  font-size: 1.2rem !important;
}
.footer-block-image img,
.izzy-site-logo--footer {
  background: transparent !important;
  max-width: 150px !important;
  height: auto !important;
}
.footer .list-social__link { color: #fff7ed !important; }

.izzy-404 {
  min-height: 62vh;
  display: grid;
  place-items: center;
  padding: 8rem 1.8rem;
  background: linear-gradient(rgba(18,11,7,.76), rgba(18,11,7,.8)), url("coffee-beans-sack.webp") center/cover no-repeat;
  color: #fff7ed;
  text-align: center;
}
.izzy-404__inner { max-width: 780px; }
.izzy-404 h1 {
  color: #fff7ed;
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: .92;
  margin: 0 0 1.6rem;
}
.izzy-404 p {
  color: rgba(255,247,237,.82);
  font-size: 1.8rem;
  line-height: 1.65;
  margin-bottom: 2.4rem;
}
.izzy-404__links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .izzy-lux-grid,
  .izzy-daily-intro,
  .izzy-collection-guide__inner {
    grid-template-columns: 1fr;
  }
  .izzy-feature-card { justify-self: start; }
  .izzy-proof-row,
  .izzy-shop-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .izzy-lux-hero { min-height: auto; }
  .izzy-lux-grid { padding: 44px 0; }
  .izzy-proof-row,
  .izzy-shop-row {
    grid-template-columns: 1fr;
  }
  .izzy-lux-actions { align-items: stretch; }
  .izzy-button { width: 100%; }
}

/* Native logo and final header/footer polish */
.header__heading-link {
  display: block !important;
  width: 155px;
  min-height: 74px;
  background: url("izzy-white-logo.webp") center/contain no-repeat !important;
}
.header__heading-link > * {
  opacity: 0 !important;
}
.header__heading,
.header__heading-link {
  line-height: 0 !important;
}
.footer .footer-block--menu .list-menu__item--link,
.footer .footer-block__details-content,
.footer .rte,
.footer .rte a {
  font-size: 1.35rem !important;
  line-height: 1.8 !important;
}

/* Izzy footer, marquee, and page polish */
.izzy-footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none !important;
}
.izzy-footer-logo-link img {
  width: min(175px, 100%);
  height: auto;
  object-fit: contain;
}
.footer__content-bottom {
  border-top: 1px solid rgba(255, 247, 237, .1) !important;
  padding-top: 2.2rem !important;
}
.izzy-footer-copyright-row {
  justify-content: center !important;
  padding-bottom: 1.8rem;
}
.izzy-footer-copyright-row .copyright__content {
  color: rgba(255,247,237,.68) !important;
  font-size: 1.25rem !important;
  letter-spacing: .02em;
}
.footer .footer-block.grid__item {
  min-width: 0;
}
.footer .footer-block__heading {
  margin-bottom: 1.4rem !important;
}
.footer .rte p,
.footer .rte a,
.footer .list-menu__item--link {
  color: rgba(255,247,237,.78) !important;
  font-size: 1.35rem !important;
  line-height: 1.85 !important;
}
.footer .rte a:hover,
.footer .list-menu__item--link:hover {
  color: var(--izzy-caramel) !important;
}


}

.template-page main,
.template-search main,
.shopify-policy__container {
  background: #f5efe7;
  color: var(--izzy-ink);
}
.template-page .main-page-title,
.template-search h1,
.shopify-policy__title h1 {
  color: var(--izzy-ink) !important;
  font-size: clamp(3.6rem, 5vw, 6.4rem) !important;
  line-height: .96 !important;
  text-align: center;
  max-width: 940px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.template-page .page-width--narrow,
.shopify-policy__container {
  max-width: 1040px !important;
}
.template-page .rte,
.shopify-policy__body,
.template-search .template-search__header {
  font-size: 1.65rem;
  line-height: 1.78;
  color: rgba(27,18,13,.76);
}
.template-page .rte,
.shopify-policy__body {
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(95,57,40,.14);
  padding: clamp(2.4rem, 4vw, 4.8rem);
  box-shadow: 0 24px 70px rgba(27,18,13,.08);
}
.shopify-policy__container {
  padding-top: clamp(4.4rem, 7vw, 8rem) !important;
  padding-bottom: clamp(5rem, 8vw, 9rem) !important;
}
.shopify-policy__body h2,
.template-page .rte h2,
.template-page .rte h3 {
  color: var(--izzy-roast);
}
.shopify-policy__body a,
.template-page .rte a {
  color: var(--izzy-roast);
  text-underline-offset: .25em;
}
.contact .field__input,
.template-search .search__input,
.shopify-policy__body input,
.shopify-policy__body textarea {
  background: #fffaf4 !important;
  border-color: rgba(95,57,40,.25) !important;
}
.contact .button,
.template-search .button {
  background: var(--izzy-roast) !important;
  color: #fff7ed !important;
}


/* Izzy runtime footer cache defense */
.footer__payment,
.footer__localization,
.footer .policies,
.footer .copyright__content a[href*="shopify.com"] {
  display: none !important;
}
.footer__content-bottom-wrapper:not(.izzy-footer-copyright-row) {
  justify-content: center !important;
}
.footer-block-image .placeholder-svg {
  display: none !important;
}


/* Izzy stronger page styling */
main .main-page-title,
.template-search h1,
.shopify-policy__title h1 {
  color: var(--izzy-ink) !important;
  text-align: center !important;
  font-size: clamp(3.8rem, 5vw, 6.2rem) !important;
  line-height: 1 !important;
  margin-top: clamp(4rem, 6vw, 7rem) !important;
  margin-bottom: clamp(2.4rem, 4vw, 4rem) !important;
}
main .page-width--narrow .rte,
.shopify-policy__body {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  background: #fffaf4;
  border: 1px solid rgba(95,57,40,.16);
  box-shadow: 0 28px 80px rgba(27,18,13,.08);
  padding: clamp(2.4rem, 4vw, 4.8rem);
  color: rgba(27,18,13,.76);
  font-size: 1.65rem;
  line-height: 1.78;
}
.izzy-page-intro {
  max-width: 760px;
  margin: 0 auto clamp(2.8rem, 4vw, 4.4rem);
  text-align: center;
}
.izzy-page-intro p {
  margin: 0;
  font-size: clamp(1.7rem, 1.4vw, 2rem);
  line-height: 1.7;
}
.izzy-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}
.izzy-page-grid > div {
  background: #f5efe7;
  border: 1px solid rgba(95,57,40,.14);
  padding: 2.2rem;
}
.izzy-page-grid h2 {
  margin: 0 0 1rem;
  color: var(--izzy-roast);
  font-size: 1.9rem;
  line-height: 1.2;
}
.izzy-page-grid p {
  margin: 0;
  color: rgba(27,18,13,.72);
  line-height: 1.65;
}
.contact {
  max-width: 980px !important;
  background: #fffaf4;
  border: 1px solid rgba(95,57,40,.16);
  box-shadow: 0 28px 80px rgba(27,18,13,.08);
  padding: clamp(2.4rem, 4vw, 4.8rem) !important;
  margin-bottom: clamp(5rem, 8vw, 8rem);
}
.template-search .template-search__header,
.template-search .facets-wrapper,
.template-search .product-grid-container {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.shopify-policy__container {
  max-width: 1040px !important;
}
.shopify-policy__body {
  margin-bottom: clamp(5rem, 8vw, 8rem);
}
@media (max-width: 760px) {
  .izzy-page-grid {
    grid-template-columns: 1fr;
  }
  main .page-width--narrow .rte,
  .shopify-policy__body,
  .contact {
    padding: 2.2rem !important;
  }
}

/* Izzy refined marquee pages collections:start */

}
/* Izzy native announcement marquee:end */

/* Izzy native announcement marquee:start */
.announcement-bar-section,
.announcement-bar-section .utility-bar,
.announcement-bar-section .utility-bar__grid,
.announcement-bar-section .utility-bar__grid.page-width {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  display: block !important;
  overflow: hidden !important;
}

.announcement-bar-section .announcement-bar {
  display: block !important;
  width: 100vw !important;
  max-width: none !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.announcement-bar__message.izzy-marquee {
  display: block !important;
  width: 100vw !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 9px 0 !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-align: left !important;
}

.izzy-marquee__track {
  display: inline-flex !important;
  width: max-content !important;
  min-width: max-content !important;
  align-items: center !important;
  animation: izzyMarqueeSeamless 56s linear infinite !important;
  will-change: transform;
}

.izzy-marquee__group {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

@keyframes izzyMarqueeSeamless {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-33.333333%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .izzy-marquee__track {
    animation: none !important;
    transform: none !important;
  }
}
/* Izzy native announcement marquee:end */
