/** Shopify CDN: Minification failed

Line 862:21 Unexpected "*"

**/
/* ==========================================================================
   Giffard Visual Refresh
   Overrides Taste theme defaults with mockup design system.
   Spec: docs/superpowers/specs/2026-04-04-giffard-visual-refresh-design.md
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. COLOR PALETTE
   Override Shopify color scheme CSS custom properties.
   Shopify uses RGB triplets (e.g., "26,26,24") for its color variables.
   -------------------------------------------------------------------------- */

/* Primary scheme: warm cream background, warm black text */
.color-scheme-1 {
  --color-background: 250,248,244;
  --color-foreground: 26,26,24;
  --color-button: 26,26,24;
  --color-button-text: 250,248,244;
  --color-secondary-button: 250,248,244;
  --color-secondary-button-text: 26,26,24;
  --color-link: 26,26,24;
  --color-shadow: 26,26,24;
}

/* Accent/gold custom property for use throughout */
:root {
  --giffard-accent: 138,122,90;
  --giffard-accent-hex: #8a7a5a;
  --giffard-secondary-text: #5a5a52;
  --giffard-warm-surface: #f0ebe0;
  --giffard-dark-bg: #1a1a18;
  --giffard-dark-card: #242420;
  --giffard-light-surface: #e8e0d0;
}

/* --------------------------------------------------------------------------
   2. BUTTONS
   Pill shape, refined sizing, consistent styling across all button types.
   Theme uses --buttons-radius and --buttons-radius-outset variables.
   -------------------------------------------------------------------------- */

:root {
  --buttons-radius: 100px;
  --buttons-radius-outset: 100px;
}

/* Primary button refinements - match mockup sizing (padding only, no min-height) */
.button,
.shopify-challenge__button,
.customer button {
  padding: 1.2rem 3.2rem;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  min-height: auto;
}

/* Secondary button: keep as outlined pill button (used for "Add to cart" in grids) */
.button--secondary {
  border-radius: 100px;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

/* Tertiary button: inherit pill shape */
.button--tertiary {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

/* Quick add buttons in product cards */
.quick-add__submit {
  border-radius: 100px;
  padding: 0.9rem 2rem;
  min-height: auto;
}

/* --------------------------------------------------------------------------
   3. CARDS
   Rounded corners, subtle borders, hover lift effect.
   Theme uses --product-card-corner-radius and similar variables.
   -------------------------------------------------------------------------- */

:root {
  --product-card-corner-radius: 1.6rem;
  --collection-card-corner-radius: 1.6rem;
  --blog-card-corner-radius: 1.6rem;
}

/* Product cards - targeting actual DOM: .card-wrapper.product-card-wrapper > .card.card--standard */
.product-card-wrapper .card,
.product-card-wrapper .card__inner,
.product-card-wrapper .card--standard,
.product-card-wrapper .card--media {
  border-radius: 1.6rem !important;
  overflow: hidden;
}

.product-card-wrapper .card__inner {
  border: 0.5px solid rgba(var(--color-foreground), 0.08);
}

.product-card-wrapper {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Collection cards */
.collection-card-wrapper .card,
.collection-card-wrapper .card__inner {
  border-radius: 1.6rem;
  border: 0.5px solid rgba(var(--color-foreground), 0.08);
}

/* Blog/article cards */
.article-card-wrapper .card,
.article-card-wrapper .card__inner {
  border-radius: 1.6rem;
  border: 0.5px solid rgba(var(--color-foreground), 0.08);
}

/* Card image containers need matching radius */
.card__media,
.card__media img {
  border-radius: 1.6rem 1.6rem 0 0;
}

.card--card .card__media {
  border-radius: 1.5rem 1.5rem 0 0;
}

/* --------------------------------------------------------------------------
   4. INPUTS
   Pill-shaped inputs to match button styling.
   -------------------------------------------------------------------------- */

:root {
  --inputs-radius: 100px;
  --inputs-radius-outset: 100px;
}

.field__input,
.select__select,
.customer .field input,
.customer select {
  border-radius: 100px;
  border: 1px solid rgba(var(--color-foreground), 0.15);
}

/* --------------------------------------------------------------------------
   5. HEADER / NAVIGATION
   Frosted glass effect, refined link styling.
   -------------------------------------------------------------------------- */

.header-wrapper {
  background-color: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-wrapper--border-bottom {
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
}

/* Nav links */
.header__inline-menu .header__menu-item,
.header__inline-menu a {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.header__inline-menu .header__menu-item:hover,
.header__inline-menu a:hover {
  opacity: 1;
}

/* Sticky header keeps frosted glass */
.shopify-section-header-sticky .header-wrapper {
  background-color: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Reduce header height */
@media screen and (min-width: 990px) {
  .header {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}

/* Restructure header grid: logo left, nav centered, icons right */
@media screen and (min-width: 990px) {
  .header--middle-left {
    grid-template-columns: auto 1fr auto !important;
    grid-template-areas: 'heading navigation icons' !important;
  }

  .header--middle-left .header__heading {
    grid-area: heading;
  }

  .header--middle-left .header__inline-menu {
    grid-area: navigation;
    justify-self: center;
  }

  .header--middle-left .header__icons {
    grid-area: icons;
    justify-self: end;
  }
}

/* Frosted glass: override opaque color-scheme background */
.header-wrapper,
.header-wrapper.color-scheme-1 {
  background-color: rgba(250, 248, 244, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Shop Now CTA button in header */
.header__shop-now-cta {
  background: #1a1a18;
  color: #faf8f4;
  padding: 8px 20px !important;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  margin-left: 2rem;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  height: auto !important;
  min-height: auto !important;
  align-self: center;
}

.header__shop-now-cta:hover {
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   5b. HERO SECTION
   Align text left with page content, remove image border, full-bleed image.
   -------------------------------------------------------------------------- */

/* Remove image border/outline */
.image-with-text__media {
  border: none !important;
  outline: none !important;
}

/* Remove media border from global settings */
.image-with-text .global-media-settings {
  border: none !important;
  box-shadow: none !important;
}

/* Hero text content: align left */
.image-with-text__content {
  padding-left: 0 !important;
}

/* Hero buttons row: primary + text link side by side */
.image-with-text__buttons {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

/* Hero secondary text link (See the Recipes) */
.button--text-link {
  font-size: 1.3rem;
  color: rgb(var(--color-foreground));
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.3);
  padding-bottom: 0.2rem;
  letter-spacing: 0.04em;
  transition: border-color 0.2s ease;
}

.button--text-link:hover {
  border-bottom-color: rgba(var(--color-foreground), 0.7);
}

/* Hero description text: muted color, constrained */
.image-with-text__text {
  max-width: 400px;
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--giffard-secondary-text);
}

/* Hero headline sizing */
.image-with-text__heading.h1 {
  font-size: calc(var(--font-heading-scale) * 4.8rem);
  line-height: 1.08;
}

/* --------------------------------------------------------------------------
   5c. FIVE EXPRESSIONS / FEATURED COLLECTION
   White card backgrounds, dark buttons, eyebrow above heading.
   -------------------------------------------------------------------------- */

/* Move "The Collection" description above the heading */
.collection__title {
  display: flex;
  flex-direction: column;
}

.collection__title .collection__description {
  order: -1;
  color: var(--giffard-accent-hex);
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.collection__title .collection__description p {
  margin: 0;
  color: var(--giffard-accent-hex);
}

/* Product cards: white background spans full card (image + name + price + button) */
.product-card-wrapper {
  background: #ffffff;
  border-radius: 1.6rem;
  border: 0.5px solid rgba(var(--color-foreground), 0.08);
}

.product-card-wrapper .card--standard .card__inner {
  background: #ffffff;
  border-radius: 1.6rem 1.6rem 0 0;
}

.product-card-wrapper .card__content {
  padding: 0 1.2rem 1.2rem;
}

.product-card-wrapper .quick-add {
  padding: 0 1.2rem 1.2rem;
}

/* Add to cart buttons in product grid: dark filled style */
.quick-add__submit.button--secondary {
  --color-button: 26,26,24;
  --color-button-text: 250,248,244;
  background-color: rgba(var(--color-button), 1);
  color: rgb(var(--color-button-text));
}

/* --------------------------------------------------------------------------
   6. TYPOGRAPHY REFINEMENTS
   Section eyebrows in gold accent, title sizing adjustments.
   -------------------------------------------------------------------------- */

/* Section eyebrow/caption text: gold accent, uppercase, small */
.caption,
.caption-with-letter-spacing,
.subtitle {
  color: var(--giffard-accent-hex);
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Section titles */
.section-header .title,
h2.title {
  font-weight: 400;
  line-height: 1.15;
}

/* Heading italic accent color */
h1 em, h2 em, h3 em {
  color: var(--giffard-accent-hex);
}

/* Secondary/muted text color */
.rte p,
.rich-text__text {
  color: var(--giffard-secondary-text);
}

/* --------------------------------------------------------------------------
   7. FOOTER
   Dark background, light text, muted links.
   -------------------------------------------------------------------------- */

.section-footer,
.footer {
  background-color: var(--giffard-dark-bg);
  color: rgba(255, 255, 255, 0.9);
}

.footer a,
.footer .footer-block__heading,
.footer .list-menu__item--link {
  color: rgba(255, 255, 255, 0.4);
}

.footer a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer .copyright__content {
  color: rgba(255, 255, 255, 0.25);
}

/* Footer heading (logo/brand) */
.footer .footer__heading,
.footer h2 {
  color: #faf8f4;
}

/* Social icons in footer */
.footer .list-social__link {
  color: rgba(255, 255, 255, 0.4);
}

.footer .list-social__link:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Override any color scheme applied to footer */
.footer.color-scheme-1,
.section-footer .color-scheme-1 {
  --color-background: 26,26,24;
  --color-foreground: 255,255,255;
}

/* --------------------------------------------------------------------------
   8. RECIPE CARDS (na-drinks-grid.liquid)
   Minor color alignment to match mockup palette exactly.
   Tabi's existing styles handle layout and structure.
   -------------------------------------------------------------------------- */

.na-recipe-cards {
  background: var(--giffard-dark-bg);
}

.na-recipe-card {
  background: var(--giffard-dark-card);
}

.na-recipe-card__title {
  color: #faf8f4;
}

.na-recipe-card__tag {
  color: var(--giffard-accent-hex);
}

.na-recipe-card__btn {
  background: #faf8f4;
  color: var(--giffard-dark-bg);
}

.na-recipe-card__btn:hover {
  background: #ffffff;
}

/* Flavor tag as pill */
.na-recipe-card__tag {
  display: inline-block;
  background: rgba(138, 122, 90, 0.18);
  color: var(--giffard-accent-hex) !important;
  padding: 4px 10px;
  border-radius: 100px;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Ingredient dividers */
.na-recipe-card__ingredients ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 0;
  list-style: none;
}

.na-recipe-card__ingredients ul li:last-child {
  border-bottom: none;
}

.na-recipe-card__ingredients ul {
  padding-left: 0 !important;
}

/* Made to Mix rich text section: dark bg, no bottom margin to connect to recipes */
.shopify-section:has(+ .na-recipe-cards-section) .rich-text {
  margin-bottom: 0 !important;
}

/* --------------------------------------------------------------------------
   10. LEGACY OF FLAVOR (image-with-text) - Press Play styling
   Dark background, rounded image, Five Generations eyebrow.
   -------------------------------------------------------------------------- */

#shopify-section-template--20798841520265__image_with_text_LiiwkX,
[id^="shopify-section-template--"][id$="__image_with_text_LiiwkX"] {
  background: #0d0d0b;
}

[id$="__image_with_text_LiiwkX"] .image-with-text__media,
[id$="__image_with_text_LiiwkX"] .image-with-text__media img {
  border-radius: 16px !important;
  overflow: hidden;
}

/* Force 2-column 50/50 layout with gap, override theme's responsive grid */
[id$="__image_with_text_LiiwkX"] .image-with-text__grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 64px !important;
  align-items: center;
}

[id$="__image_with_text_LiiwkX"] .image-with-text__media-item,
[id$="__image_with_text_LiiwkX"] .image-with-text__text-item {
  width: 100% !important;
  max-width: 100% !important;
}

[id$="__image_with_text_LiiwkX"] .image-with-text {
  padding: 0;
}

[id$="__image_with_text_LiiwkX"] .image-with-text__content {
  padding: 0 !important;
}

@media screen and (max-width: 768px) {
  [id$="__image_with_text_LiiwkX"] .image-with-text__grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

[id$="__image_with_text_LiiwkX"] .image-with-text__heading {
  color: #faf8f4 !important;
  font-size: calc(var(--font-heading-scale) * 4.2rem);
  line-height: 1.08;
}

[id$="__image_with_text_LiiwkX"] .image-with-text__heading em {
  color: #c8b880;
}

[id$="__image_with_text_LiiwkX"] .image-with-text__text,
[id$="__image_with_text_LiiwkX"] .image-with-text__text p {
  color: rgba(255, 255, 255, 0.5) !important;
  font-weight: 300;
  line-height: 1.8;
}

[id$="__image_with_text_LiiwkX"] .caption-with-letter-spacing {
  color: var(--giffard-accent-hex) !important;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   10b. EMAIL BAR (custom-liquid section above footer)
   Tan section with email signup, matches mockup .email-bar
   -------------------------------------------------------------------------- */

.giffard-email-bar {
  background: #8a7a5a;
  padding: 48px 64px;
}

.giffard-email-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.giffard-email-bar__left {
  flex: 1;
}

.giffard-email-bar__title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #faf8f4;
  margin-bottom: 8px;
  font-weight: 400;
  line-height: 1.2;
}

.giffard-email-bar__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
}

.giffard-email-bar__right {
  flex: 1;
  max-width: 440px;
}

.giffard-email-bar__form {
  display: flex;
  margin: 0;
  width: 100%;
}

.giffard-email-bar__input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 100px 0 0 100px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  background: rgba(255, 255, 255, 0.15);
  color: #faf8f4;
  outline: none;
}

.giffard-email-bar__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.giffard-email-bar__submit {
  background: #1a1a18;
  color: #faf8f4;
  padding: 14px 24px;
  border: none;
  border-radius: 0 100px 100px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.giffard-email-bar__submit:hover {
  opacity: 0.85;
}

.giffard-email-bar__fine {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
  text-align: left;
}

/* Remove padding from the wrapping custom-liquid section */
.section-sections--20798838571145__custom_liquid_aUH7Wk-padding {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Remove default custom-liquid background to let the email bar bg show */
[id*="custom_liquid_aUH7Wk"] .color-scheme-1.gradient {
  background: transparent !important;
}

@media screen and (max-width: 768px) {
  .giffard-email-bar {
    padding: 32px 24px;
  }
  .giffard-email-bar__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .giffard-email-bar__form {
    max-width: 100%;
  }
}

/* --------------------------------------------------------------------------
   10c. CUSTOM FOOTER (giffard-footer)
   Brand text on top, 3 columns of links below, copyright bottom center.
   -------------------------------------------------------------------------- */

.giffard-footer {
  background: #1a1a18;
  padding: 64px 64px 32px;
  color: rgba(255, 255, 255, 0.7);
}

.giffard-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.giffard-footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: #faf8f4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
}

.giffard-footer__columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

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

.giffard-footer__col li {
  margin-bottom: 12px;
}

.giffard-footer__links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.giffard-footer__links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.giffard-footer__social {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 16px;
}

.giffard-footer__social li {
  margin: 0;
}

.giffard-footer__social a {
  color: rgba(255, 255, 255, 0.5);
  display: inline-flex;
  transition: color 0.2s ease;
}

.giffard-footer__social a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.giffard-footer__bottom {
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 768px) {
  .giffard-footer {
    padding: 48px 24px 24px;
  }
  .giffard-footer__columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .giffard-footer__social {
    justify-content: flex-start;
  }
  .giffard-footer__brand {
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   11. SECTION SPACING - Match mockup vertical rhythm
   -------------------------------------------------------------------------- */

/* Featured collection (Five Expressions) - generous top/bottom */
.section-template--20798841520265__featured_collection-padding {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

/* Made to Mix rich text - tight bottom to connect with recipes */
.section-template--20798841520265__rich_text_kRBKcr-padding {
  padding-top: 60px !important;
  padding-bottom: 24px !important;
}

/* Recipe cards section - tight top to connect with Made to Mix */
.na-recipe-cards-section .na-recipe-cards {
  padding-top: 16px !important;
}

/* --------------------------------------------------------------------------
   9. MOBILE RESPONSIVE
   Adjustments for 768px and below.
   -------------------------------------------------------------------------- */

@media screen and (max-width: 768px) {
  /* Hero buttons stack vertically on mobile */
  .image-with-text__buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }

  /* "See the Recipes" text link: only as wide as the text */
  .button--text-link {
    display: inline-block;
    width: auto;
    align-self: flex-start;
  }

  /* Recipe cards: image above text on mobile (override section's inline style) */
  .na-recipe-card {
    flex-direction: column !important;
  }
  .na-recipe-card__image-wrap {
    flex: none !important;
    width: 100% !important;
    height: 220px !important;
  }

  /* Full-width buttons on mobile for better tap targets */
  .button:not(.button--secondary):not(.button--text-link) {
    width: 100%;
    justify-content: center;
  }

  /* Reduce section padding on mobile */
  .section-template--*__padding {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }

  /* Scale down large headings */
  h1, .h1 {
    font-size: calc(var(--font-heading-scale) * 3.2rem);
  }

  h2, .h2 {
    font-size: calc(var(--font-heading-scale) * 2.4rem);
  }

  /* Recipe cards: reduce image width */
  .na-recipe-card__image-wrap {
    flex: 0 0 140px;
    width: 140px;
  }

  /* Header: ensure frosted glass works on mobile too */
  .header-wrapper {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  /* Cards: slightly smaller radius on mobile */
  .product-card-wrapper .card,
  .product-card-wrapper .card__inner,
  .collection-card-wrapper .card,
  .collection-card-wrapper .card__inner,
  .article-card-wrapper .card,
  .article-card-wrapper .card__inner {
    border-radius: 1.2rem;
  }

  .card__media,
  .card__media img,
  .card--card .card__media {
    border-radius: 1.1rem 1.1rem 0 0;
  }

  /* Secondary button stays inline on mobile */
  .button--secondary {
    width: auto;
  }
}

@media screen and (max-width: 480px) {
  /* Extra small screens: further heading reduction */
  h1, .h1 {
    font-size: calc(var(--font-heading-scale) * 2.6rem);
  }
}
