/* ============================================================
   GHOSTRIDERS SMOKEHOUSE — Main Stylesheet
   Clean, standalone CSS — no legacy overrides needed
   ============================================================ */

/* --- Fonts --- */
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700|Open+Sans);

@font-face {
  font-family: Alice-Regular;
  src: url('/fonts/Alice-Regular.eot');
  src: url('/fonts/Alice-Regular.eot?#iefix') format('embedded-opentype'),
       url('/fonts/Alice-Regular.woff') format('woff'),
       url('/fonts/Alice-Regular.ttf') format('truetype'),
       url('/fonts/Alice-Regular.svg#icon') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: MrDeHaviland-Regular;
  src: url('/fonts/MrDeHaviland-Regular.eot');
  src: url('/fonts/MrDeHaviland-Regular.eot?#iefix') format('embedded-opentype'),
       url('/fonts/MrDeHaviland-Regular.woff') format('woff'),
       url('/fonts/MrDeHaviland-Regular.ttf') format('truetype'),
       url('/fonts/MrDeHaviland-Regular.svg#icon') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* --- CSS Custom Properties / Design Tokens --- */
:root {
  /* Brand colors */
  --gr-red: #e53025;
  --gr-red-dark: #c42a20;
  --gr-red-glow: rgba(229, 48, 37, 0.35);
  --gr-dark: #1a1a1a;
  --gr-dark-2: #292929;
  --gr-gold: #c8a86b;
  --gr-gold-light: #dfc08a;
  --gr-green: #71ab01;

  /* Text — WCAG AA compliant on white (#fff) */
  --gr-text: #444;
  --gr-text-light: #777;
  --gr-text-muted: #999;

  /* Surfaces */
  --gr-light-bg: #f7f7f8;
  --gr-white: #fff;
  --gr-border: #e0e0e0;

  /* Border radius scale */
  --gr-radius-sm: 4px;
  --gr-radius: 6px;
  --gr-radius-lg: 12px;
  --gr-radius-xl: 16px;

  /* Elevation / shadows (layered for realism) */
  --gr-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --gr-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.06);
  --gr-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --gr-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --gr-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);

  /* Transition timing (Material Design curves) */
  --gr-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --gr-ease-out: cubic-bezier(0, 0, 0.2, 1);
  --gr-ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --gr-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --gr-duration-fast: 150ms;
  --gr-duration: 200ms;
  --gr-duration-moderate: 300ms;
  --gr-duration-slow: 500ms;
  --gr-transition: all var(--gr-duration-moderate) var(--gr-ease);

  /* Typography */
  --gr-font: 'Lato', 'Open Sans', sans-serif;
  --gr-font-heading: Alice-Regular, Georgia, serif;
  --gr-font-script: MrDeHaviland-Regular, cursive;

  /* Spacing scale (8px base) */
  --sp-1: 0.25rem;   /*  4px */
  --sp-2: 0.5rem;    /*  8px */
  --sp-3: 0.75rem;   /* 12px */
  --sp-4: 1rem;      /* 16px */
  --sp-5: 1.25rem;   /* 20px */
  --sp-6: 1.5rem;    /* 24px */
  --sp-8: 2rem;      /* 32px */
  --sp-10: 2.5rem;   /* 40px */
  --sp-12: 3rem;     /* 48px */
  --sp-16: 4rem;     /* 64px */
  --sp-20: 5rem;     /* 80px */

  /* Layout */
  --gr-header-h: 80px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--gr-font);
  font-size: 1rem;
  color: var(--gr-dark);
  background: var(--gr-white);
  min-height: 100svh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gr-font-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

p {
  line-height: 1.6;
}

.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

/* --- Layout --- */
.inside-body-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

.wrapper {
  flex: 1;
  background: var(--gr-white);
  animation: gr-page-enter 0.4s ease-out;
}

/* --- Accessibility --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gr-red);
  outline-offset: 3px;
  border-radius: var(--gr-radius-sm);
}

button:disabled,
button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Skip to content — accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::selection {
  background: rgba(229, 48, 37, 0.15);
  color: var(--gr-dark);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.gr-anim-hidden {
  opacity: 0;
  transform: translateY(12px);
}

.animated {
  animation-duration: 0.7s;
  animation-fill-mode: both;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .gr-anim-hidden {
    opacity: 1;
    transform: none;
  }
}

@keyframes gr-page-enter {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gr-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes gr-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229, 48, 37, 0.4); }
  50% { box-shadow: 0 0 20px 4px rgba(229, 48, 37, 0.2); }
}

@keyframes gr-icon-bounce {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.2); }
  60% { transform: scale(0.95); }
  80% { transform: scale(1.05); }
}

@keyframes gr-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes gr-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.button {
  cursor: pointer;
  display: inline-block;
  font-family: var(--gr-font);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--gr-radius);
  padding: 12px 32px;
  transition:
    transform var(--gr-duration-fast) var(--gr-ease-spring),
    box-shadow var(--gr-duration) var(--gr-ease-out),
    background-color var(--gr-duration-fast) var(--gr-ease),
    border-color var(--gr-duration-fast) var(--gr-ease),
    color var(--gr-duration-fast) var(--gr-ease);
}

.red-btn {
  background-color: var(--gr-red);
  color: var(--gr-white);
  border-color: var(--gr-red);
}

.red-btn:hover,
.red-btn:focus-visible {
  background-color: var(--gr-red-dark);
  border-color: var(--gr-red-dark);
  color: var(--gr-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gr-red-glow);
}

.red-btn:active {
  transform: translateY(0);
  box-shadow: var(--gr-shadow-xs);
}

.white-btn {
  background: var(--gr-white);
  color: var(--gr-dark);
  border-color: var(--gr-white);
}

.white-btn:hover,
.white-btn:focus-visible {
  background: transparent;
  color: var(--gr-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.white-btn:active {
  transform: translateY(0);
}

.green-btn {
  background: var(--gr-green);
  color: var(--gr-white);
  border-color: var(--gr-green);
}

.green-btn:hover,
.green-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(113, 171, 1, 0.3);
  filter: brightness(1.1);
}

.green-btn:active {
  transform: translateY(0);
  box-shadow: var(--gr-shadow-xs);
}

.gr-btn-outline {
  background-color: transparent;
  color: var(--gr-white);
  border-color: var(--gr-white);
}

.gr-btn-outline:hover,
.gr-btn-outline:focus-visible {
  background-color: var(--gr-white);
  color: var(--gr-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.gr-btn-outline:active {
  transform: translateY(0);
}

.scale-btn {
  transition: transform var(--gr-duration-fast) var(--gr-ease-spring);
}

.scale-btn:hover {
  transform: scale(1.05);
}

.scale-btn:active {
  transform: scale(0.98);
}

/* ============================================================
   HEADER
   ============================================================ */
.gr-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--gr-white);
  border-bottom: 1px solid var(--gr-border);
  transition:
    box-shadow var(--gr-duration-moderate) var(--gr-ease),
    background var(--gr-duration-moderate) var(--gr-ease);
}

.gr-header-scrolled {
  box-shadow: var(--gr-shadow-md);
}

.gr-header-inner {
  height: var(--gr-header-h);
  display: flex;
  align-items: center;
}

.gr-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.gr-header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.gr-header-logo img {
  height: clamp(40px, 6svw, 55px);
  width: auto;
}

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

.gr-desktop-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: clamp(16px, 2.5svw, 32px);
  align-items: center;
}

.gr-desktop-nav a {
  font-family: var(--gr-font);
  font-weight: 600;
  font-size: clamp(12px, 1.1svw, 14px);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gr-dark);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: color var(--gr-duration-fast) var(--gr-ease);
  white-space: nowrap;
}

.gr-desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gr-red);
  transition:
    width var(--gr-duration) var(--gr-ease-spring),
    left var(--gr-duration) var(--gr-ease-spring);
  border-radius: 1px;
}

.gr-desktop-nav a:hover,
.gr-desktop-nav a.active {
  color: var(--gr-red);
  text-decoration: none;
}

.gr-desktop-nav a:hover::after,
.gr-desktop-nav a.active::after {
  width: 100%;
  left: 0;
}

/* Invest link — gold accent with stars */
.gr-nav-invest {
  color: #8a7345 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.gr-nav-invest i.fa-star {
  font-size: 8px !important;
  color: #8a7345 !important;
  transition: color var(--gr-duration-fast) var(--gr-ease),
              transform var(--gr-duration-fast) var(--gr-ease) !important;
}

.gr-desktop-nav a.gr-nav-invest:hover,
.gr-desktop-nav a.gr-nav-invest.active,
.gr-mobile-nav a.gr-nav-invest:hover,
.gr-mobile-nav a.gr-nav-invest.active {
  color: #8a7345 !important;
}

.gr-desktop-nav a.gr-nav-invest:hover i,
.gr-mobile-nav a.gr-nav-invest:hover i {
  color: #8a7345 !important;
}

.gr-desktop-nav a.gr-nav-invest::after {
  background: var(--gr-gold) !important;
}

/* Header right */
.gr-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.gr-header-social {
  display: none;
  align-items: center;
  gap: 8px;
}

.gr-header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--gr-text-light);
  font-size: 17px;
  transition:
    color var(--gr-duration-fast) var(--gr-ease),
    background var(--gr-duration-fast) var(--gr-ease),
    transform var(--gr-duration-fast) var(--gr-ease-spring);
  text-decoration: none;
  line-height: 1;
}

.gr-header-social a i.fa {
  line-height: 1;
}

.gr-header-social a:hover {
  color: var(--gr-red);
  background: rgba(229, 48, 37, 0.08);
}

/* Hamburger */
.gr-burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: none;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  z-index: 20;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--gr-radius);
  transition: background 0.2s ease;
}

.gr-burger:hover {
  background: var(--gr-light-bg);
}

.gr-burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--gr-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  margin: 3px 0;
}

.gr-burger-open .gr-burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.gr-burger-open .gr-burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.gr-burger-open .gr-burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav */
.gr-mobile-nav {
  max-height: 0;
  overflow: hidden;
  background: var(--gr-white);
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 0 solid var(--gr-border);
}

.gr-mobile-nav-open {
  max-height: 100svh;
  border-top-width: 1px;
}

.gr-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.gr-mobile-nav a {
  display: block;
  padding: 14px 24px;
  font-family: var(--gr-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gr-dark);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.gr-mobile-nav a:hover {
  background: var(--gr-light-bg);
  border-left-color: var(--gr-red);
  color: var(--gr-red);
}

.gr-header-menu-open {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.gr-mobile-nav a.active {
  background: rgba(229, 48, 37, 0.05);
  border-left-color: var(--gr-red);
  color: var(--gr-red);
}

.gr-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: gr-fade-in 0.2s ease;
}

/* ============================================================
   BANNER — Page headers
   ============================================================ */
.banner {
  position: relative;
  background: linear-gradient(135deg, var(--gr-dark) 0%, #2a2a2a 50%, #333 100%);
  z-index: 1;
  overflow: hidden;
}

/* Subtle texture overlay for depth */
.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(229, 48, 37, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.banner .banner-caption {
  padding: clamp(60px, 10svh, 90px) 0;
  text-align: center;
}

.banner h5,
.banner-caption h5 {
  font-family: var(--gr-font);
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: clamp(12px, 1.2svw, 14px);
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 15px rgba(0, 0, 0, 0.4);
}

.banner h2,
.banner-caption h2 {
  color: var(--gr-white);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: clamp(32px, 5svw, 48px);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.banner h5 span,
.banner-caption h5 span {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  vertical-align: middle;
  margin: 0 10px;
}

/* ============================================================
   HOMEPAGE — Hero section
   ============================================================ */
.homepage .top-content {
  height: auto;
  min-height: clamp(300px, 50svh, 500px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px 15px 70px;
  background-color: var(--gr-white);
  background-size: cover;
  background-position: center;
}

.homepage .top-content > div > img,
.homepage .top-content img[alt*="Logo"] {
  animation: gr-float 4s ease-in-out infinite;
}

.homepage .top-heading {
  position: relative;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.homepage .top-heading h2 {
  font-size: clamp(32px, 5svw, 60px);
  color: var(--gr-dark);
}

.homepage .top-heading h6 {
  font-size: clamp(12px, 1.3svw, 16px);
  font-family: var(--gr-font-heading);
  letter-spacing: 2px;
  color: var(--gr-text);
}

.homepage .top-heading h6 span {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gr-text-light);
  vertical-align: middle;
  margin: 0 10px;
}

.homepage .sub-heading {
  margin-top: 10px;
}

.homepage .sub-heading h2 {
  font-size: clamp(28px, 4svw, 50px);
  color: var(--gr-dark);
}

.homepage .sub-heading h6 {
  font-size: clamp(11px, 1.2svw, 14px);
  letter-spacing: 2px;
  color: var(--gr-text);
  font-family: var(--gr-font-heading);
}

.homepage .sub-heading .sub-upper {
  text-transform: uppercase;
  margin-bottom: 2px;
}

.homepage .sub-heading .sub-lower {
  text-transform: uppercase;
  margin-top: 2px;
}

.homepage .sub-heading h2.exp {
  font-family: var(--gr-font-script);
  font-size: clamp(42px, 6svw, 72px);
  font-weight: 400;
  color: var(--gr-red);
  line-height: 1.1;
  margin: 4px 0;
}

/* ============================================================
   PLACE-ORDER BAR — Bridges hero and food-solutions
   ============================================================ */
/* The bridge card straddles the seam between two sections.
   Negative margin-top pulls it up into the previous section,
   negative margin-bottom pulls the next section up behind it.
   The card is ~72px tall on desktop, so ±36px centers it on the seam. */
.gr-place-order-bridge {
  position: relative;
  z-index: 10;
  margin-top: -40px;
  margin-bottom: -40px;
}

.place-order {
  position: relative;
  z-index: 10;
  max-width: 950px;
  width: 90%;
  margin: 0 auto;
  background: var(--gr-dark);
  box-shadow: var(--gr-shadow-xl);
  display: flex;
  align-items: center;
  border-radius: var(--gr-radius-lg);
  overflow: hidden;
  border-left: 5px solid var(--gr-red);
  transition:
    transform var(--gr-duration-moderate) var(--gr-ease-spring),
    box-shadow var(--gr-duration-moderate) var(--gr-ease-out);
}

.place-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.place-order .desc {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  flex: 1;
}

.place-order .desc h4 {
  color: var(--gr-white);
  font-family: var(--gr-font-heading);
  font-size: clamp(14px, 1.4svw, 19px);
  text-transform: none;
  letter-spacing: 0.3px;
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
}

.place-order .call {
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.place-order .call h6 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 4px;
  font-family: var(--gr-font);
}

.place-order .call h3 {
  color: var(--gr-white);
  font-family: var(--gr-font);
  margin: 0;
  font-size: clamp(18px, 2svw, 22px);
  white-space: nowrap;
}

.place-order .call h3 i {
  color: var(--gr-red);
  margin-right: 8px;
}

.place-order .order {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   FOOD SOLUTIONS / PRODUCTS SECTION
   ============================================================ */
.recipes.food-solutions {
  background-color: var(--gr-dark-2);
  background-size: cover;
  background-position: center;
  padding: 0;
}

/* Extra padding so the bridging card doesn't overlap section content */
.homepage .recipes.food-solutions {
  padding-top: 0;
}

.food-solutions .container {
  padding: 100px 15px;
  text-align: center;
}

.food-solutions .container .cms-editable {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.food-solutions .container .cms-editable p {
  text-align: center;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.food-solutions .container .cms-editable > p:first-child {
  margin-bottom: 8px;
}

.food-solutions .container .cms-editable > p:first-child img {
  max-width: 60px;
}

.food-solutions h2 {
  font-size: clamp(24px, 3svw, 30px);
  color: var(--gr-white);
  margin: 0 0 6px;
}

.food-solutions h4 {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--gr-font);
  font-size: clamp(13px, 1.2svw, 15px);
  margin: 0 0 15px;
}

.food-solutions h4.italics {
  font-family: var(--gr-font-script);
  font-size: clamp(3rem, 8svw, 10rem);
  font-style: normal;
  margin: 0 0 10px;
  color: var(--gr-white);
  line-height: 1.1;
}

.food-solutions .productButton {
  margin-top: 0;
}

/* ============================================================
   FEATURES SECTION — Homepage
   ============================================================ */
.gr-features {
  background-color: var(--gr-light-bg);
  padding: clamp(50px, 8svh, 80px) 0;
}

.gr-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3svw, 40px);
  text-align: center;
}

.gr-feature-card {
  padding: clamp(28px, 3svw, 42px) clamp(18px, 2svw, 28px);
  background: var(--gr-white);
  border-radius: var(--gr-radius-lg);
  box-shadow: var(--gr-shadow);
  border-top: 3px solid var(--gr-red);
  transition:
    transform var(--gr-duration-moderate) var(--gr-ease-spring),
    box-shadow var(--gr-duration-moderate) var(--gr-ease-out);
}

.gr-feature-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--gr-shadow-xl);
}

.gr-feature-card i {
  font-size: clamp(32px, 4svw, 42px);
  color: var(--gr-red);
  margin-bottom: var(--sp-5);
  display: block;
  transition: transform var(--gr-duration-moderate) var(--gr-ease-bounce);
}

.gr-feature-card:hover i {
  transform: scale(1.15);
}

.gr-feature-card h4 {
  font-family: var(--gr-font-heading);
  font-size: clamp(18px, 2svw, 22px);
  color: var(--gr-dark);
  margin-bottom: var(--sp-3);
}

.gr-feature-card p {
  color: var(--gr-text);
  font-family: var(--gr-font);
  font-size: clamp(14px, 1.2svw, 15px);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   PRODUCT SHOWCASE — Homepage
   ============================================================ */
.gr-product-showcase {
  background-color: var(--gr-dark-2);
  padding: clamp(40px, 6svh, 70px) 0;
  text-align: center;
  position: relative;
}

.gr-product-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(229, 48, 37, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.gr-product-showcase h2 {
  font-family: var(--gr-font-heading);
  color: var(--gr-white);
  font-size: clamp(24px, 3svw, 32px);
  margin-bottom: 4px;
}

.gr-product-showcase h4 {
  color: var(--gr-text-light);
  font-family: var(--gr-font);
  font-weight: 300;
  font-size: clamp(12px, 1.2svw, 14px);
  margin-bottom: clamp(15px, 2svw, 25px);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gr-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.5svw, 20px);
  max-width: 900px;
  margin: 0 auto;
}

.gr-product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--gr-radius-lg);
  padding: clamp(16px, 1.5svw, 24px) clamp(12px, 1.5svw, 18px) clamp(14px, 1.5svw, 20px);
  transition:
    transform var(--gr-duration-moderate) var(--gr-ease-spring),
    box-shadow var(--gr-duration-moderate) var(--gr-ease-out),
    background var(--gr-duration) var(--gr-ease),
    border-color var(--gr-duration) var(--gr-ease);
}

.gr-product-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35), 0 0 20px rgba(229, 48, 37, 0.1);
}

.gr-product-card img {
  max-width: clamp(80px, 10svw, 110px);
  height: auto;
  margin: 0 auto var(--sp-2);
  display: block;
  transition: transform var(--gr-duration-moderate) var(--gr-ease-spring);
}

.gr-product-card:hover img {
  transform: scale(1.1) rotate(-2deg);
}

.gr-product-card h5 {
  color: var(--gr-white);
  font-family: var(--gr-font);
  font-size: clamp(13px, 1.2svw, 15px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.gr-product-cta {
  margin-top: clamp(15px, 2svw, 25px);
}

/* ============================================================
   CTA BANNER — Homepage
   ============================================================ */
.gr-cta-banner {
  background: linear-gradient(135deg, var(--gr-red) 0%, #c62828 50%, #b71c1c 100%);
  padding: clamp(50px, 8svh, 80px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gr-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.gr-cta-banner h2 {
  font-family: var(--gr-font-heading);
  color: var(--gr-white);
  font-size: clamp(28px, 4svw, 40px);
  margin-bottom: 10px;
}

.gr-cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--gr-font);
  font-size: clamp(15px, 1.5svw, 18px);
  margin-bottom: clamp(25px, 3svw, 35px);
}

.gr-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.gr-cta-banner .red-btn {
  animation: gr-pulse-glow 2.5s ease-in-out infinite;
}

.gr-cta-banner .red-btn:hover {
  animation: none;
}

/* ============================================================
   RETAIL LOCATIONS
   ============================================================ */
.gr-retail {
  background-color: var(--gr-light-bg);
  padding: clamp(50px, 7svh, 70px) 0;
  text-align: center;
}

.gr-retail-header h2 {
  font-family: var(--gr-font-heading);
  font-size: clamp(28px, 3.5svw, 36px);
  color: var(--gr-dark);
  margin-bottom: 8px;
}

.gr-retail-header p {
  color: var(--gr-text);
  font-family: var(--gr-font);
  font-size: clamp(14px, 1.3svw, 16px);
  margin-bottom: clamp(25px, 3svw, 40px);
}

.gr-retail-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(15px, 3svw, 40px);
}

.gr-retail-logo {
  background: var(--gr-white);
  border-radius: var(--gr-radius-lg);
  padding: var(--sp-5) var(--sp-8);
  box-shadow: var(--gr-shadow);
  transition:
    transform var(--gr-duration-moderate) var(--gr-ease-spring),
    box-shadow var(--gr-duration-moderate) var(--gr-ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.gr-retail-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--gr-shadow-lg);
}

.gr-retail-logo img {
  max-width: clamp(100px, 13svw, 160px);
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(25%);
  transition: filter var(--gr-duration-moderate) var(--gr-ease);
}

.gr-retail-logo:hover img {
  filter: grayscale(0%);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.gr-about-hero {
  display: flex;
  align-items: center;
  gap: clamp(30px, 4svw, 50px);
  margin-bottom: clamp(30px, 5svw, 50px);
}

.gr-about-hero-text {
  flex: 1.2;
  text-align: center;
}

.gr-about-logo {
  max-width: 100px;
  margin: 0 auto 15px;
}

.gr-about-hero-text h2 {
  font-family: var(--gr-font-heading);
  font-size: clamp(24px, 2.5svw, 32px);
  margin-bottom: 5px;
}

.gr-about-hero-text h4 {
  color: var(--gr-text);
  font-weight: 300;
  font-size: clamp(14px, 1.3svw, 16px);
}

.gr-about-hero-img {
  flex: 0.8;
  max-width: 320px;
  max-height: 280px;
  border-radius: var(--gr-radius-xl);
  box-shadow: var(--gr-shadow-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: transform var(--gr-duration-moderate) var(--gr-ease-spring);
}

.gr-about-hero-img:hover {
  transform: scale(1.02);
}

.gr-about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gr-about-story {
  max-width: 800px;
  margin: 0 auto clamp(40px, 5svw, 60px);
}

.gr-about-story h3 {
  font-family: var(--gr-font-heading);
  font-size: clamp(26px, 3svw, 32px);
  color: var(--gr-dark);
  margin-bottom: 25px;
  text-align: center;
}

.gr-about-story p {
  font-family: var(--gr-font);
  color: var(--gr-text);
  font-size: clamp(14px, 1.3svw, 16px);
  line-height: 1.9;
  margin-bottom: 20px;
}

.gr-about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
  padding: clamp(30px, 4svw, 50px) 0 20px;
  border-top: 1px solid var(--gr-border);
}

.gr-value {
  padding: var(--sp-5);
  transition: transform var(--gr-duration-moderate) var(--gr-ease-spring);
}

.gr-value:hover {
  transform: translateY(-3px);
}

.gr-value i {
  font-size: clamp(28px, 3svw, 36px);
  color: var(--gr-red);
  margin-bottom: var(--sp-4);
  display: block;
  transition: transform var(--gr-duration-moderate) var(--gr-ease-bounce);
}

.gr-value:hover i {
  transform: scale(1.15);
}

.gr-value h4 {
  font-family: var(--gr-font-heading);
  font-size: clamp(17px, 1.8svw, 20px);
  color: var(--gr-dark);
  margin-bottom: 8px;
}

.gr-value p {
  color: var(--gr-text);
  font-family: var(--gr-font);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   MAIN CONTENT — Shared page structure
   ============================================================ */
.main-content {
  background-color: var(--gr-white);
  position: relative;
  z-index: 1;
}

/* When the bridge card overlaps into this section */
.gr-place-order-bridge + .main-content {
  padding-top: 75px;
}

.main-content .content-wrapper {
  padding: clamp(40px, 5svw, 60px) clamp(20px, 3svw, 30px);
}

.content-wrapper img,
.img-holder img {
  max-width: 100%;
  height: auto;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.gr-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(30px, 5svw, 60px);
  align-items: start;
}

.gr-contact-info h3 {
  font-family: var(--gr-font-heading);
  font-size: clamp(24px, 2.5svw, 28px);
  color: var(--gr-dark);
  margin-bottom: 12px;
}

.gr-contact-info > p {
  color: var(--gr-text);
  font-family: var(--gr-font);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.gr-contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 35px;
}

.gr-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  transition: transform var(--gr-duration-fast) var(--gr-ease);
}

.gr-contact-item:hover {
  transform: translateX(4px);
}

.gr-contact-item i {
  font-size: 20px;
  color: var(--gr-red);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(229, 48, 37, 0.08);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background var(--gr-duration-fast) var(--gr-ease);
}

.gr-contact-item:hover i {
  background: rgba(229, 48, 37, 0.15);
}

.gr-contact-item h5 {
  font-family: var(--gr-font);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gr-dark);
  margin: 0 0 4px;
}

.gr-contact-item p {
  color: var(--gr-text);
  font-family: var(--gr-font);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.gr-contact-social h5 {
  font-family: var(--gr-font);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gr-dark);
  margin-bottom: 12px;
}

.gr-contact-social .gr-footer-social {
  margin-top: 0;
}

.gr-contact-social .gr-footer-social a {
  background: rgba(0, 0, 0, 0.08);
  color: var(--gr-dark);
}

.gr-contact-social .gr-footer-social a:hover {
  background: var(--gr-red);
  color: var(--gr-white);
}

/* --- Contact Form --- */
.gr-contact-form {
  background: var(--gr-light-bg);
  padding: clamp(28px, 3svw, 40px);
  border-radius: var(--gr-radius-lg);
  box-shadow: var(--gr-shadow);
  border: 1px solid var(--gr-border);
}

.gr-contact-form h3 {
  font-family: var(--gr-font-heading);
  font-size: clamp(20px, 2svw, 24px);
  color: var(--gr-dark);
  margin-bottom: 25px;
}

.gr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gr-form-group {
  margin-bottom: 20px;
}

.gr-form-group label {
  display: block;
  font-family: var(--gr-font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gr-dark);
  margin-bottom: 6px;
}

.gr-required {
  color: var(--gr-red);
}

.gr-form-group input,
.gr-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gr-border);
  border-radius: var(--gr-radius);
  font-family: var(--gr-font);
  font-size: 15px;
  color: var(--gr-dark);
  background: var(--gr-white);
  transition:
    border-color var(--gr-duration-fast) var(--gr-ease),
    box-shadow var(--gr-duration-fast) var(--gr-ease);
  box-sizing: border-box;
}

.gr-form-group input:hover,
.gr-form-group textarea:hover {
  border-color: var(--gr-text-light);
}

.gr-form-group input:focus,
.gr-form-group textarea:focus {
  border-color: var(--gr-red);
  box-shadow: 0 0 0 3px rgba(229, 48, 37, 0.1);
  outline: none;
}

.gr-form-group input::placeholder,
.gr-form-group textarea::placeholder {
  color: var(--gr-text-muted);
}

.gr-form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gr-form-message {
  padding: 10px 18px;
  border-radius: var(--gr-radius);
  font-family: var(--gr-font);
  font-size: 14px;
}

.gr-form-message.gr-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.gr-form-message.gr-error {
  background: #ffeeee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

/* ============================================================
   RECIPES PAGE
   ============================================================ */
.gr-recipes-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--gr-dark);
  border-left: 5px solid var(--gr-red);
  border-radius: var(--gr-radius-lg);
  padding: clamp(18px, 2.5svw, 25px) clamp(20px, 3svw, 35px);
  margin-bottom: clamp(30px, 4svw, 50px);
  flex-wrap: wrap;
}

.gr-recipes-callout-text h4 {
  color: var(--gr-white);
  font-family: var(--gr-font-heading);
  font-size: clamp(14px, 1.5svw, 19px);
  font-weight: 400;
  margin: 0;
  text-transform: none;
  letter-spacing: 0.3px;
}

.gr-recipes-callout-phone h6 {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--gr-font);
  font-size: 12px;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gr-recipes-callout-phone h3 {
  color: var(--gr-white);
  font-family: var(--gr-font);
  margin: 0;
  font-size: clamp(18px, 2svw, 22px);
}

.gr-recipes-callout-phone h3 i {
  color: var(--gr-red);
  margin-right: 8px;
}

.gr-recipes-callout-btn .button {
  white-space: nowrap;
}

.gr-recipes-section {
  margin-top: 10px;
}

.gr-recipe-tabs {
  display: flex;
  gap: clamp(8px, 1.2svw, 12px);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(25px, 3.5svw, 40px);
}

.gr-recipe-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: clamp(10px, 1.5svw, 15px) clamp(14px, 2svw, 20px);
  background: var(--gr-white);
  border: 2px solid var(--gr-border);
  border-radius: var(--gr-radius-lg);
  cursor: pointer;
  min-width: clamp(75px, 9svw, 100px);
  transition:
    transform var(--gr-duration-fast) var(--gr-ease-spring),
    box-shadow var(--gr-duration) var(--gr-ease-out),
    border-color var(--gr-duration-fast) var(--gr-ease);
}

.gr-recipe-tab:hover {
  border-color: var(--gr-red);
  transform: translateY(-3px);
  box-shadow: var(--gr-shadow-md);
}

.gr-recipe-tab-active {
  border-color: var(--gr-red);
  background: var(--gr-red);
}

.gr-recipe-tab-active span {
  color: var(--gr-white);
}

.gr-recipe-tab img {
  width: clamp(45px, 5svw, 60px);
  height: clamp(45px, 5svw, 60px);
  object-fit: cover;
  border-radius: 50%;
}

.gr-recipe-tab span {
  font-family: var(--gr-font);
  font-size: clamp(11px, 1svw, 13px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gr-dark);
}

.gr-recipe-category-title {
  text-align: center;
  font-size: clamp(24px, 3svw, 32px);
  font-weight: 700;
  color: var(--gr-dark);
  margin-bottom: clamp(25px, 3svw, 35px);
  position: relative;
  padding-bottom: 15px;
}

.gr-recipe-category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gr-red);
  border-radius: 2px;
}

.gr-recipe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.5svw, 30px);
}

.gr-recipe-card {
  display: grid;
  grid-template-columns: clamp(140px, 18svw, 200px) 1fr;
  background: var(--gr-white);
  border-radius: var(--gr-radius-lg);
  overflow: hidden;
  box-shadow: var(--gr-shadow);
  border: 1px solid var(--gr-border);
  transition:
    transform var(--gr-duration-moderate) var(--gr-ease-spring),
    box-shadow var(--gr-duration-moderate) var(--gr-ease-out),
    border-color var(--gr-duration) var(--gr-ease);
}

.gr-recipe-card:hover {
  box-shadow: var(--gr-shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(229, 48, 37, 0.2);
}

.gr-recipe-card-img {
  background: var(--gr-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(15px, 2svw, 20px);
  min-height: 180px;
}

.gr-recipe-card-img img {
  width: 100%;
  max-width: 160px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.gr-recipe-card-body {
  padding: clamp(18px, 2.5svw, 25px) clamp(20px, 2.5svw, 30px);
}

.gr-recipe-card-body h3 {
  font-family: var(--gr-font);
  font-size: clamp(18px, 2svw, 22px);
  font-weight: 700;
  color: var(--gr-dark);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.gr-recipe-desc {
  font-family: var(--gr-font);
  font-size: 14px;
  line-height: 1.7;
  color: var(--gr-text);
  margin-bottom: 20px;
}

.gr-recipe-ingredients {
  background: var(--gr-light-bg);
  border-radius: var(--gr-radius);
  padding: clamp(14px, 1.5svw, 18px) clamp(16px, 2svw, 22px);
  border-left: 3px solid var(--gr-red);
}

.gr-recipe-ingredients h4 {
  font-family: var(--gr-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--gr-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px 0;
}

.gr-recipe-ingredients h4 i {
  color: var(--gr-red);
  margin-right: 8px;
}

.gr-recipe-ingredients ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 6px;
}

.gr-recipe-ingredients li {
  font-family: var(--gr-font);
  font-size: 13px;
  color: var(--gr-text);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.gr-recipe-ingredients li::before {
  content: '\2022';
  color: var(--gr-red);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ============================================================
   INVEST PAGE
   ============================================================ */
.invest-page .content-wrapper {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.invest-page .content-wrapper h3 {
  font-family: var(--gr-font-heading);
  font-size: clamp(22px, 2.5svw, 28px);
  margin-top: clamp(30px, 4svw, 50px);
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gr-red);
  display: inline-block;
  color: var(--gr-dark);
  position: relative;
}

.invest-page .content-wrapper h4 {
  margin-top: 30px;
  color: var(--gr-dark);
  font-size: 18px;
  font-family: var(--gr-font);
  font-weight: 600;
}

.invest-page .content-wrapper ul {
  padding-left: 20px;
  margin: 15px 0;
  list-style: disc;
}

.invest-page .content-wrapper ul li {
  padding: 5px 0;
  color: var(--gr-text);
  line-height: 1.6;
}

.invest-page .content-wrapper p {
  line-height: 1.8;
  color: var(--gr-text);
  font-family: var(--gr-font);
}

.invest-page .content-wrapper a[href^="mailto"] {
  color: var(--gr-red);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: var(--gr-transition);
}

.invest-page .content-wrapper a[href^="mailto"]:hover {
  color: var(--gr-red-dark);
  text-decoration: underline;
}

.invest-page .content-wrapper > .clearfix {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 4svw, 50px);
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.invest-page .heading-holder {
  flex: 1.2;
}

.invest-page .heading-holder h2 {
  font-size: clamp(22px, 2.5svw, 30px);
}

.invest-page .heading-holder h4 {
  font-style: italic;
  color: #777;
  margin-top: 10px;
  border-bottom: none;
  font-size: clamp(14px, 1.3svw, 16px);
  line-height: 1.6;
}

.invest-page .img-holder {
  flex: 0.8;
  max-width: 400px;
  max-height: 300px;
  border-radius: var(--gr-radius-lg);
  overflow: hidden;
  box-shadow: var(--gr-shadow-lg);
}

.invest-page .img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.invest-page .heading-holder img {
  max-width: 80px;
  margin-bottom: 15px;
}

.gr-invest-deck-section {
  margin: clamp(44px, 6svw, 72px) 0;
  padding: clamp(28px, 4svw, 44px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 245, 240, 0.98) 100%);
  border: 1px solid var(--gr-border);
  border-radius: var(--gr-radius-xl);
  box-shadow: var(--gr-shadow);
}

.gr-invest-section-heading {
  margin-bottom: clamp(22px, 3svw, 32px);
  max-width: 860px;
}

.gr-invest-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(229, 48, 37, 0.08);
  color: var(--gr-red);
  font-family: var(--gr-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.gr-invest-section-heading h3 {
  margin-top: 0 !important;
  margin-bottom: 14px;
}

.gr-invest-section-intro {
  font-size: clamp(15px, 1.35svw, 17px);
}

.gr-invest-section-intro p:last-child {
  margin-bottom: 0;
}

.gr-invest-story {
  margin-bottom: 0;
}

.gr-invest-richtext {
  max-width: 860px;
}

.gr-invest-richtext p,
.gr-invest-panel p,
.gr-invest-section-intro p,
.gr-contact-info p {
  font-size: clamp(15px, 1.2svw, 17px);
}

.gr-invest-panel h4 {
  margin: 0 0 14px;
  font-family: var(--gr-font-heading);
  font-size: clamp(20px, 2svw, 24px);
  color: var(--gr-dark);
}

.gr-invest-panel ul {
  margin: 14px 0 18px;
}

.gr-invest-panel ul li,
.gr-invest-growth-list li {
  padding: 7px 0;
}

.gr-invest-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3svw, 36px);
  margin: clamp(32px, 4svw, 48px) 0;
}

.gr-invest-panel {
  background: var(--gr-light-bg);
  border: 1px solid var(--gr-border);
  border-radius: var(--gr-radius-lg);
  box-shadow: var(--gr-shadow);
  padding: clamp(24px, 3svw, 34px);
}

.gr-invest-panel h3 {
  margin-top: 0 !important;
}

.gr-invest-flow {
  font-family: var(--gr-font-heading);
  font-size: clamp(17px, 1.7svw, 21px);
  color: var(--gr-dark) !important;
  padding: 16px 18px;
  border-left: 4px solid var(--gr-red);
  background: rgba(229, 48, 37, 0.05);
  border-radius: 0 var(--gr-radius) var(--gr-radius) 0;
}

.gr-invest-growth-list {
  columns: 2;
  column-gap: clamp(24px, 3svw, 40px);
  margin-top: 18px !important;
}

.gr-invest-growth-list li {
  break-inside: avoid;
}

/* Invest products grid */
.gr-invest-products {
  margin: 0;
  padding: 0;
  border: 0;
}

.gr-invest-products-intro {
  text-align: left;
  max-width: none;
  margin: 0;
  color: var(--gr-text);
  font-size: clamp(14px, 1.3svw, 16px);
}

.gr-invest-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3svw, 40px);
}

.gr-invest-product-category {
  text-align: center;
  background: var(--gr-light-bg);
  border-radius: var(--gr-radius-lg);
  padding: clamp(20px, 2.5svw, 30px);
  box-shadow: var(--gr-shadow);
  border: 1px solid var(--gr-border);
  transition:
    transform var(--gr-duration-moderate) var(--gr-ease-spring),
    box-shadow var(--gr-duration-moderate) var(--gr-ease-out),
    border-color var(--gr-duration) var(--gr-ease);
}

.gr-invest-product-category:hover {
  box-shadow: var(--gr-shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(229, 48, 37, 0.2);
}

.gr-invest-product-img {
  border-radius: var(--gr-radius);
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gr-white);
}

.gr-invest-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gr-invest-img-zoom img {
  transform: scale(1.15);
}

.gr-invest-product-category h4 {
  font-family: var(--gr-font-heading);
  font-size: clamp(18px, 2svw, 22px);
  color: var(--gr-dark);
  margin: 0 0 8px;
  border-bottom: none;
}

.gr-invest-product-category p {
  font-size: clamp(13px, 1.2svw, 15px);
  color: var(--gr-text);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.gr-footer {
  background: none;
  padding: 0;
}

.gr-footer-invest {
  background: linear-gradient(135deg, var(--gr-dark) 0%, #2c2c2c 100%);
  padding: 20px 0;
  text-align: center;
}

.gr-footer-invest-link {
  color: var(--gr-gold);
  font-family: var(--gr-font);
  font-size: clamp(13px, 1.3svw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
  transition: var(--gr-transition);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.gr-footer-invest-link:hover {
  color: var(--gr-gold-light);
  transform: scale(1.05);
}

.gr-footer-invest-link i {
  margin: 0 10px;
  font-size: 12px;
}

.gr-footer-invest-link span {
  border-bottom: 1px solid rgba(200, 168, 107, 0.3);
  padding-bottom: 2px;
  background: linear-gradient(90deg, currentColor 0%, var(--gr-gold-light) 50%, currentColor 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gr-shimmer 3s linear infinite;
}

.gr-footer-main {
  background: var(--gr-dark);
  padding: clamp(40px, 5svh, 60px) 0 0;
}

.gr-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: clamp(30px, 4svw, 50px);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gr-footer-brand {
  text-align: left;
}

.gr-footer-logo-img {
  width: clamp(60px, 7svw, 80px);
  height: auto;
  margin-bottom: 15px;
}

.gr-footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--gr-font);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 5px;
}

.gr-footer-links h5,
.gr-footer-contact h5 {
  color: var(--gr-white);
  font-family: var(--gr-font);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.gr-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gr-footer-links li {
  margin-bottom: 10px;
}

.gr-footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--gr-font);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--gr-duration-fast) var(--gr-ease);
  position: relative;
}

.gr-footer-links a:hover {
  color: var(--gr-white);
}

.gr-footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gr-red);
  transition: width var(--gr-duration) var(--gr-ease-spring);
}

.gr-footer-links a:hover::after {
  width: 100%;
}

.gr-footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--gr-font);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 10px;
}

.gr-footer-contact i {
  width: 18px;
  margin-right: 8px;
  color: var(--gr-red);
}

.gr-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.gr-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gr-white);
  font-size: 16px;
  transition:
    background var(--gr-duration-fast) var(--gr-ease),
    transform var(--gr-duration-fast) var(--gr-ease-spring),
    box-shadow var(--gr-duration) var(--gr-ease-out);
  text-decoration: none;
  line-height: 1;
}

.gr-footer-social a i.fa {
  display: inline-block;
  width: auto;
  height: auto;
  line-height: 1;
  margin: 0;
  padding: 0;
  text-align: center;
  vertical-align: middle;
}

.gr-footer-social a:hover {
  background: var(--gr-red);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px var(--gr-red-glow);
  color: var(--gr-white);
}

.gr-footer-bottom {
  padding: 25px 0;
  text-align: center;
}

.gr-footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--gr-font);
  font-size: 13px;
  margin: 0;
  letter-spacing: 0.3px;
}

/* ============================================================
   ORDER MODAL
   ============================================================ */
.overlay {
  display: none;
  z-index: -10;
}

.overlay.disp {
  display: block;
  z-index: 9999;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal.order-page {
  background: var(--gr-white);
  max-width: 800px;
  margin: 40px auto;
  border-radius: var(--gr-radius-lg);
  padding: 30px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal.order-page > .fa-times {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: var(--gr-text-light);
  transition: color 0.2s ease;
}

.modal.order-page > .fa-times:hover {
  color: var(--gr-red);
}

.order-page .head {
  border-bottom: 1px solid var(--gr-border);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.order-page .page-name h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 22px;
  color: var(--gr-dark);
}

.order-page .order-date-details h5,
.order-page .order-date-details h6 {
  font-family: var(--gr-font);
  color: var(--gr-text);
  font-size: 13px;
}

.order-page .sub-head {
  background: var(--gr-light-bg);
  padding: 12px 20px;
  border-radius: var(--gr-radius);
  margin-bottom: 20px;
}

.order-page .sub-head h6 {
  font-family: var(--gr-font);
  font-size: 13px;
  color: var(--gr-text);
}

.order-page .sub-head .captn {
  flex: 1;
}

.order-page .sub-head .no-of-dishes {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-page .sub-head .no-of-dishes div {
  display: flex;
  align-items: center;
  gap: 4px;
}

.order-page .sub-head .selected-dishes-no-pop {
  font-weight: 700;
  color: var(--gr-red);
}

.order-page .items-wrapper {
  margin-bottom: 20px;
}

.order-page .order-pg-items {
  padding: 10px 0;
  border-bottom: 1px solid var(--gr-border);
}

.order-page .order-pg-items.tophead {
  background: var(--gr-light-bg);
  padding: 10px 15px;
  border-radius: var(--gr-radius);
  font-weight: 700;
}

.order-page .item-details-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-page .order-item-details {
  flex: 1;
}

.order-page .order-item-details h4 {
  font-size: 14px;
  margin: 0;
  color: var(--gr-dark);
}

.order-page .order-item-price {
  display: flex;
  gap: 20px;
}

.order-page .order-item-price h4 {
  font-size: 14px;
  margin: 0;
  color: var(--gr-text);
  min-width: 60px;
  text-align: center;
}

.order-page .order-value {
  background: var(--gr-light-bg);
  padding: 15px 20px;
  border-radius: var(--gr-radius);
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-page .total-value-details h4 {
  font-size: 16px;
  margin: 0;
  color: var(--gr-dark);
}

.order-page .total-value h2 {
  font-size: 24px;
  margin: 0;
  color: var(--gr-red);
  font-weight: 700;
}

.order-page .order-msg {
  font-family: var(--gr-font);
  font-size: 14px;
  color: var(--gr-text);
}

.order-page .info-address {
  margin-top: 20px;
}

.order-page .info-address h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: var(--gr-dark);
}

.order-page .input-wrapper {
  margin-bottom: 12px;
}

.order-page .input-wrapper input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gr-border);
  border-radius: var(--gr-radius);
  font-family: var(--gr-font);
  font-size: 14px;
}

.order-page .input-wrapper input:focus {
  border-color: var(--gr-red);
  box-shadow: 0 0 0 3px rgba(229, 48, 37, 0.1);
  outline: none;
}

.order-page .outer-wrapper {
  display: flex;
  gap: 12px;
}

.order-page .half {
  display: flex;
  gap: 12px;
  flex: 1;
}

.order-page .final-order {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.order-page .form-message {
  font-family: var(--gr-font);
  font-size: 14px;
  color: var(--gr-text);
}

.hidden-field {
  border: none;
  background: transparent;
}

/* ============================================================
   FORM INPUTS — Global
   ============================================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

::placeholder {
  color: #999;
  opacity: 1;
}

/* --- Loading Spinner --- */
.loader {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: var(--gr-red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

/* ============================================================
   MEDIA PAGE
   ============================================================ */
.twitter-timeline,
.fb-page {
  max-width: 100%;
}

#map-canvas {
  min-height: clamp(250px, 35svh, 400px);
}

.map-search {
  background: var(--gr-dark-2);
  padding: clamp(30px, 4svw, 50px) 0 0;
}

.city-search {
  text-align: center;
  margin-bottom: clamp(20px, 3svw, 30px);
}

.city-search .search-caption h4 {
  color: var(--gr-white);
  font-family: var(--gr-font-heading);
  font-size: clamp(28px, 3svw, 36px);
  margin: 0;
}

.city-search .search-form h4 {
  color: var(--gr-white);
  font-family: var(--gr-font);
  font-size: clamp(14px, 1.3svw, 16px);
  margin: 15px 0 5px;
}

.city-search .search-form h5 {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--gr-font);
  font-size: clamp(12px, 1.1svw, 14px);
}

/* ============================================================
   SOCIAL ICONS — Legacy compat
   ============================================================ */
.social-btns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
}

/* ============================================================
   ECWID STORE OVERRIDES
   ============================================================
   Ecwid injects its own CSS with high specificity, so !important
   is required here. Styled to match the Ghostriders brand on
   dark backgrounds across product grid, detail, cart & checkout. */

/* =========================
   GLOBAL TEXT & COLORS
   ========================= */
.ec-wrapper div,
.ec-wrapper span,
.ec-wrapper p,
.ec-wrapper label,
.ec-wrapper a,
.ec-wrapper h1,
.ec-wrapper h2,
.ec-wrapper h3,
.ec-wrapper h4,
.ec-wrapper h5,
.ec-wrapper h6,
.ec-wrapper li,
.ec-wrapper td,
.ec-wrapper th,
.ec-price-item,
.grid-product__title-inner,
.grid-product__subtitle,
.grid-product__sku,
.product-details-module__title,
.product-details__product-title,
.product-details__product-description,
.product-details__product-description p,
.product-details__product-description li,
.product-details__product-price .ec-price-item,
.ec-cart-email__text,
.ec-cart-step__title,
.ec-cart-step__text,
.ec-cart-step__section,
.page-title__name,
.ec-cart__message,
.ec-cart-item__title,
.ec-cart-item__price-inner,
.ec-cart-item__count-inner,
.ec-cart-summary__cell,
.ec-cart-summary__row,
.ec-cart-next__header,
.ec-cart-next__title,
.ec-cart-shopping__wrap,
.ec-header-h1,
.ec-confirmation__title,
.ec-confirmation__section,
.ec-confirmation__text,
.ec-cart-item-sum,
.ec-cart-item-qty,
.ec-cart-item__options,
.ec-cart-item-count,
.ec-footer__row,
.ec-footer__cell,
.ec-breadcrumbs a,
.ec-breadcrumbs span,
.ec-pager__count-pages,
.ec-form__title,
.ec-radiogroup__label,
.ec-radiogroup__text,
.ec-cart-coupon__text,
.ec-cart-coupon__code,
.details-product-purchase__qty-label,
.form-control,
.form-control__text,
.form-control__label,
.ec-store .form-control,
.ec-store label,
.ec-store .ec-text--muted {
  color: #f0f0f0 !important;
}

/* =========================
   LINKS
   ========================= */
.ec-wrapper a,
.ec-breadcrumbs a {
  color: var(--gr-gold-light) !important;
  text-decoration: none !important;
  transition: color var(--gr-duration-fast) var(--gr-ease) !important;
}

.ec-wrapper a:hover,
.ec-breadcrumbs a:hover {
  color: var(--gr-gold) !important;
  text-decoration: underline !important;
}

/* =========================
   PRODUCT GRID — Sort & Filters Bar
   ========================= */
.grid__sort {
  color: rgba(255, 255, 255, 0.6) !important;
  padding: 8px 0 16px !important;
}

.grid-sort__item .form-control__select-text {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px !important;
}

.grid-sort__item select {
  color: white !important;
}

/* Filters panel */
.ec-filters {
  background: var(--gr-dark-2) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--gr-radius-lg) !important;
}

.ec-filters__title {
  color: white !important;
  font-family: var(--gr-font-heading) !important;
}

.ec-filter__name-inner {
  color: rgba(255, 255, 255, 0.8) !important;
}

.ec-filters__clear-all-link {
  color: var(--gr-gold-light) !important;
}

/* =========================
   PRODUCT GRID — Cards
   ========================= */
.grid-product {
  background: var(--gr-dark-2) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--gr-radius-lg) !important;
  overflow: hidden !important;
  transition: transform var(--gr-duration) var(--gr-ease),
              box-shadow var(--gr-duration) var(--gr-ease),
              border-color var(--gr-duration) var(--gr-ease) !important;
}

.grid-product:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4) !important;
  border-color: rgba(229, 48, 37, 0.3) !important;
}

/* Image area */
.grid-product__image {
  border-radius: 0 !important;
  overflow: hidden !important;
}

.grid-product__bg {
  opacity: 0.9 !important;
}

.grid-product__picture {
  transition: transform var(--gr-duration-moderate) var(--gr-ease) !important;
}

.grid-product:hover .grid-product__picture {
  transform: scale(1.03) !important;
}

/* "In the bag" badge */
.ec-store-productsGrid-cell-inTheBag {
  border-color: rgba(229, 48, 37, 0.4) !important;
}

/* No-image placeholder */
.grid-product--no-image .grid-product__bg {
  background: var(--gr-dark) !important;
}

.grid-product__shadow {
  color: rgba(255, 255, 255, 0.3) !important;
}

/* Title & price below image */
.grid-product__title {
  padding: 12px 16px 4px !important;
  text-decoration: none !important;
}

.grid-product__title-inner {
  font-family: var(--gr-font-heading) !important;
  font-size: 15px !important;
  letter-spacing: 0.3px !important;
  color: white !important;
}

.grid-product__subtitle {
  padding: 0 16px !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

.grid-product__price {
  padding: 8px 16px 16px !important;
}

.grid-product__price .ec-price-item {
  color: var(--gr-red) !important;
  font-weight: 700 !important;
  font-size: 17px !important;
}

/* =========================
   PRODUCT DETAIL VIEW
   ========================= */
.product-details {
  background: transparent !important;
}

.product-details__product-title {
  font-family: var(--gr-font-heading) !important;
  font-size: 28px !important;
  color: white !important;
  margin-bottom: 8px !important;
}

.product-details__product-price .ec-price-item {
  color: var(--gr-red) !important;
  font-size: 24px !important;
  font-weight: 700 !important;
}

.product-details__product-price .ec-price-item--old {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 16px !important;
}

.product-details__product-description {
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.7 !important;
  font-size: 15px !important;
}

.product-details__product-description p {
  margin-bottom: 12px !important;
}

/* Product image gallery — constrain the entire gallery column */
.product-details__gallery.details-gallery {
  max-width: 350px !important;
  width: 350px !important;
  flex-shrink: 0 !important;
  border-radius: var(--gr-radius-lg) !important;
  overflow: hidden !important;
}

/* Override the inline width:4480px on the inner wrapper */
.details-gallery__image-wrapper-inner {
  width: 100% !important;
  max-width: 350px !important;
}

/* Override the spacer that sets max-width to image native size */
.details-gallery__images-spacer {
  max-width: 350px !important;
}

/* The actual product image */
.details-gallery__picture {
  width: 100% !important;
  max-width: 350px !important;
  height: auto !important;
  max-height: 440px !important;
  object-fit: contain !important;
  border-radius: var(--gr-radius-lg) !important;
  background-color: var(--gr-dark-2) !important;
}

.details-gallery__main-image-wrapper {
  max-width: 350px !important;
  overflow: hidden !important;
  border-radius: var(--gr-radius-lg) !important;
}

/* Thumbnail row */
.details-gallery__thumbs {
  max-width: 350px !important;
}

.details-gallery__thumb {
  border-radius: var(--gr-radius-sm) !important;
  overflow: hidden !important;
}

/* Product layout — gallery vs sidebar proportions */
.product-details--layout-sidebar-right {
  display: flex !important;
  gap: 32px !important;
  align-items: flex-start !important;
}

.product-details__sidebar {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

/* Description section below */
.product-details__description {
  margin-top: 24px !important;
}

.product-details__description .product-details__product-title {
  display: none !important; /* already shown in sidebar */
}

@media only screen and (max-width: 767px) {
  .product-details--layout-sidebar-right {
    flex-direction: column !important;
  }

  .product-details__gallery.details-gallery,
  .details-gallery__image-wrapper-inner,
  .details-gallery__images-spacer,
  .details-gallery__main-image-wrapper,
  .details-gallery__thumbs {
    max-width: 280px !important;
    width: 280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .details-gallery__picture {
    max-width: 280px !important;
    max-height: 350px !important;
  }
}

/* Product options (size, color, etc.) */
.product-details__product-options .form-control__label {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* Quantity selector */
.details-product-purchase__qty {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: var(--gr-radius) !important;
  overflow: hidden !important;
}

.details-product-purchase__qty-label {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.details-product-purchase__qty input {
  background: transparent !important;
  color: white !important;
  border: none !important;
  text-align: center !important;
}

/* =========================
   BUY / ADD TO CART BUTTONS
   ========================= */
.form-control__button,
.form-control--done .form-control__button,
.ec-store .form-control__button,
.ec-store .form-control--done .form-control__button,
.details-product-purchase__add-to-bag .form-control__button {
  background: var(--gr-red) !important;
  color: white !important;
  border: none !important;
  border-radius: var(--gr-radius) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  padding: 12px 28px !important;
  cursor: pointer !important;
  transition: background var(--gr-duration-fast) var(--gr-ease),
              transform var(--gr-duration-fast) var(--gr-ease),
              box-shadow var(--gr-duration-fast) var(--gr-ease) !important;
}

.form-control__button:hover,
.ec-store .form-control__button:hover,
.details-product-purchase__add-to-bag .form-control__button:hover {
  background: var(--gr-red-dark) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 15px var(--gr-red-glow) !important;
}

.form-control__button:active,
.ec-store .form-control__button:active {
  transform: translateY(0) scale(0.98) !important;
}

/* "Added to bag" check state */
.form-control--done .form-control__button {
  background: var(--gr-green) !important;
}

/* Secondary / outline buttons */
.ec-store .ec-link--muted,
.ec-cart-shopping__wrap a {
  color: var(--gr-gold-light) !important;
  border: 1px solid rgba(200, 168, 107, 0.3) !important;
  border-radius: var(--gr-radius) !important;
  padding: 8px 20px !important;
  display: inline-block !important;
  transition: all var(--gr-duration-fast) var(--gr-ease) !important;
}

.ec-store .ec-link--muted:hover,
.ec-cart-shopping__wrap a:hover {
  background: rgba(200, 168, 107, 0.1) !important;
  border-color: var(--gr-gold) !important;
  text-decoration: none !important;
}

/* =========================
   CART PAGE — Layout
   ========================= */
.ec-cart {
  background: transparent !important;
}

/* Sidebar (left) — cart items + summary */
.ec-cart__sidebar {
  background: var(--gr-dark-2) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--gr-radius-lg) !important;
  padding: 24px !important;
}

.ec-cart__sidebar-inner {
  background: transparent !important;
}

/* Page title — "Shopping cart" */
.ec-cart .ec-page-title {
  margin-bottom: 20px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.ec-cart .page-title__name {
  font-family: var(--gr-font-heading) !important;
  font-size: 22px !important;
  color: white !important;
  margin-bottom: 4px !important;
}

/* Cart body (right) — checkout form */
.ec-cart__body {
  background: var(--gr-dark-2) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--gr-radius-lg) !important;
  padding: 24px !important;
}

.ec-cart__body-inner {
  background: transparent !important;
}

/* =========================
   CART — Product Items
   ========================= */
.ec-cart-item {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  padding: 16px 0 !important;
  margin-bottom: 0 !important;
}

.ec-cart-item:last-of-type {
  border-bottom: none !important;
}

/* Product thumbnail */
.ec-cart-item__image {
  border-radius: var(--gr-radius) !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
}

.ec-cart-item__picture {
  border-radius: var(--gr-radius) !important;
  background-color: var(--gr-dark) !important;
}

.ec-cart-item__picture-inner {
  border-radius: var(--gr-radius) !important;
}

/* Product title */
.ec-cart-item__title {
  font-family: var(--gr-font-heading) !important;
  font-size: 16px !important;
  color: white !important;
  text-decoration: none !important;
}

.ec-cart-item__title:hover {
  color: var(--gr-gold-light) !important;
}

/* Quantity selector */
.ec-cart-item__count {
  margin: 0 !important;
}

.ec-cart-item__count-inner {
  color: white !important;
}

.ec-cart-item__count-inner .form-control {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: var(--gr-radius) !important;
  padding: 4px 8px !important;
  color: white !important;
}

.ec-cart-item__count-inner .form-control__select-text {
  color: white !important;
  font-size: 13px !important;
}

.ec-cart-item__count-inner .form-control__arrow svg {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Price */
.ec-cart-item__price-inner {
  color: var(--gr-red) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
}

/* Options text */
.ec-cart-item__options {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 13px !important;
}

/* Remove (X) button */
.ec-cart-item__control-inner {
  color: rgba(255, 255, 255, 0.3) !important;
  transition: color var(--gr-duration-fast) var(--gr-ease) !important;
}

.ec-cart-item__control-inner:hover {
  color: var(--gr-red) !important;
}

/* =========================
   CART — Summary row (item count + total)
   ========================= */
.ec-cart-item--summary {
  background: transparent !important;
  border-bottom: none !important;
  padding: 16px 0 8px !important;
}

.ec-cart-item-sum {
  color: white !important;
}

.ec-cart-item-sum--cta {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: white !important;
}

/* =========================
   CART — Summary Table (Subtotal, Tax, Total)
   ========================= */
.ec-cart-summary {
  background: rgba(255, 255, 255, 0.03) !important;
  border: none !important;
  border-radius: var(--gr-radius) !important;
  padding: 16px !important;
  margin-top: 8px !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

.ec-cart-summary__row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.ec-cart-summary__row--total {
  border-bottom: none !important;
  border-top: 2px solid rgba(255, 255, 255, 0.12) !important;
}

.ec-cart-summary__cell {
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 8px 4px !important;
  font-size: 14px !important;
}

.ec-cart-summary__row--total .ec-cart-summary__cell {
  color: white !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  padding-top: 12px !important;
}

.ec-cart-summary__total {
  color: white !important;
}

/* =========================
   CART — Continue Shopping
   ========================= */
.ec-cart-shopping {
  margin-top: 16px !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.ec-cart-shopping__wrap {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 14px !important;
}

.ec-cart-shopping__wrap a.ec-link {
  color: var(--gr-gold-light) !important;
  text-decoration: underline !important;
  border: none !important;
  padding: 0 !important;
  display: inline !important;
}

.ec-cart-shopping__wrap a.ec-link:hover {
  color: var(--gr-gold) !important;
}

/* =========================
   CHECKOUT — Email Section
   ========================= */
.ec-cart-email {
  margin-bottom: 24px !important;
}

.ec-cart-email__text {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  margin-bottom: 12px !important;
}

/* Email input special styling */
.ec-cart-email__input .form-control {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: var(--gr-radius) !important;
  overflow: hidden !important;
}

.ec-cart-email__input .form-control__text {
  background: transparent !important;
  color: white !important;
  border: none !important;
  padding: 14px 16px !important;
  font-size: 15px !important;
}

.ec-cart-email__input .form-control__placeholder-inner {
  color: rgba(255, 255, 255, 0.35) !important;
  padding: 0 16px !important;
}

/* =========================
   CHECKOUT — Secure Badge
   ========================= */
.ec-cart__cert {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 16px 0 !important;
}

.ec-cart__cert svg {
  color: rgba(255, 255, 255, 0.3) !important;
  flex-shrink: 0 !important;
}

/* =========================
   CHECKOUT — Buttons
   ========================= */
.ec-cart__buttons {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.ec-cart__button--checkout .form-control__button {
  background: var(--gr-red) !important;
  color: white !important;
  border: none !important;
  border-radius: var(--gr-radius) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  padding: 14px 28px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background var(--gr-duration-fast) var(--gr-ease),
              box-shadow var(--gr-duration-fast) var(--gr-ease) !important;
}

.ec-cart__button--checkout .form-control__button:hover {
  background: var(--gr-red-dark) !important;
  box-shadow: 0 4px 15px var(--gr-red-glow) !important;
}

/* PayPal button area */
.ec-cart__button--paypal {
  border-radius: var(--gr-radius) !important;
  overflow: hidden !important;
}

/* Apple Pay / Google Pay area */
.ec-cart__button--apple-pay {
  border-radius: var(--gr-radius) !important;
  overflow: hidden !important;
}

/* =========================
   CHECKOUT — Next Steps
   ========================= */
.ec-cart-next {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: var(--gr-radius-lg) !important;
  padding: 24px !important;
  margin-top: 20px !important;
}

.ec-cart-next__header {
  font-family: var(--gr-font-heading) !important;
  font-size: 18px !important;
  color: white !important;
  margin-bottom: 16px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.ec-cart-next__step {
  padding: 12px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
}

.ec-cart-next__step:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.ec-cart-next__title {
  font-family: var(--gr-font-heading) !important;
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 4px !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

.ec-cart-next__text {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
}

/* =========================
   CHECKOUT STEPS (later pages)
   ========================= */
.ec-cart-step {
  background: var(--gr-dark-2) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--gr-radius-lg) !important;
  padding: 24px !important;
  margin-bottom: 16px !important;
}

.ec-cart-step__title {
  font-family: var(--gr-font-heading) !important;
  font-size: 20px !important;
  color: white !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin-bottom: 20px !important;
}

.ec-cart-step__text {
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.6 !important;
}

/* Step numbers / indicators */
.ec-cart-step__num {
  background: var(--gr-red) !important;
  color: white !important;
  border-radius: 50% !important;
  font-weight: 700 !important;
}

/* Completed step indicator */
.ec-cart-step--done .ec-cart-step__num {
  background: var(--gr-green) !important;
}

/* =========================
   ECWID FOOTER (in-store)
   ========================= */
.ec-footer {
  background: rgba(255, 255, 255, 0.02) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 0 0 var(--gr-radius-lg) var(--gr-radius-lg) !important;
  padding: 16px 0 !important;
  margin-top: 24px !important;
}

.ec-footer__row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 24px !important;
  border: none !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ec-footer__cell {
  display: inline-flex !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 12px !important;
  float: none !important;
  width: auto !important;
}

.ec-footer__link {
  color: rgba(255, 255, 255, 0.5) !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 12px !important;
  transition: color var(--gr-duration-fast) var(--gr-ease) !important;
  border: none !important;
  padding: 0 !important;
}

/* Override Ecwid's "icon-top" stacking */
.ec-footer__link.link--icon-top {
  flex-direction: row !important;
}

.ec-footer__link.link--icon-top .svg-icon {
  margin-bottom: 0 !important;
}

.ec-footer__link:hover {
  color: var(--gr-gold-light) !important;
  background: none !important;
  border: none !important;
}

.ec-footer__link .svg-icon {
  color: rgba(255, 255, 255, 0.35) !important;
}

.ec-footer__link:hover .svg-icon {
  color: var(--gr-gold-light) !important;
}

/* Currency selector */
.ec-currency-converter-selector .form-control {
  background: transparent !important;
  border: none !important;
  padding: 4px 0 !important;
}

.ec-currency-converter-selector .form-control__select-text {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 12px !important;
}

/* =========================
   CART — Mobile
   ========================= */
@media only screen and (max-width: 767px) {
  .ec-cart__sidebar,
  .ec-cart__body {
    padding: 16px !important;
    border-radius: var(--gr-radius) !important;
  }

  .ec-cart-next {
    padding: 16px !important;
  }

  .ec-cart-item__title {
    font-size: 14px !important;
  }

  .ec-cart-summary__row--total .ec-cart-summary__cell {
    font-size: 16px !important;
  }

  .ec-footer__row {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px 20px !important;
  }
}

/* =========================
   FORM INPUTS
   ========================= */
.ec-store input[type="text"],
.ec-store input[type="email"],
.ec-store input[type="tel"],
.ec-store input[type="number"],
.ec-store input[type="password"],
.ec-store input[type="search"],
.ec-store select,
.ec-store textarea,
.ec-cart input[type="text"],
.ec-cart input[type="email"],
.ec-cart input[type="tel"],
.ec-cart input[type="number"],
.ec-cart select,
.ec-cart textarea {
  background: rgba(255, 255, 255, 0.06) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: var(--gr-radius) !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  transition: border-color var(--gr-duration-fast) var(--gr-ease),
              box-shadow var(--gr-duration-fast) var(--gr-ease) !important;
}

.ec-store input::placeholder,
.ec-cart input::placeholder,
.ec-store textarea::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

.ec-store input:focus,
.ec-cart input:focus,
.ec-store textarea:focus,
.ec-store select:focus {
  border-color: var(--gr-red) !important;
  box-shadow: 0 0 0 3px rgba(229, 48, 37, 0.2) !important;
  outline: none !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

/* Select dropdowns */
.ec-store select {
  appearance: none !important;
  background-color: rgba(255, 255, 255, 0.06) !important;
  color: white !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23fff' d='M6 8L0 0h12z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 32px !important;
}

/* Select option elements (browser-rendered) */
.ec-store select option {
  background-color: #292929 !important;
  color: white !important;
}

/* Inline select controls (Ecwid custom selects) */
.ec-store .form-control--select-inline {
  background: transparent !important;
  color: white !important;
}

.ec-store .form-control--select-inline .form-control__select-text {
  color: white !important;
}

.ec-store .form-control--select-inline .form-control__arrow svg {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Radio buttons & checkboxes */
.ec-radiogroup__item {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--gr-radius) !important;
  padding: 12px 16px !important;
  margin-bottom: 8px !important;
  transition: border-color var(--gr-duration-fast) var(--gr-ease) !important;
}

.ec-radiogroup__item:hover {
  border-color: rgba(255, 255, 255, 0.25) !important;
}

.ec-radiogroup__label {
  color: white !important;
  font-weight: 500 !important;
}

.ec-radiogroup__text {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 13px !important;
}

/* =========================
   COUPON / DISCOUNT
   ========================= */
.ec-cart-coupon {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px dashed rgba(255, 255, 255, 0.15) !important;
  border-radius: var(--gr-radius) !important;
  padding: 16px !important;
}

.ec-cart-coupon__text {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* =========================
   BREADCRUMBS & NAVIGATION
   ========================= */
.ec-breadcrumbs {
  padding: 12px 0 20px !important;
}

.ec-breadcrumbs span {
  color: rgba(255, 255, 255, 0.4) !important;
}

.ec-breadcrumbs a {
  color: var(--gr-gold-light) !important;
  font-size: 13px !important;
}

.ec-breadcrumbs a:hover {
  color: var(--gr-gold) !important;
}

/* Page title (category names, etc.) */
.ec-header-h1,
.page-title__name {
  font-family: var(--gr-font-heading) !important;
  color: white !important;
  font-size: 24px !important;
}

/* Pager */
.ec-pager a,
.ec-pager span {
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--gr-radius-sm) !important;
  transition: all var(--gr-duration-fast) var(--gr-ease) !important;
}

.ec-pager a:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: white !important;
}

.ec-pager .ec-pager__current {
  background: var(--gr-red) !important;
  border-color: var(--gr-red) !important;
  color: white !important;
}

/* =========================
   CONFIRMATION / SUCCESS PAGE
   ========================= */
.ec-confirmation__title {
  font-family: var(--gr-font-heading) !important;
  font-size: 26px !important;
  color: white !important;
}

.ec-confirmation__section {
  background: var(--gr-dark-2) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--gr-radius-lg) !important;
  padding: 20px !important;
  margin-bottom: 16px !important;
}

.ec-confirmation__text {
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.6 !important;
}

/* =========================
   ECWID FOOTER
   ========================= */
.ec-footer__row,
.ec-footer__cell {
  border-color: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 12px !important;
}

/* =========================
   NOTICES / POPUP MESSAGES
   ========================= */

/* Container — fixed center of viewport */
.ec-notices {
  z-index: 99999 !important;
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  right: auto !important;
  bottom: auto !important;
  pointer-events: none !important;
}

.ec-notices--fixed {
  position: fixed !important;
}

.ec-notices--top {
  top: 50% !important;
}

.ec-notices--right {
  right: auto !important;
}

.ec-notices__wrap {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 0 !important;
  pointer-events: auto !important;
}

/* Base notice — high specificity to beat Ecwid defaults */
.ec-store .ec-notices .ec-notice,
.ec-store--no-transition .ec-notices .ec-notice,
.ec-notice.ec-notice--error,
.ec-notice.ec-notice--success,
.ec-notice.ec-notice--info,
.ec-notice.ec-notice--warning,
.ec-notice {
  background: #1e1e1e !important;
  background-color: #1e1e1e !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: var(--gr-radius) !important;
  color: white !important;
  padding: 0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
  overflow: hidden !important;
  width: 340px !important;
  max-width: 90vw !important;
}

/* Force dark bg on ALL inner elements of notices */
.ec-notice *,
.ec-notice div,
.ec-notice span,
.ec-notice label,
.ec-notice p,
.ec-notice a {
  background-color: transparent !important;
}

.ec-notice .ec-notice__wrap {
  background: #1e1e1e !important;
  background-color: #1e1e1e !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  padding: 14px 12px 14px 14px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Force ALL text inside notices to be white/legible */
.ec-notice div,
.ec-notice span,
.ec-notice label,
.ec-notice p,
.ec-notice .ec-notice__text,
.ec-notice .ec-notice__text-inner,
.ec-notice .ec-notice__text-inner label,
.ec-notice .ec-notice__text-inner span,
.ec-notice .ec-notice__message,
.ec-notice .ec-notice__message div,
.ec-notice .ec-notice__message span,
.ec-notice .ec-notice__message label {
  color: #f0f0f0 !important;
}

/* Icon */
.ec-notice__icon {
  flex: 0 0 20px !important;
  width: 20px !important;
  margin-top: 1px !important;
}

.ec-notice__icon svg {
  width: 20px !important;
  height: 20px !important;
  display: block !important;
}

/* Message text */
.ec-notice__message {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: calc(100% - 60px) !important;
}

.ec-notice__text {
  color: #f0f0f0 !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

.ec-notice__text-inner {
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: #f0f0f0 !important;
}

.ec-notice__text-inner label {
  color: #f0f0f0 !important;
  font-weight: 400 !important;
}

/* Currency values inside notices */
.ec-notice .ec-currency-converter-element-subtotal,
.ec-notice span {
  color: white !important;
}

.ec-notice__links {
  margin-top: 6px !important;
}

.ec-notice__links a {
  color: var(--gr-gold-light) !important;
  text-decoration: underline !important;
}

/* Close (X) button — compact, no excess space */
.ec-notice__control {
  flex: 0 0 auto !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ec-notice .ec-notice__control-inner,
.ec-notice__control-inner,
.ec-notice__control-inner.ec-link,
.ec-notice__control-inner.ec-link--hover {
  color: rgba(255, 255, 255, 0.5) !important;
  padding: 2px !important;
  margin: 0 !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: var(--gr-radius-sm) !important;
  transition: color var(--gr-duration-fast) var(--gr-ease),
              background var(--gr-duration-fast) var(--gr-ease) !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  box-sizing: content-box !important;
}

.ec-notice .ec-notice__control-inner:hover,
.ec-notice__control-inner:hover {
  color: white !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

/* Close button SVG — keep it tight */
.ec-notice__control-inner svg {
  color: inherit !important;
  width: 10px !important;
  height: 10px !important;
  display: block !important;
  flex-shrink: 0 !important;
}

/* --- Error notice (red accent) --- */
.ec-notice--error,
.ec-notice.ec-notice--error {
  border-left: 4px solid var(--gr-red) !important;
  background: #1e1e1e !important;
}

.ec-notice--error .ec-notice__wrap {
  background: #1e1e1e !important;
}

.ec-notice--error .ec-notice__icon svg {
  color: var(--gr-red) !important;
}

/* --- Success notice (green accent) --- */
.ec-notice--success,
.ec-notice.ec-notice--success {
  border-left: 4px solid var(--gr-green) !important;
  background: #1e1e1e !important;
}

.ec-notice--success .ec-notice__wrap {
  background: #1e1e1e !important;
}

.ec-notice--success .ec-notice__icon svg {
  color: var(--gr-green) !important;
}

/* --- Info notice (blue accent) --- */
.ec-notice--info,
.ec-notice.ec-notice--info {
  border-left: 4px solid #3b82f6 !important;
  background: #1e1e1e !important;
}

.ec-notice--info .ec-notice__wrap {
  background: #1e1e1e !important;
}

.ec-notice--info .ec-notice__icon svg {
  color: #3b82f6 !important;
}

/* --- Warning notice (gold accent) --- */
.ec-notice--warning,
.ec-notice.ec-notice--warning {
  border-left: 4px solid var(--gr-gold) !important;
  background: #1e1e1e !important;
}

.ec-notice--warning .ec-notice__wrap {
  background: #1e1e1e !important;
}

.ec-notice--warning .ec-notice__icon svg {
  color: var(--gr-gold) !important;
}

/* Inline messages (non-fixed) */
.ec-cart__message {
  background: #1e1e1e !important;
  border: 1px solid rgba(229, 48, 37, 0.2) !important;
  border-left: 4px solid var(--gr-red) !important;
  border-radius: var(--gr-radius) !important;
  color: white !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

/* =========================
   SEARCH BAR
   ========================= */
.ec-store .ec-header-h6 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* =========================
   ACCOUNT / SIGN-IN PAGE
   ========================= */
.ec-cart--anonymous .ec-cart__sidebar {
  background: var(--gr-dark-2) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--gr-radius-lg) !important;
  padding: 24px !important;
}

.ec-cart--anonymous .ec-cart__body {
  background: var(--gr-dark-2) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--gr-radius-lg) !important;
  padding: 24px !important;
}

/* Guest account step — sign-in card */
.ec-cart-step--signin {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: var(--gr-radius-lg) !important;
  padding: 20px !important;
}

.ec-cart-step--signin .ec-cart-step__icon svg {
  color: rgba(255, 255, 255, 0.4) !important;
}

.ec-cart-step--signin .ec-cart-step__title {
  font-family: var(--gr-font-heading) !important;
  color: white !important;
  font-size: 16px !important;
  border-bottom: none !important;
  padding-bottom: 4px !important;
  margin-bottom: 4px !important;
}

.ec-cart-step--signin .ec-cart-step__text {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 14px !important;
}

.ec-cart-step--signin .ec-cart-step__change {
  color: var(--gr-gold-light) !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
  border: none !important;
  padding: 0 !important;
  display: inline !important;
}

.ec-cart-step--signin .ec-cart-step__change:hover {
  color: var(--gr-gold) !important;
}

/* Shopping cart step in account */
.ec-cart-step--bag .ec-cart-step__title {
  font-family: var(--gr-font-heading) !important;
  font-size: 18px !important;
  color: white !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding-bottom: 12px !important;
  margin-bottom: 12px !important;
}

/* Account — cart item summary */
.ec-cart__products--short .ec-cart-item {
  background: transparent !important;
  border: none !important;
  padding: 8px 0 !important;
}

.ec-cart-item-sum--cta a {
  color: var(--gr-red) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border: none !important;
  padding: 0 !important;
  display: inline !important;
}

.ec-cart-item-sum--cta a:hover {
  color: var(--gr-red-dark) !important;
  text-decoration: underline !important;
}

/* Sign-in form */
.ec-signin-form .page-title__name {
  font-family: var(--gr-font-heading) !important;
  font-size: 22px !important;
  color: white !important;
}

.ec-signin-form .ec-cart-email__text {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  margin-bottom: 10px !important;
}

.ec-signin-form .form-control {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: var(--gr-radius) !important;
}

.ec-signin-form .form-control__text {
  background: transparent !important;
  color: white !important;
  border: none !important;
  padding: 14px 16px !important;
  font-size: 15px !important;
}

.ec-signin-form .form-control__placeholder-inner {
  color: rgba(255, 255, 255, 0.35) !important;
}

/* Cloudflare turnstile — ensure visible on dark bg */
.ec-signin-form #ec-turnstile {
  margin: 12px 0 !important;
}

/* "Get Sign-In Link" button */
.ec-signin-form .ec-cart__button .form-control__button {
  background: var(--gr-red) !important;
  color: white !important;
  border: none !important;
  border-radius: var(--gr-radius) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  padding: 14px 28px !important;
}

.ec-signin-form .ec-cart__button .form-control__button:hover {
  background: var(--gr-red-dark) !important;
  box-shadow: 0 4px 15px var(--gr-red-glow) !important;
}

/* =========================
   ACCOUNT PAGE (signed in)
   ========================= */
/* Name & email form */
.ec-store__account-page .ec-cart__sidebar {
  background: var(--gr-dark-2) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--gr-radius-lg) !important;
  padding: 24px !important;
}

.ec-store__account-page .ec-cart__body {
  background: var(--gr-dark-2) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--gr-radius-lg) !important;
  padding: 24px !important;
}

.ec-store__account-page .ec-form__title {
  font-family: var(--gr-font-heading) !important;
  color: white !important;
  font-size: 15px !important;
  margin-bottom: 12px !important;
}

.ec-store__account-page .ec-form__row {
  margin-bottom: 12px !important;
}

.ec-store__account-page .form-control--flexible {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: var(--gr-radius) !important;
}

.ec-store__account-page .form-control__text {
  background: transparent !important;
  color: white !important;
  border: none !important;
  padding: 12px 14px !important;
}

.ec-store__account-page .form-control__placeholder-inner {
  color: rgba(255, 255, 255, 0.35) !important;
}

/* Cart step sections */
.ec-store__account-page .ec-cart__step {
  padding: 16px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.ec-store__account-page .ec-cart__step:last-child {
  border-bottom: none !important;
}

/* Sign-out link */
.ec-cart-step--signout .ec-cart-step__text {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 14px !important;
}

.ec-cart-step--signout .ec-cart-step__change {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 13px !important;
  border: none !important;
  padding: 0 !important;
  display: inline !important;
}

.ec-cart-step--signout .ec-cart-step__change:hover {
  color: var(--gr-red) !important;
}

/* Email step */
.ec-cart-step--email .ec-cart-step__text {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 12px !important;
  margin-top: 4px !important;
}

/* Orders section */
.ec-confirmation .ec-header-h1 {
  font-family: var(--gr-font-heading) !important;
  font-size: 22px !important;
  color: white !important;
  margin-bottom: 16px !important;
}

.ec-confirmation__step {
  padding: 16px 0 !important;
}

.ec-confirmation__body {
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.6 !important;
}

.ec-confirmation__body .ec-text-muted {
  color: rgba(255, 255, 255, 0.5) !important;
}

.ec-confirmation__body a.ec-link {
  color: var(--gr-gold-light) !important;
  text-decoration: underline !important;
  border: none !important;
  padding: 0 !important;
  display: inline !important;
}

/* Contact info card */
.ec-confirmation__title.ec-header-h4 {
  font-family: var(--gr-font-heading) !important;
  font-size: 18px !important;
  color: white !important;
  margin-bottom: 12px !important;
}

.ec-confirmation__section {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: var(--gr-radius) !important;
  padding: 16px !important;
  color: rgba(255, 255, 255, 0.75) !important;
  line-height: 1.8 !important;
}

.ec-confirmation__section a.ec-link {
  color: var(--gr-gold-light) !important;
}

/* Welcome notice — uses shared notice styles from NOTICES section above */

.ec-notice__control-inner:hover {
  color: white !important;
}

/* =========================
   RESPONSIVE — Mobile cart
   ========================= */
@media only screen and (max-width: 767px) {
  .ec-cart-item {
    padding: 14px !important;
  }

  .ec-cart-step,
  .ec-cart-next {
    padding: 18px !important;
  }

  .ec-cart-step__title,
  .ec-cart-next__title {
    font-size: 17px !important;
  }

  .grid-product__title-inner {
    font-size: 14px !important;
  }

  .product-details__product-title {
    font-size: 22px !important;
  }
}

/* =========================
   PRINT
   ========================= */
@media print {
  .ec-wrapper div,
  .ec-wrapper span,
  .ec-wrapper p,
  .ec-wrapper label,
  .ec-wrapper a,
  .ec-notice__text-inner label {
    color: black !important;
  }

  .ec-cart-item,
  .ec-cart-summary,
  .ec-confirmation__section {
    background: white !important;
    border-color: #ccc !important;
  }
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
/* Scroll-to-top button (React component) */
.gr-scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 46px;
  height: 46px;
  background: var(--gr-red);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 15px var(--gr-red-glow);
  cursor: pointer;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  animation: gr-fade-in var(--gr-duration-moderate) var(--gr-ease-out);
  transition:
    transform var(--gr-duration-fast) var(--gr-ease-spring),
    box-shadow var(--gr-duration) var(--gr-ease-out),
    background var(--gr-duration-fast) var(--gr-ease);
}

.gr-scroll-top:hover {
  background: var(--gr-red-dark);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 22px var(--gr-red-glow);
}

.gr-scroll-top:active {
  transform: translateY(0) scale(0.95);
}

.gr-scroll-top svg {
  display: block;
}

/* ============================================================
   RESPONSIVE — Mobile (< 768px)
   ============================================================ */
@media only screen and (max-width: 767px) {
  .gr-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gr-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gr-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .gr-retail-logo {
    padding: 15px 20px;
  }

  .gr-recipes-callout {
    flex-direction: column;
    text-align: center;
  }

  .gr-recipe-card {
    grid-template-columns: 1fr;
  }

  .gr-recipe-card-img {
    min-height: 140px;
  }

  .gr-recipe-ingredients ul {
    grid-template-columns: 1fr;
  }

  .gr-about-hero {
    flex-direction: column;
  }

  .gr-about-hero-img {
    max-width: 260px;
    max-height: 220px;
  }

  .gr-about-values {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .invest-page .content-wrapper > .clearfix {
    flex-direction: column;
  }

  .invest-page .img-holder {
    max-width: 260px;
    max-height: 220px;
  }

  .gr-invest-deck-section {
    padding: 24px 20px;
  }

  .gr-invest-section-grid {
    grid-template-columns: 1fr;
  }

  .gr-invest-growth-list {
    columns: 1;
  }

  .gr-invest-products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .gr-contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gr-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .gr-footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .gr-footer-brand {
    text-align: center;
  }

  .gr-footer-logo-img {
    margin: 0 auto 15px;
  }

  .gr-footer-social {
    justify-content: center;
  }

  .gr-place-order-bridge {
    margin-top: -80px;
    margin-bottom: -80px;
  }

  .homepage .recipes.food-solutions {
    padding-top: 100px;
  }

  .gr-place-order-bridge + .main-content {
    padding-top: 100px;
  }

  .place-order {
    flex-direction: column;
    text-align: center;
    border-left: none;
    border-top: 5px solid var(--gr-red);
  }

  .place-order .desc,
  .place-order .call,
  .place-order .order {
    width: 100%;
    justify-content: center;
  }

  .place-order .call {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .order-page .outer-wrapper {
    flex-direction: column;
  }

  .order-page .half {
    flex-direction: column;
  }
}

/* ============================================================
   RESPONSIVE — Tablet (768px - 991px)
   ============================================================ */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gr-desktop-nav {
    display: block;
  }

  .gr-burger {
    display: none;
  }

  .gr-header-social {
    display: flex;
  }

  .gr-mobile-nav {
    display: none;
  }

  .gr-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .gr-footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .gr-footer-logo-img {
    margin: 0 auto 15px;
  }

  .gr-contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gr-recipe-card {
    grid-template-columns: 180px 1fr;
  }

  .invest-page .content-wrapper {
    padding: 40px 25px;
  }
}

/* ============================================================
   RESPONSIVE — Desktop (992px+)
   ============================================================ */
@media (min-width: 768px) {
  .gr-desktop-nav {
    display: block;
  }

  .gr-burger {
    display: none;
  }

  .gr-header-social {
    display: flex;
  }

  .gr-mobile-nav {
    display: none;
  }
}

@media (min-width: 1200px) {
  .gr-desktop-nav ul {
    gap: 36px;
  }

  .gr-desktop-nav a {
    font-size: 13px;
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .gr-header,
  .gr-footer,
  .social-btns,
  .banner,
  #map-canvas,
  .gr-cta-banner,
  .gr-features {
    display: none;
  }

  .content-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  a[href^="mailto"]::after {
    content: " (" attr(href) ")";
  }
}
