/*
 * This is a static, pre-compiled CSS file.
 * It includes all of Tailwind's base styles and utilities.
 * It has been modified to include the "Crazy Bread Boys" theme.
*/

@layer theme {
  :root, :host {
    /* NEW THEME
      Replaced plumbing theme with bakery/tastoria theme 
    */
    /* UPDATED: Changed Lora to Poppins */
    --font-lora: 'Poppins', sans-serif;
    --font-cinzel: 'Cinzel', serif;
    --font-noto-jp: '"Noto Sans JP"', sans-serif;
    --font-cinzel-decorative: '"Cinzel Decorative"', serif;
    
    --color-brand-primary: #c91409; /* Tastoria's Red */
    --color-brand-grey: #fff7ef;   /* Tastoria's Light Beige */
    --color-brand-dark: #101010;   /* Tastoria's Black */
    --color-border-dark: rgba(0, 0, 0, 0.5);
    --color-border-light: rgba(255, 255, 255, 0.5);

    /* Base Tailwind Colors (from example file) */
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
    monospace;
    --color-gray-100: oklch(96.7% 0.003 264.542);
    --color-gray-200: oklch(92.5% 0.006 261.354);
    --color-gray-300: oklch(87.2% 0.01 258.338);
    --color-gray-400: oklch(71.8% 0.015 258.84);
    --color-gray-500: oklch(58.3% 0.02 258.21);
    --color-gray-600: oklch(44.6% 0.03 256.802);
    --color-gray-700: oklch(37.3% 0.034 259.733);
    --color-gray-800: oklch(27.8% 0.033 256.848);
    --color-gray-900: oklch(21% 0.034 264.665);
    --color-black: #000;
    --color-white: #fff;
    
    /* ADDED MISSING BLUE COLORS */
    --color-blue-500: #3b82f6;
    --color-blue-700: #1d4ed8;
    --color-blue-50: #eff6ff;
    --color-blue-400: #60a5fa;
    --color-blue-600: #2563eb;
    --color-blue-800: #1e40af;
    
    /* Base Tailwind Layout (from example file) */
    --spacing: 0.25rem;
    --container-sm: 24rem;
    --container-md: 28rem;
    --container-lg: 32rem;
    --text-sm: 0.875rem;
    --text-sm--line-height: calc(1.25 / 0.875);
    --text-base: 1rem;
    --text-base--line-height: calc(1.5 / 1);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-5xl: 3rem;
    --text-5xl--line-height: 1;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --leading-tight: 1.25;
    --radius-lg: 0.5rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* MODIFIED: Default font set to --font-lora */
    --default-font-family: var(--font-lora);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji');
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  
  a,
  button,
  [role="button"],
  input:where([type='button'], [type='reset'], [type='submit']) {
    cursor: pointer;
  }

  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type='button'], [type='reset'], [type='submit']), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden='until-found'])) {
    display: none!important;
  }
}
@layer utilities {
  .cursor-pointer {
    cursor: pointer;
  }
  .pointer-events-none {
    pointer-events: none;
  }
  .absolute {
    position: absolute;
  }
  .fixed {
    position: fixed;
  }
  .relative {
    position: relative;
  }
  .inset-0 {
    inset: calc(var(--spacing) * 0);
  }
  .inset-\[3px\] {
    inset: 3px;
  }
  .inset-y-0 {
    inset-block: calc(var(--spacing) * 0);
  }
  .top-0 {
    top: 0;
  }
  .top-full {
    top: 100%;
  }
  /*
   * =============================================
   * ||  FIX: Adding missing positioning classes  ||
   * =============================================
  */
  .top-1\/2 {
    top: 50%;
  }
  .right-0 {
    right: calc(var(--spacing) * 0);
  }
  /*
   * =============================================
   * ||  FIX: Adding missing positioning classes  ||
   * =============================================
  */
  .-right-64 {
    right: -16rem; /* -256px */
  }
  .-right-96 {
    right: -24rem; /* -384px */
  }
  .left-0 {
    left: calc(var(--spacing) * 0);
  }
  /*
   * =============================================
   * ||  NEW: Added for wheat image             ||
   * =============================================
  */
  .-left-16 {
    left: -4rem; /* -64px */
  }
  .-left-32 {
    left: -8rem; /* -128px */
  }
  .-left-64 {
    left: -16rem; /* -256px */
  }
  .bottom-0 {
    bottom: 0;
  }
  /*
   * =============================================
   * ||  NEW: Added for wheat image             ||
   * =============================================
  */
  .bottom-8 {
    bottom: 2rem; /* 32px */
  }
  .top-32 {
    top: 8rem; /* 128px */
  }
  /* * =============================================
   * || NEW: Added for Contact Form              ||
   * =============================================
  */
  .top-3 {
    top: 0.75rem; /* 12px */
  }
  .-top-3\.5 {
    top: -0.875rem; /* -14px */
  }
  
  .z-0 {
    z-index: 0;
  }
  .z-10 {
    z-index: 10;
  }
  .z-40 {
    z-index: 40;
  }
  .z-50 {
    z-index: 50;
  }
  .container {
    width: 100%;
    @media (width >= 40rem) {
      max-width: 40rem;
    }
    @media (width >= 48rem) {
      max-width: 48rem;
    }
    @media (width >= 64rem) {
      max-width: 64rem;
    }
    @media (width >= 80rem) {
      max-width: 80rem;
    }
    @media (width >= 96rem) {
      max-width: 96rem;
    }
  }
  .mx-auto {
    margin-inline: auto;
  }
  .ml-4 {
    margin-inline: 1rem;
  }
  .mx-4 {
    margin-inline: 1rem;
  }
  /*
   * =============================================
   * ||  NEW: Added for testimonial quote styling ||
   * =============================================
  */
  .-ml-2 {
    margin-left: -0.5rem; /* -8px */
  }
  /*
   * =============================================
   * ||  NEW: Added for Contact Info Icons      ||
   * =============================================
  */
  .mr-4 {
    margin-right: 1rem; /* 16px */
  }
  .mt-1 {
    margin-top: 0.25rem;
  }
  .mt-2 {
    margin-top: calc(var(--spacing) * 2);
  }
  /*
   * =============================================
   * ||  NEW: Added for testimonial quote styling ||
   * =============================================
  */
  .-mt-2 {
    margin-top: -0.5rem; /* -8px */
  }
  .mt-4 {
    margin-top: calc(var(--spacing) * 4);
  }
  .mt-6 {
    margin-top: calc(var(--spacing) * 6);
  }
  .mt-8 {
    margin-top: calc(var(--spacing) * 8);
  }
  /*
   * =============================================
   * ||  NEW: Added for testimonial quote styling ||
   * =============================================
  */
  .-mt-8 {
    margin-top: -2rem; /* -32px */
  }
  .mt-16 {
    margin-top: calc(var(--spacing) * 16);
  }
  .mt-24 {
    margin-top: calc(var(--spacing) * 24);
  }
  .mt-32 {
    margin-top: calc(var(--spacing) * 32);
  }
  .mb-2 {
    margin-bottom: calc(var(--spacing) * 2);
  }
  .mb-4 {
    margin-bottom: calc(var(--spacing) * 4);
  }
  .mb-6 {
    margin-bottom: calc(var(--spacing) * 6);
  }
  .mb-8 {
    margin-bottom: 2rem; /* 32px */
  }
  .mb-10 {
    margin-bottom: 2.5rem;
  }
  .mb-16 {
    margin-bottom: calc(var(--spacing) * 16);
  }
  .inline-flex {
    display: inline-flex;
  }
  .block {
    display: block;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .hidden {
    display: none;
  }
  .inline-block {
    display: inline-block;
  }
  .h-4 {
    height: calc(var(--spacing) * 4);
  }
  .h-5 {
    height: calc(var(--spacing) * 5);
  }
  .h-6 {
    height: calc(var(--spacing) * 6);
  }
  .h-7 {
    height: calc(var(--spacing) * 7);
  }
  .h-8 {
    height: 2rem;
  }
  .h-10 {
    height: calc(var(--spacing) * 10);
  }
  .h-12 {
    height: calc(var(--spacing) * 12);
  }
  .h-16 {
    height: calc(var(--spacing) * 16);
  }
  .h-full {
    height: 100%;
  }
  .h-3\/4 {
    height: 75%;
  }
  .h-\[1px\] {
    height: 1px;
  }
  .h-screen {
    height: 100vh;
  }
  .min-h-0 {
    min-height: 0;
  }
  .min-h-\[760px\] {
    min-height: 760px;
  }
  .min-h-screen {
    min-height: 100vh;
  }
  .min-h-\[400px\] {
    min-height: 400px;
  }
  .w-4 {
    width: calc(var(--spacing) * 4);
  }
  .w-5 {
    width: calc(var(--spacing) * 5);
  }
  .w-6 {
    width: calc(var(--spacing) * 6);
  }
  .w-7 {
    width: calc(var(--spacing) * 7);
  }
  .w-8 {
    width: 2rem;
  }
  .w-10 {
    width: calc(var(--spacing) * 10);
  }
  .w-12 {
    width: calc(var(--spacing) * 12);
  }
  .w-16 {
    width: calc(var(--spacing) * 16);
  }
  .w-24 {
    width: 6rem;
  }
  .w-40 {
    width: 10rem; /* 160px */
  }
  .w-80 {
    width: 20rem; /* 320px */
  }
  .w-full {
    width: 100%;
  }
  .w-\[400px\] {
    width: 400px;
  }
  .w-96 {
    width: 24rem; /* 384px */
  }
  .w-\[1px\] {
    width: 1px;
  }
  /*
   * =============================================
   * ||  FIX: Adding missing utility class      ||
   * =============================================
  */
  .w-auto {
    width: auto;
  }
  /* * =============================================
   * || FIX: Added for Marquee to calculate     ||
   * || proper width for animation loop         ||
   * =============================================
  */
  .w-max {
    width: max-content;
  }

  /*
   * =============================================
   * ||  NEW: Added for wheat/map image sizes   ||
   * =============================================
  */
  .h-\[400px\] {
    height: 400px;
  }
  /*
   * =============================================
   * || NEW: Added for gallery marquee images   ||
   * =============================================
  */
  .h-\[500px\] {
    height: 500px;
  }
  /*
   * =============================================
   * ||  FIX: Adding missing utility class      ||
   * =============================================
  */
  .h-\[600px\] {
    height: 600px;
  }
  .max-w-lg {
    max-width: var(--container-lg);
  }
  .max-w-md {
    max-width: var(--container-md);
  }
  .max-w-sm {
    max-width: var(--container-sm);
  }
  .max-w-xl {
    max-width: 36rem; /* 576px */
  }
  .max-w-xs {
    max-width: 20rem; /* 320px */
  }
  .max-w-3xl {
    max-width: 48rem; /* 768px */
  }
  .max-w-7xl {
    max-width: 80rem;
  }
  .flex-1 {
    flex: 1;
  }
  .flex-grow {
    flex-grow: 1;
  }
  .flex-shrink-0 {
    flex-shrink: 0;
  }
  .resize-y {
    resize: vertical;
  }
  .appearance-none {
    appearance: none;
  }
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .max-h-0 {
    max-height: 0;
  }
  .max-h-\[500px\] {
    max-height: 500px;
  }
  .flex-col {
    flex-direction: column;
  }
  .flex-row {
    flex-direction: row;
  }
  .items-center {
    align-items: center;
  }
  .items-start {
    align-items: flex-start;
  }
  /*
   * =============================================
   * ||  NEW: Added for testimonial layout      ||
   * =============================================
  */
  .md\:items-end {
    @media (width >= 48rem) {
      align-items: flex-end;
    }
  }
  .justify-between {
    justify-content: space-between;
  }
  .justify-center {
    justify-content: center;
  }
  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }
  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }
  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }
  .gap-6 {
    gap: calc(var(--spacing) * 6);
  }
  .gap-8 {
    gap: calc(var(--spacing) * 8);
  }
  .gap-12 {
    gap: calc(var(--spacing) * 12);
  }
  .gap-16 {
    gap: calc(var(--spacing) * 16);
  }
  /* * =============================================
   * || NEW: Added for Contact Page Grid Gap    ||
   * =============================================
  */
  .lg\:gap-24 {
    @media (width >= 64rem) {
      gap: 6rem; /* 96px */
    }
  }
  .space-y-2 {
    :where(& > :not(:last-child)) {
      --tw-space-y-reverse: 0;
      margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
      margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  .space-y-3 {
    :where(& > :not(:last-child)) {
      --tw-space-y-reverse: 0;
      margin-block-start: calc(0.75rem * var(--tw-space-y-reverse));
      margin-block-end: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  .space-y-4 {
    :where(& > :not(:last-child)) {
      --tw-space-y-reverse: 0;
      margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
      margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  .space-y-6 {
    :where(& > :not(:last-child)) {
      --tw-space-y-reverse: 0;
      margin-block-start: calc(1.5rem * var(--tw-space-y-reverse));
      margin-block-end: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  /* * =============================================
   * || NEW: Added for Contact Form Spacing     ||
   * =============================================
  */
  .space-y-8 {
    :where(& > :not(:last-child)) {
      --tw-space-y-reverse: 0;
      margin-block-start: calc(2rem * var(--tw-space-y-reverse));
      margin-block-end: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  /* * =============================================
   * || NEW: Added for Contact Info Spacing     ||
   * =============================================
  */
  .space-y-12 {
    :where(& > :not(:last-child)) {
      --tw-space-y-reverse: 0;
      margin-block-start: calc(3rem * var(--tw-space-y-reverse));
      margin-block-end: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  /*
   * =============================================
   * ||  NEW: Added for testimonial layout      ||
   * =============================================
  */
  .md\:space-y-12 {
    @media (width >= 48rem) {
      :where(& > :not(:last-child)) {
        --tw-space-y-reverse: 0;
        margin-block-start: calc(3rem * var(--tw-space-y-reverse)); /* 48px */
        margin-block-end: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
      }
    }
  }
  .-space-x-2 {
    :where(& > :not(:last-child)) {
      --tw-space-x-reverse: 0;
      margin-inline-start: calc(calc(var(--spacing) * -2) * var(--tw-space-x-reverse));
      margin-inline-end: calc(calc(var(--spacing) * -2) * calc(1 - var(--tw-space-x-reverse)));
    }
  }
  .space-x-2 {
    :where(& > :not(:last-child)) {
      --tw-space-x-reverse: 0;
      margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
      margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  .space-x-4 {
    :where(& > :not(:last-child)) {
      --tw-space-x-reverse: 0;
      margin-inline-start: calc(calc(var(--spacing) * 4) * var(--tw-space-x-reverse));
      margin-inline-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  .space-x-6 {
    :where(& > :not(:last-child)) {
      --tw-space-x-reverse: 0;
      margin-inline-start: calc(1.5rem * var(--tw-space-x-reverse));
      margin-inline-end: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  .space-x-8 {
    :where(& > :not(:last-child)) {
      --tw-space-x-reverse: 0;
      margin-inline-start: calc(2rem * var(--tw-space-x-reverse));
      margin-inline-end: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  /* * =============================================
   * || NEW: Added for Social Icons Spacing     ||
   * =============================================
  */
  .space-x-12 {
    :where(& > :not(:last-child)) {
      --tw-space-x-reverse: 0;
      margin-inline-start: calc(3rem * var(--tw-space-x-reverse));
      margin-inline-end: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .rounded-2xl {
    border-radius: var(--radius-2xl);
  }
  .rounded-3xl {
    border-radius: var(--radius-3xl);
  }
  .rounded-full {
    border-radius: calc(infinity * 1px);
  }
  .rounded-lg {
    border-radius: var(--radius-lg);
  }
  /* * =============================================
   * || NEW: Added for Contact Form Dropdown    ||
   * =============================================
  */
  .rounded-none {
    border-radius: 0px;
  }
  /*
   * =============================================
   * ||  NEW: Added for footer form styling     ||
   * =============================================
  */
  .\!rounded-lg {
    border-radius: var(--radius-lg) !important;
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .border-2 {
    border-style: var(--tw-border-style);
    border-width: 2px;
  }
  .border-b {
    border-bottom-width: 1px;
    border-bottom-style: var(--tw-border-style);
  }
  /* * =============================================
   * || NEW: Added for Contact Form Fields      ||
   * =============================================
  */
  .border-b-2 {
    border-bottom-width: 2px;
  }
  .border-t {
    border-top-width: 1px;
    border-top-style: var(--tw-border-style);
  }
  .border-brand-primary {
    border-color: var(--color-brand-primary);
  }
  .border-gray-200 {
    border-color: var(--color-gray-200);
  }
  .border-gray-300 {
    border-color: var(--color-gray-300);
  }
  .border-gray-400 {
    border-color: var(--color-gray-400);
  }
  .border-gray-700 {
    border-color: var(--color-gray-700);
  }
  .border-\[\#f3e063\] {
    border-color: #f3e063;
  }
  .border-white {
    border-color: var(--color-white);
  }
  .border-white\/10 {
    border-color: rgb(255 255 255 / 0.1);
  }
  /*
   * =============================================
   * ||  THIS IS THE FIX!                       ||
   * ||  I am adding the missing class back in. ||
   * =============================================
  */
  .border-white\/20 {
    border-color: rgb(255 255 255 / 0.2);
  }
  .border-white\/30 {
    border-color: rgb(255 255 255 / 0.3);
  }
  .bg-\[\#1954ac\] {
    background-color: #1954ac;
  }
  .bg-\[\#3062AD\] {
    background-color: #3062AD;
  }
  .bg-\[\#e6eefa\] {
    background-color: #e6eefa;
  }
  .bg-\[\#f3e063\] {
    background-color: #f3e063;
  }
  .bg-black {
    background-color: var(--color-black);
  }
  .bg-transparent {
    background-color: transparent;
  }
  .bg-opacity-30 {
    background-color: rgb(0 0 0 / 0.3);
  }
  .bg-opacity-50 {
    background-color: rgb(0 0 0 / 0.5);
  }
  .bg-\[\#3063AE\]\/95 {
    background-color: rgb(48 99 174 / 0.95);
  }
  .bg-gray-900\/95 {
    background-color: rgb(49 50 60 / 0.95);
  }
  .bg-brand-dark {
    background-color: var(--color-brand-dark);
  }
  /* * =============================================
   * || NEW: Added for Contact Map Border/Overlay||
   * =============================================
  */
  .bg-brand-dark\/5 {
      background-color: rgb(16 16 16 / 0.05);
  }
  .border-brand-dark\/5 {
      border-color: rgb(16 16 16 / 0.05);
  }
  .border-brand-dark\/10 {
      border-color: rgb(16 16 16 / 0.1);
  }
  .border-brand-dark\/20 {
      border-color: rgb(16 16 16 / 0.2);
  }
  .text-brand-dark\/50 {
      color: rgb(16 16 16 / 0.5);
  }
  .bg-brand-dark\/60 {
    background-color: rgb(16 16 16 / 0.6);
  }
  .bg-brand-dark\/90 {
    background-color: rgb(16 16 16 / 0.9);
  }
  .bg-brand-primary {
    background-color: var(--color-brand-primary);
  }
  .bg-brand-grey {
    background-color: var(--color-brand-grey);
  }
  .bg-blue-500 {
    background-color: var(--color-blue-500);
  }
  .bg-blue-700 {
    background-color: var(--color-blue-700);
  }
  .bg-gray-100 {
    background-color: var(--color-gray-100);
  }
  .bg-white {
    background-color: var(--color-white);
  }
  .bg-white\/5 {
    background-color: rgb(255 255 255 / 0.05);
  }
  .bg-white\/10 {
    background-color: rgb(255 255 255 / 0.1);
  }
  .bg-white\/50 {
    background-color: rgb(255 255 255 / 0.5);
  }
  /*
   * =============================================
   * ||  REMOVED: No longer used                ||
   * =============================================
  */
  /* .bg-white\/60 was here */
  .bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
  }
  .bg-gradient-to-l {
    background-image: linear-gradient(to left, var(--tw-gradient-stops));
  }
  .object-cover {
    object-fit: cover;
  }
  .object-center {
    object-position: center;
  }
  .fill-current {
    fill: currentcolor;
  }
  .p-2 {
    padding: calc(var(--spacing) * 2);
  }
  .p-3 {
    padding: calc(var(--spacing) * 3);
  }
  .p-4 {
    padding: calc(var(--spacing) * 4);
  }
  .p-5 {
    padding: 1.25rem;
  }
  .p-6 {
    padding: calc(var(--spacing) * 6);
  }
  .p-8 {
    padding: calc(var(--spacing) * 8);
  }
  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }
  /*
   * =============================================
   * ||  NEW: Added for blog button padding     ||
   * =============================================
  */
  .px-5 {
    padding-inline: 1.25rem; /* 20px */
  }
  .px-6 {
    padding-inline: calc(var(--spacing) * 6);
  }
  .px-8 {
    padding-inline: calc(var(--spacing) * 8);
  }
  .py-3 {
    padding-block: calc(var(--spacing) * 3);
  }
  .pb-6 {
    padding-bottom: calc(var(--spacing) * 6);
  }
  .py-1 {
    padding-block: calc(var(--spacing) * 1);
  }
  .py-2 {
    padding-block: calc(var(--spacing) * 2);
  }
  .py-3 {
    padding-block: calc(var(--spacing) * 3);
  }
  .py-4 {
    padding-block: calc(var(--spacing) * 4);
  }
  .py-5 {
    padding-block: calc(var(--spacing) * 5);
  }
  .py-6 {
    padding-block: calc(var(--spacing) * 6);
  }
  .py-16 {
    padding-block: calc(var(--spacing) * 16);
  }
  .py-24 {
    padding-block: calc(var(--spacing) * 24);
  }
  .pb-2 {
    padding-bottom: calc(var(--spacing) * 2);
  }
  .pb-5 {
    padding-bottom: 1.25rem; /* 20px */
  }
  .pb-16 {
    padding-bottom: calc(var(--spacing) * 16);
  }
  /*
   * =============================================
   * ||  NEW: Added for gallery padding fix     ||
   * =============================================
  */
  .pb-18 {
    padding-bottom: 4.5rem; /* 72px */
  }
  .pt-4 {
    padding-top: calc(var(--spacing) * 4);
  }
  .pt-8 {
    padding-top: 2rem; /* 32px */
  }
  /*
   * =============================================
   * ||  NEW: Added for gallery padding fix     ||
   * =============================================
  */
  .pt-24 {
    padding-top: 6rem; /* 96px */
  }
  .pt-42 {
    padding-top: 10.5rem; /* 168px */
  }
  .text-left {
    text-align: left;
  }
  .text-center {
    text-align: center;
  }
  /*
   * =============================================
   * ||  THIS IS THE FIX!                       ||
   * ||  Adding the missing text-right class.   ||
   * =============================================
  */
  .text-right {
    text-align: right;
  }
  .font-sans {
    font-family: var(--font-lora); /* UPDATED: Changed from sans-serif to lora/poppins */
  }
  .font-cinzel {
    font-family: var(--font-cinzel);
  }
  .font-cinzel-decorative {
    font-family: var(--font-cinzel-decorative);
  }
  .font-lora {
    font-family: var(--font-lora);
  }
  .font-noto-jp {
    font-family: var(--font-noto-jp);
  }
  .font-normal {
    font-weight: 400;
  }
  .text-2xl {
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
  }
  .text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  /*
   * =============================================
   * ||  NEW: Added for footer tagline          ||
   * =============================================
  */
  .lg\:text-4xl {
    @media (width >= 64rem) {
      font-size: 2.25rem; /* 36px */
      line-height: 2.5rem; /* 40px */
    }
  }
  .text-5xl {
    font-size: var(--text-5xl);
    line-height: var(--tw-leading, var(--text-5xl--line-height));
  }
  .text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
  .text-9xl {
    font-size: 8rem;
    line-height: 1;
  }
  .text-base {
    font-size: var(--text-base);
    line-height: var(--tw-leading, var(--text-base--line-height));
  }
  .text-lg {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
  }
  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }
  /*
   * =============================================
   * ||  NEW: Added for blog date text size     ||
   * =============================================
  */
  .text-xs {
    font-size: 0.75rem; /* 12px */
    line-height: 1rem; /* 16px */
  }
  .text-xl {
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
  }
  .leading-tight {
    --tw-leading: var(--leading-tight);
    line-height: var(--leading-tight);
  }
  .leading-relaxed {
    line-height: 1.625;
  }
  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }
  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }
  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }
  .uppercase {
    text-transform: uppercase;
  }
  .tracking-wider {
    letter-spacing: .05em;
  }
  .underline {
    text-decoration-line: underline;
  }
  .underline-offset-4 {
    text-underline-offset: 4px;
  }
  .whitespace-nowrap {
    white-space: nowrap;
  }
  .whitespace-normal {
    white-space: normal;
  }
  /*
   * =============================================
   * ||  NEW: Added for footer address tag      ||
   * =============================================
  */
  .not-italic {
    font-style: normal;
  }
  .text-\[\#f3e063\] {
    color: #f3e063;
  }
  .text-brand-primary {
    color: var(--color-brand-primary);
  }
  .text-brand-dark {
    color: var(--color-brand-dark);
  }
  /*
   * =============================================
   * ||  NEW: Added for blog date text color    ||
   * =============================================
  */
  .text-brand-dark\/70 {
    color: rgb(16 16 16 / 0.7);
  }
  .text-blue-50 {
    color: var(--color-blue-50);
  }
  .text-blue-400 {
    color: var(--color-blue-400);
  }
  .text-blue-600 {
    color: var(--color-blue-600);
  }
  .text-gray-200 {
    color: var(--color-gray-200);
  }
  .text-gray-300 {
    color: var(--color-gray-300);
  }
  .text-gray-400 {
    color: var(--color-gray-400);
  }
  .text-gray-500 {
    color: var(--color-gray-500);
  }
  .text-gray-600 {
    color: var(--color-gray-600);
  }
  .text-gray-700 {
    color: var(--color-gray-700);
  }
  .text-gray-800 {
    color: var(--color-gray-800);
  }
  .text-gray-900 {
    color: var(--color-gray-900);
  }
  .text-white {
    color: var(--color-white);
  }
  /*
   * =============================================
   * ||  NEW: Added for footer text/copyright   ||
   * =============================================
  */
  .text-white\/50 {
    color: rgb(255 255 255 / 0.5);
  }
  .text-white\/70 {
    color: rgb(255 255 255 / 0.7);
  }
  .text-white\/90 {
    color: rgb(255 255 255 / 0.9);
  }
  .text-yellow-500 {
    color: #eab308;
  }
  .from-gray-100 {
    --tw-gradient-from: var(--color-gray-100) var(--tw-gradient-from-position);
    --tw-gradient-to: oklch(96.7% 0.003 264.542 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  }
  .from-\[\#e6eefa\] {
    --tw-gradient-from: #e6eefa var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(230 238 250 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  }
  .to-transparent {
    --tw-gradient-to: transparent var(--tw-gradient-to-position);
  }
  .opacity-0 {
    opacity: 0;
  }
  /*
   * =============================================
   * ||  THIS IS THE FIX!                       ||
   * ||  Adding the missing opacity-20 class.   ||
   * =============================================
  */
  .opacity-20 {
    opacity: 0.2;
  }
  /*
   * =============================================
   * ||  NEW: Added for testimonial layout      ||
   * =============================================
  */
  .opacity-50 {
    opacity: 0.5;
  }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  .antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .shadow-2xl {
    --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }
  .shadow-lg {
    --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }
  .shadow-md {
    --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }
  .shadow-xl {
    --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }
  .rotate-90 {
    transform: rotate(90deg);
  }
  /*
   * =============================================
   * ||  FIX: Adding missing transform classes    ||
   * =============================================
  */
  .rotate-\[15deg\] {
    transform: rotate(15deg);
  }
  /*
   * =============================================
   * ||  NEW: Added for wheat image             ||
   * =============================================
  */
  .-rotate-\[15deg\] {
    transform: rotate(-15deg);
  }
  .-translate-y-1\/2 {
    transform: translateY(-50%);
  }
  .ring-0 {
    --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }
  .ring-2 {
    --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }
  .ring-\[\#1954ac\] {
    --tw-ring-color: #1954ac;
  }
  .ring-white {
    --tw-ring-color: var(--color-white);
  }
  .transition-all {
    transition-property: all;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-colors {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-opacity {
    transition-property: opacity;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-transform {
    transition-property: transform;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-\[max-height\] {
    transition-property: max-height;
  }
  .duration-300 {
    transition-duration: 300ms;
  }
  .ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  .animate-marquee-fast {
    animation: marquee-fast 60s linear infinite; /* UPDATED: Changed from 20s to 40s as requested */
  }
  /*
   * =============================================
   * ||  NEW: Added for image gallery marquee   ||
   * =============================================
  */
  .animate-marquee-reverse-fast {
    animation: marquee-reverse-fast 10s linear infinite; /* UPDATED: Was 20s, changed to 10s to increase speed by 100% */
  }
  .hover\:opacity-75 {
    &:hover {
      opacity: 0.75;
    }
  }
  .hover\:bg-\[\#e6c84d\] {
    &:hover {
      background-color: #e6c84d;
    }
  }
  .hover\:text-brand-primary {
     &:hover {
        color: var(--color-brand-primary);
     }
  }
  .hover\:bg-brand-dark {
    &:hover {
      background-color: var(--color-brand-dark);
    }
  }
  .hover\:text-brand-dark {
    &:hover {
      color: var(--color-brand-dark);
    }
  }
  .hover\:bg-transparent {
    &:hover {
      background-color: transparent;
    }
  }
  .hover\:text-blue-300 {
    &:hover {
      color: oklch(77% 0.126 255.44);
    }
  }
  .hover\:bg-blue-400 {
    &:hover {
      background-color: var(--color-blue-400);
    }
  }
  .hover\:bg-blue-600 {
    &:hover {
      background-color: var(--color-blue-600);
    }
  }
  .hover\:bg-blue-800 {
    &:hover {
      background-color: var(--color-blue-800);
    }
  }
  .hover\:bg-white\/10 {
    &:hover {
      background-color: rgb(255 255 255 / 0.1);
    }
  }
  .hover\:text-white {
    &:hover {
      color: var(--color-white);
    }
  }
  .hover\:text-white\/70 {
    &:hover {
      color: rgb(255 255 255 / 0.7);
    }
  }
  .hover\:text-gray-900 {
    &:hover {
      color: var(--color-gray-900);
    }
  }
  .hover\:border-blue-600 {
    &:hover {
      border-color: var(--color-blue-600);
    }
  }
  .hover\:text-blue-800 {
    &:hover {
      color: var(--color-blue-800);
    }
  }
  .group:hover .group-hover\:translate-x-1 {
    transform: translateX(0.25rem);
  }
  /*
   * =============================================
   * ||  NEW: Added for gallery hover effects   ||
   * =============================================
  */
  .group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
  }
  .group:hover .group-hover\:opacity-100 {
    opacity: 1;
  }
  /*
   * =============================================
   * ||  NEW: Added for blog hover effects      ||
   * =============================================
  */
  .group:hover .group-hover\:opacity-75 {
    opacity: 0.75;
  }
  .group:hover .group-hover\:text-brand-primary {
    color: var(--color-brand-primary);
  }
  /* ============================================= */
  /* * =============================================
   * || NEW: Added for Social Icon Hover        ||
   * =============================================
  */
  .group:hover .group-hover\:bg-brand-dark {
    background-color: var(--color-brand-dark);
  }
  .group:hover .group-hover\:text-white {
    color: var(--color-white);
  }

  /* * =============================================
   * || FIX: Missing Group Hover for Contact Info ||
   * =============================================
  */
  .group:hover .group-hover\:bg-brand-primary {
    background-color: var(--color-brand-primary);
  }


  /*
   * =============================================
   * ||  NEW: Added for product card hover effect ||
   * =============================================
  */
  .hover\:-translate-y-2:hover {
    transform: translateY(-0.5rem); /* -8px */
  }
  .hover\:shadow-2xl:hover {
    --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }
  /* ============================================= */

  .focus\:border-blue-500 {
    &:focus {
      border-color: var(--color-blue-500);
    }
  }
  .focus\:border-white {
    &:focus {
      border-color: var(--color-white);
    }
  }
  /* * =============================================
   * || NEW: Added for Contact Form Focus       ||
   * =============================================
  */
  .focus\:border-brand-primary {
    &:focus {
      /* UPDATED: Changed from brand-primary (Red) to brand-dark (Black) */
      border-color: var(--color-brand-dark);
    }
  }
  .focus\:outline-none {
    &:focus {
      outline: 2px solid transparent;
      outline-offset: 2px;
    }
  }
  
  .focus\:ring-0 {
    &:focus {
      --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
      box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }
  }
  .focus\:ring-blue-500 {
    &:focus {
      --tw-ring-color: var(--color-blue-500);
    }
  }
  .backdrop-blur-sm {
    --tw-backdrop-blur: blur(4px);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  }
  .placeholder\:text-gray-200 {
    &::placeholder {
      color: var(--color-gray-200);
    }
  }
  /*
   * =============================================
   * ||  NEW: Added for footer form placeholder ||
   * =============================================
  */
  .placeholder\:text-white\/50 {
    &::placeholder {
      color: rgb(255 255 255 / 0.5);
    }
  }
  /* * =============================================
   * || NEW: Added for Contact Form Placeholder ||
   * =============================================
  */
  .placeholder-transparent {
      &::placeholder {
          color: transparent;
      }
  }
  .sm\:w-auto {
    @media (width >= 40rem) {
      width: auto;
    }
  }
  .sm\:flex-row {
    @media (width >= 40rem) {
      flex-direction: row;
    }
  }
  .md\:hidden {
    @media (width >= 48rem) {
      display: none;
    }
  }
  .md\:mt-0 {
    @media (width >= 48rem) {
      margin-top: 0;
    }
  }
  .md\:block {
    @media (width >= 48rem) {
      display: block;
    }
  }
  .md\:inline-block {
    @media (width >= 48rem) {
      display: inline-block;
    }
  }
  .md\:flex {
    @media (width >= 48rem) {
      display: flex;
    }
  }
  .md\:flex-row {
    @media (width >= 48rem) {
      flex-direction: row;
    }
  }
  .md\:grid-cols-2 {
    @media (width >= 48rem) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  /*
   * =============================================
   * ||  NEW: Added for blog grid layout        ||
   * =============================================
  */
  .md\:grid-cols-3 {
    @media (width >= 48rem) {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  .md\:grid-cols-5 {
    @media (width >= 48rem) {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }
  }
  /*
   * =============================================
   * ||  NEW: Added for testimonial layout      ||
   * =============================================
  */
  .md\:col-span-1 {
    @media (width >= 48rem) {
      grid-column: span 1 / span 1;
    }
  }
  .md\:col-span-2 {
    @media (width >= 48rem) {
      grid-column: span 2 / span 2;
    }
  }
  /*
   * =============================================
   * ||  NEW: Added for footer social icons     ||
   * =============================================
  */
  .md\:justify-end {
    @media (width >= 48rem) {
      justify-content: flex-end;
    }
  }
  .md\:items-center {
    @media (width >= 48rem) {
      align-items: center;
    }
  }
  .md\:gap-8 {
    @media (width >= 48rem) {
      gap: calc(var(--spacing) * 8);
    }
  }
  .md\:px-20 {
    @media (width >= 48rem) {
      padding-inline: calc(var(--spacing) * 20);
    }
  }
  .md\:py-20 {
    @media (width >= 48rem) {
      padding-block: calc(var(--spacing) * 20);
    }
  }
  .md\:py-24 {
    @media (width >= 48rem) {
      padding-block: calc(var(--spacing) * 24);
    }
  }
  .md\:pb-20 {
    @media (width >= 48rem) {
      padding-bottom: calc(var(--spacing) * 20);
    }
  }
  .md\:pt-50 {
    @media (width >= 48rem) {
      padding-top: 12.5rem; /* 200px */
    }
  }
  .md\:text-left {
    @media (width >= 48rem) {
      text-align: left;
    }
  }
  .md\:text-base {
    @media (width >= 48rem) {
      font-size: var(--text-base);
      line-height: var(--tw-leading, var(--text-base--line-height));
    }
  }
  .md\:text-3xl {
     @media (width >= 48rem) {
        font-size: 1.875rem;
        line-height: 2.25rem;
     }
  }
  .md\:text-8xl {
    @media (width >= 48rem) {
        font-size: 6rem;
        line-height: 1;
    }
  }
  .md\:text-xl {
    @media (width >= 48rem) {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
  }
  .lg\:inline-block {
    @media (width >= 64rem) {
        display: inline-block;
    }
  }
  .lg\:grid-cols-2 {
    @media (width >= 64rem) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  .lg\:grid-cols-3 {
    @media (width >= 64rem) {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  .lg\:grid-cols-4 {
    @media (width >= 64rem) {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  /*
   * =============================================
   * ||  NEW: Added for footer layout           ||
   * =============================================
  */
  .lg\:col-span-1 {
    @media (width >= 64rem) {
      grid-column: span 1 / span 1;
    }
  }
  /*
   * =============================================
   * ||  NEW: Added for footer social icons     ||
   * =============================================
  */
  .lg\:justify-start {
    @media (width >= 64rem) {
      justify-content: flex-start;
    }
  }
  .lg\:min-h-\[500px\] {
    @media (width >= 64rem) {
      min-height: 500px;
    }
  }
  .lg\:px-24 {
    @media (width >= 64rem) {
      padding-inline: calc(var(--spacing) * 24);
    }
  }
  /*
   * =============================================
   * ||  NEW: Added for footer tagline          ||
   * =============================================
  */
  .lg\:text-right {
    @media (width >= 64rem) {
      text-align: right;
    }
  }
  .lg\:text-5xl {
    @media (width >= 64rem) {
      font-size: var(--text-5xl);
      line-height: var(--tw-leading, var(--text-5xl--line-height));
    }
  }
  .lg\:text-9xl {
    @media (width >= 64rem) {
        font-size: 8rem;
        line-height: 1;
    }
  }
  .lg\:text-\[64px\] {
    @media (width >= 64rem) {
      font-size: 64px;
    }
  }
  .lg\:leading-\[1\.1\] {
    @media (width >= 64rem) {
      --tw-leading: 1.1;
      line-height: 1.1;
    }
  }
  .lg\:sticky {
    @media (width >= 64rem) {
      position: sticky;
    }
  }
  .lg\:top-32 {
    @media (width >= 64rem) {
      top: 8rem; /* 128px */
    }
  }
  .xl\:mx-0 {
    @media (width >= 80rem) {
      margin-inline: calc(var(--spacing) * 0);
    }
  }
  .xl\:mx-auto {
    @media (width >= 80rem) {
      margin-inline: auto;
    }
  }
  .xl\:flex {
    @media (width >= 80rem) {
      display: flex;
    }
  }
  .xl\:hidden {
    @media (width >= 80rem) {
      display: none;
    }
  }
  .xl\:h-4 {
    @media (width >= 80rem) {
      height: calc(var(--spacing) * 4);
    }
  }
  .xl\:h-7 {
    @media (width >= 80rem) {
      height: calc(var(--spacing) * 7);
    }
  }
  .xl\:h-10 {
    @media (width >= 80rem) {
      height: calc(var(--spacing) * 10);
    }
  }
  .xl\:h-12 {
    @media (width >= 80rem) {
      height: calc(var(--spacing) * 12);
    }
  }
  .xl\:h-16 {
    @media (width >= 80rem) {
      height: calc(var(--spacing) * 16);
    }
  }
  .xl\:w-4 {
    @media (width >= 80rem) {
      width: calc(var(--spacing) * 4);
    }
  }
  .xl\:w-7 {
    @media (width >= 80rem) {
      width: calc(var(--spacing) * 7);
    }
  }
  .xl\:w-10 {
    @media (width >= 80rem) {
      width: calc(var(--spacing) * 10);
    }
  }
  .xl\:grid-cols-2 {
    @media (width >= 80rem) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  .xl\:justify-end {
    @media (width >= 80rem) {
      justify-content: flex-end;
    }
  }
  .xl\:justify-start {
    @media (width >= 80rem) {
      justify-content: flex-start;
    }
  }
  .xl\:gap-8 {
     @media (width >= 80rem) {
       gap: calc(var(--spacing) * 8);
    }
  }
  .xl\:ml-auto {
      @media (width >= 80rem) {
        margin-left: auto;
    }
  }
  .xl\:gap-24 {
    @media (width >= 80rem) {
      gap: calc(var(--spacing) * 24);
    }
  }
  .xl\:px-6 {
    @media (width >= 80rem) {
      padding-inline: calc(var(--spacing) * 6);
    }
  }
  .xl\:px-8 {
    @media (width >= 80rem) {
      padding-inline: calc(var(--spacing) * 8);
    }
  }
  .xl\:px-32 {
    @media (width >= 80rem) {
      padding-inline: calc(var(--spacing) * 32);
    }
  }
  .xl\:py-3 {
    @media (width >= 80rem) {
      padding-block: calc(var(--spacing) * 3);
    }
  }
  .xl\:py-4 {
    @media (width >= 80rem) {
      padding-block: calc(var(--spacing) * 4);
    }
  }
  .xl\:text-left {
    @media (width >= 80rem) {
      text-align: left;
    }
  }
  .xl\:text-2xl {
    @media (width >= 80rem) {
      font-size: var(--text-2xl);
      line-height: var(--tw-leading, var(--text-2xl--line-height));
    }
  }
  .xl\:text-base {
    @media (width >= 80rem) {
      font-size: var(--text-base);
      line-height: var(--tw-leading, var(--text-base--line-height));
    }
  }
  .xl\:text-sm {
    @media (width >= 80rem) {
      font-size: var(--text-sm);
      line-height: var(--tw-leading, var(--text-sm--line-height));
    }
  }
  .xl\:text-\[64px\] {
    @media (width >= 80rem) {
      font-size: 64px;
    }
  }
  .xl\:leading-\[79px\] {
    @media (width >= 80rem) {
      --tw-leading: 79px;
      line-height: 79px;
    }
  }
  .xl\:whitespace-nowrap {
    @media (width >= 80rem) {
      white-space: nowrap;
    }
  }
  .\32 xl\:px-36 {
    @media (width >= 96rem) {
      padding-inline: calc(var(--spacing) * 36);
    }
  }
  .\32 xl\:text-\[75px\] {
    @media (width >= 96rem) {
      font-size: 75px;
    }
  }
  
  .py-24 {
    padding-block: calc(var(--spacing) * 24);
  }
  .lg\:grid-cols-2 {
    @media (width >= 64rem) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  .min-h-\[400px\] {
    min-height: 400px;
  }
  .lg\:min-h-\[500px\] {
    @media (width >= 64rem) {
      min-height: 500px;
    }
  }
  .bg-opacity-30 {
    background-color: rgb(0 0 0 / 0.3);
  }
  .bottom-8 {
    bottom: calc(var(--spacing) * 8);
  }
  .left-8 {
    left: calc(var(--spacing) * 8);
  }
  .inline-flex {
    display: inline-flex;
  }
  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }
  .transition-transform {
    transition-property: transform;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .group:hover .group-hover\:translate-x-1 {
    transform: translateX(0.25rem);
  }
  .text-4xl {
    font-size: 2.25rem; /* 36px */
    line-height: 2.5rem; /* 40px */
  }
  .lg\:text-5xl {
    @media (width >= 64rem) {
      font-size: var(--text-5xl);
      line-height: var(--tw-leading, var(--text-5xl--line-height));
    }
  }
  .text-blue-600 {
    color: var(--color-blue-600);
  }
  
  .group:hover .group-hover\:opacity-0 {
    opacity: 0;
  }
  .group:hover .group-hover\:opacity-100 {
    opacity: 1;
  }

  .object-cover {
    object-fit: cover;
  }
  
  @keyframes marquee-fast {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  /*
   * =============================================
   * ||  NEW: Added for image gallery marquee   ||
   * =============================================
  */
  @keyframes marquee-reverse-fast {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /*
   * =============================================
   * ||  NEW: Added for Hero Image "Subtle Reveal" ||
   * =============================================
  */
  @keyframes hero-reveal {
    0% {
      opacity: 0;
      transform: scale(1.05);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  .animate-hero-reveal {
    animation: hero-reveal 2.5s ease-in-out forwards; /* UPDATED: Changed from 1.5s to 2.5s */
  }
}
@property --tw-space-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-space-x-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-leading {
  syntax: "*";
  inherits: false;
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}
@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}
@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-backdrop-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-gradient-from {
  syntax: "*";
  inherits: false;
}
@property --tw-gradient-from-position {
  syntax: "*";
  inherits: false;
}
@property --tw-gradient-to {
  syntax: "*";
  inherits: false;
}
@property --tw-gradient-to-position {
  syntax: "*";
  inherits: false;
}
@property --tw-gradient-stops {
  syntax: "*";
  inherits: false;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-space-y-reverse: 0;
      --tw-space-x-reverse: 0;
      --tw-border-style: solid;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-backdrop-blur: initial;
      --tw-backdrop-brightness: initial;
      --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial;
      --tw-backdrop-hue-rotate: initial;
      --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial;
      --tw-backdrop-saturate: initial;
      --tw-backdrop-sepia: initial;
      --tw-gradient-from: initial;
      --tw-gradient-from-position: initial;
      --tw-gradient-to: initial;
      --tw-gradient-to-position: initial;
      --tw-gradient-stops: initial;
    }
  }
}

/* * ===================================================================
 * CUSTOM STYLES FOR "CRAZY BREAD BOYS" (TASTORIA THEME)
 * ===================================================================
*/

/* * BUTTON: .btn-primary (Red Button)
 * Matches the "ORDER ONLINE" button in the hero
 *
 * FIX: This style works as-is. The <a> tag is `position: relative`,
 * and the new `<span class="relative">` in index.html ensures
 * the text stacks *on top* of the animated border.
*/
.btn-primary {
    position: relative;
    display: inline-block;
    padding: 0.75rem 2rem; /* 12px 32px */
    color: var(--color-white);
    text-transform: uppercase;
    font-family: var(--font-cinzel);
    font-size: 0.875rem; /* 14px */
    letter-spacing: .05em;
    border: 1px solid var(--color-brand-primary);
    background-color: var(--color-brand-primary);
    transition: color 0.3s, background-color 0.3s;
    /* NEW: Added overflow:hidden to contain the new glow effect */
    overflow: hidden;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-white); /* Text stays white on hover */
}

/* * BUTTON: .btn-secondary (White Button)
 * Matches the "BOOK NOW" button in the header
 *
 * FIX: This style also works as-is for the same reason
 * as the .btn-primary.
*/
.btn-secondary {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.5rem; /* 8px 24px */
    color: var(--color-brand-dark);
    text-transform: uppercase;
    font-family: var(--font-cinzel);
    font-size: 0.875rem; /* 14px */
    letter-spacing: .05em;
    border: 1px solid var(--color-white);
    background-color: var(--color-white);
    transition: color 0.3s, background-color 0.3s;
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--color-white);
}

/* * BUTTON: .btn-tertiary (White Button, Dark Text)
 * Matches the "Meet The Bakers" button in the about section
 * UPDATED: Fixed style to be white background with dark text/border
*/
.btn-tertiary {
    position: relative;
    display: inline-block;
    padding: 0.75rem 2rem; /* 12px 32px */
    color: var(--color-brand-dark);
    text-transform: uppercase;
    font-family: var(--font-cinzel);
    font-size: 0.875rem; /* 14px */
    letter-spacing: .05em;
    border: 1px solid var(--color-brand-dark);
    background-color: var(--color-white); /* <-- FIX: Was brand-dark */
    transition: color 0.3s, background-color 0.3s;
}

.btn-tertiary:hover {
    background-color: transparent;
    color: var(--color-brand-dark); /* Text stays dark on hover */
}

/* * ===================================================================
 * NEW: Override for Homepage Hero Button Color
 * ===================================================================
*/
main .btn-primary {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-brand-dark); /* Black text for contrast */
}

/* Override hover state for hero button */
main .btn-primary:hover {
    background-color: transparent;
    color: var(--color-white); /* On hover, go transparent, text white (as it was) */
    border-color: var(--color-white); /* Keep border color white on hover */
}


/* * ANIMATED BORDERS (For all three buttons)
 * This uses the same logic from the original Tastoria site.
*/

.btn-primary .btn-border,
.btn-secondary .btn-border,
.btn-tertiary .btn-border {
    position: absolute;
    inset: 3px;
    transition: all 0.3s;
}

.btn-primary .btn-border-line,
.btn-secondary .btn-border-line,
.btn-tertiary .btn-border-line {
    position: absolute;
    transition: all 0.3s ease-in-out;
}

/* Primary Button (Red) - uses light border lines */
.btn-primary .btn-border-line {
    background-color: var(--color-border-light); /* rgba(255, 255, 255, 0.5) */
}

/* Secondary Button (White) - uses dark border lines */
.btn-secondary .btn-border-line {
     background-color: var(--color-border-dark); /* rgba(0, 0, 0, 0.5) */
}

/* Tertiary Button (Dark) - uses dark border lines */
.btn-tertiary .btn-border-line {
     background-color: var(--color-border-dark); /* rgba(0, 0, 0, 0.5) */
}


.btn-border-line-top {
    top: 0;
    left: 0;
    width: 0%; /* Start at 0, grow on hover */
    height: 1px;
}

.btn-border-line-right {
    top: 0;
    right: 0;
    width: 1px;
    height: 0%; /* Start at 0, grow on hover */
    height: 1px;
}

.btn-border-line-bottom {
    bottom: 0;
    right: 0;
    width: 0%; /* Start at 0, grow on hover */
    height: 1px;
}

.btn-border-line-left {
    bottom: 0;
    left: 0;
    width: 1px;
    height: 0%; /* Start at 0, grow on hover */
    height: 1px;
}

/* Hover-in animation for border (grows) */
.btn-primary:hover .btn-border-line-top,
.btn-secondary:hover .btn-border-line-top,
.btn-tertiary:hover .btn-border-line-top { 
    width: 100%; 
}
.btn-primary:hover .btn-border-line-right,
.btn-secondary:hover .btn-border-line-right,
.btn-tertiary:hover .btn-border-line-right { 
    height: 100%; 
}
.btn-primary:hover .btn-border-line-bottom,
.btn-secondary:hover .btn-border-line-bottom,
.btn-tertiary:hover .btn-border-line-bottom { 
    width: 100%; 
}
.btn-primary:hover .btn-border-line-left,
.btn-secondary:hover .btn-border-line-left,
.btn-tertiary:hover .btn-border-line-left { 
    height: 100%; 
}

/* * ===================================================================
 * RE-ADDED: Hero Title Responsive Sizing
 * This was accidentally removed and is now restored.
 * ===================================================================
*/
.text-hero-title {
  /* Mobile-first size */
  font-size: 40px;
  line-height: 50px;
}

@media (min-width: 768px) { /* md */
  .text-hero-title {
    font-size: 60px;
    line-height: 70px;
  }
}

@media (min-width: 1024px) { /* lg */
  .text-hero-title {
    font-size: 80px;
    line-height: 90px;
  }
}

@media (min-width: 1440px) { /* Custom breakpoint from original site */
  .text-hero-title {
    font-size: 100px;
    line-height: 110px;
  }
}

/* * ===================================================================
 * FIX: Mobile Menu Visibility for JS Transition
 *
 * This class is now toggled by script.js.
 * It works with the `max-h-0` and `transition-[max-height]`
 * classes in index.html to create a smooth slide-down animation.
 * ===================================================================
*/
#mobile-menu.menu-open {
    max-height: 1000px; /* INCREASED from 500px to ensure all content is visible */
}
}
/*
 * ===================================================================
*/
.custom-border {
    border: 2px solid var(--color-brand-primary);
}
}

/*
 * ===================================================================
 * NEW: Added for gallery marquee hover-pause
 * ===================================================================
*/
.gallery-marquee-wrapper:hover .animate-marquee-reverse-fast {
  animation-play-state: paused;
}
}

/*
 * ===================================================================
 * NEW: Added for Hero Button repeating glow/shimmer effect
 * ===================================================================
*/

/* 1. Defines the shimmer animation */
/* UPDATED: Removed rotate and adjusted transform to go fully left-to-right */
@keyframes shimmer {
  0% {
    /* Starts with its right edge at the button's left edge */
    transform: translateX(-100%);
  }
  100% {
    /* Ends with its left edge at the button's right edge (200% * 50% width = 100% movement) */
    transform: translateX(200%);
  }
}

/* * 2. Creates the shimmer pseudo-element.
 * This selector (main .btn-primary) targets *only* the button
 * in the hero section (which is in <main>) and *not* the
 * button in the footer (which is in <footer>).
*/
main .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%; /* Makes the shimmer a bit thinner */
  height: 100%;
  
  /* The "white glowing light" */
  background: linear-gradient(
    90deg, 
    transparent, 
    rgba(255, 255, 255, 0.4), /* The white shimmer */
    transparent
  );
  
  opacity: 0.75;

  /* * Animation: 
   * - shimmer: the animation name
   * - 2.5s: duration of one shimmer
   * - 1.5s: delay between each shimmer
   * - infinite: repeats forever
  */
  /* UPDATED: Changed animation properties for a cleaner effect */
  animation: shimmer 2.5s 1.5s infinite;
}
}

/* * ===================================================================
 * NEW: STYLES MOVED FROM INLINE <style> TAG
 * Includes lazy-load animations and custom page-specific classes
 * ===================================================================
*/

.border-brand-dark {
  border-color: #101010; 
}

/* 1. This is the default hidden state for our individual items */
.lazy-load-item {
  opacity: 0;
  transform: translateY(30px); /* Start 30px lower */
  /* This allows both the lazy-load and hover effects to be animated. */
  transition: opacity 0.6s ease-out 0.2s, 
              transform 0.6s ease-out 0.2s, 
              box-shadow 0.3s ease-in-out,
              transform 0.3s ease-in-out;
}

/* 2. JavaScript will add this class when the item is visible */
.lazy-load-item.is-visible {
  opacity: 1;
  transform: translateY(0); /* Move to final position */
}

/* 3. Staggered delay classes */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* * 4. Fixes for hover effects on lazy-loaded items
 * These have higher specificity to override lazy-load styles on hover.
*/
.lazy-load-item.is-visible.product-card-lift:hover {
  transform: translateY(-0.5rem); /* -8px */
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.lazy-load-item.is-visible.blog-card-lift:hover {
  transform: translateY(-0.5rem); /* -8px */
}

/* 5. Custom class for About Page 1/2 screen height (REMOVED) */
/* .h-1-2-screen was here */
/* REMOVED the extra closing brace that was here */

/*
 * ===================================================================
 * NEW: PRODUCT PAGE TABS
 * ===================================================================
*/
.tab-button {
  font-family: var(--font-cinzel);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.125rem; /* 18px */
  padding: 0.75rem 2.5rem; /* 12px 40px */
  border-radius: 0; /* Sharp corners */
  border: 2px solid var(--color-brand-dark);
  color: var(--color-brand-dark);
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

.tab-button:hover {
  background-color: var(--color-brand-dark);
  color: var(--color-white);
}

/* Active state as requested */
.tab-button.active {
  background-color: var(--color-brand-dark);
  color: var(--color-white);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-panel {
  display: block; /* JS will handle hiding/showing */
  animation: fadeIn 0.5s ease-in-out;
}

/* This class will be added by JS to hide inactive panels */
.tab-panel.hidden {
    display: none;
}

/*
 * ===================================================================
 * NEW: PRODUCT PAGE FILTERS
 * ===================================================================
*/
.filter-button {
  font-family: var(--font-lora); /* Using Poppins (body font) for readability */
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.875rem; /* 14px */
  padding: 0.5rem 1rem; /* 8px 16px */
  border-radius: 9999px; /* Pill shape */
  border: 1px solid var(--color-brand-dark);
  color: var(--color-brand-dark);
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

.filter-button:hover {
  background-color: var(--color-brand-dark);
  color: var(--color-white);
  border-color: var(--color-brand-dark);
}

/* Active state for filters */
.filter-button.active {
  background-color: var(--color-brand-dark);
  color: var(--color-white);
  border-color: var(--color-brand-dark);
}

/* Animation for product items fading in/out */
.product-item {
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, max-height 0.4s ease-in-out;
    transform: scale(1);
    opacity: 1;
    max-height: 1000px; /* Large value to allow item to be visible */
    overflow: hidden;
}

.product-item.hidden {
    opacity: 0;
    transform: scale(0.95);
    max-height: 0;
    /* We hide the item completely after the animation */
    padding: 0;
    margin: 0;
    border: none;
}

/*
 * ===================================================================
 * NEW: CONTACT FORM UTILITIES
 * Mimics Tailwind's peer functionality for floating labels
 * ===================================================================
*/

/* Initial Label Position (Label is visible and inside the input) */
/* Corresponding to: peer-placeholder-shown:top-3 peer-placeholder-shown:text-base peer-placeholder-shown:text-brand-dark/50 */
input:placeholder-shown ~ label,
textarea:placeholder-shown ~ label {
    top: 0.75rem; /* top-3 */
    font-size: 1rem; /* text-base */
    color: rgba(16, 16, 16, 0.5); /* text-brand-dark/50 */
}

/* Focused or Filled Label Position (Label moves up and shrinks) */
/* Corresponding to: peer-focus:-top-3.5 peer-focus:text-sm peer-focus:text-brand-primary */
input:focus ~ label,
textarea:focus ~ label,
/* Also keep it up if there is a value (not placeholder shown) */
input:not(:placeholder-shown) ~ label,
textarea:not(:placeholder-shown) ~ label {
    top: -0.875rem; /* -top-3.5 */
    font-size: 0.875rem; /* text-sm */
    /* UPDATED: Changed from brand-primary (Red) to brand-dark (Black) */
    color: var(--color-brand-dark); 
}

/* Specific fix for select element since it doesn't support placeholder-shown */
select ~ label {
    top: -0.875rem;
    font-size: 0.875rem;
    color: rgba(16, 16, 16, 0.7);
}

/*m
 * =============================================
 * || NEW: Added for Social Icon Hover        ||
 * =============================================
*/
.group:hover .group-hover\:bg-brand-dark {
  background-color: var(--color-brand-dark);
}
.group:hover .group-hover\:text-white {
  color: var(--color-white);
}

/* * =============================================
 * || FIX: Missing Group Hover for Contact Info ||
 * =============================================
*/
.group:hover .group-hover\:bg-brand-primary {
  background-color: var(--color-brand-primary);
}
}
}