/* Garden Gear Depot brand layer - loaded after main.css */
:root {
  --gg-black: #0d110e;
  --gg-ink: #1a211c;
  --gg-green: #1b8a3a;
  --gg-green-dark: #136b2c;
  --gg-lime: #a3d93b;
  --gg-cream: #f4f6f1;
  --gg-line: #e3e8e0;
  --gg-muted: #5d6860;
  --gg-radius: 10px;
  --gg-display: 'Oswald', 'Arial Narrow', sans-serif;
  --gg-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --color-primary: 26, 33, 28;
  --font-family: var(--gg-body);
}

body { background: #fff; color: var(--gg-ink); }
* { font-family: var(--gg-body); }

h1, h2, h3, .h1, .h2, .h3,
yc-section-head h2 {
  font-family: var(--gg-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
}

.gg-container { width: min(1240px, 100% - 32px); margin-inline: auto; }

/* Buttons */
.gg-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 6px; font-weight: 700; font-size: 1.5rem;
  text-transform: uppercase; letter-spacing: 0.04em; transition: 0.2s ease;
  border: 2px solid transparent; white-space: nowrap;
}
.gg-btn--primary { background: var(--gg-green); color: #fff; }
.gg-btn--primary:hover { background: var(--gg-green-dark); transform: translateY(-1px); }
.gg-btn--lime { background: var(--gg-lime); color: var(--gg-black); }
.gg-btn--lime:hover { filter: brightness(1.07); transform: translateY(-1px); }
.gg-btn--ghost { border-color: rgba(255,255,255,0.55); color: #fff; }
.gg-btn--ghost:hover { background: #fff; color: var(--gg-black); }

.yc-btn.primary { background: var(--gg-green); border-color: var(--gg-green); color: #fff; font-weight: 700; }
.yc-btn.primary:hover { background: var(--gg-green-dark); }

.gg-eyebrow {
  display: inline-block; font-size: 1.25rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gg-lime);
}

/* Announcement + header */
#youcan-section--announcement-bar, .announcement-bar { background: var(--gg-black) !important; color: #fff !important; }
yc-header { background: #fff; border-bottom: 1px solid var(--gg-line); }
yc-header .logo a { font-family: var(--gg-display); font-size: 2.4rem; font-weight: 700; text-transform: uppercase; color: var(--gg-black); white-space: nowrap; }
yc-header .links a.yc-btn.link { white-space: nowrap; }
@media (max-width: 1280px) { yc-header .links ul { gap: 18px; } yc-header .links a.yc-btn.link { font-size: 1.35rem; } }
yc-header .links a.yc-btn.link { color: var(--gg-ink); font-weight: 600; }
yc-header .links a.yc-btn.link:hover { color: var(--gg-green); }

/* Hero */
.gg-hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(1200px 500px at 85% 20%, rgba(163,217,59,0.18), transparent 60%),
    linear-gradient(120deg, var(--gg-black) 0%, #132017 55%, #0f3a1d 100%);
}
.gg-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.gg-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,17,14,0.92) 0%, rgba(13,17,14,0.55) 55%, rgba(13,17,14,0.1) 100%); }
.gg-hero__inner { position: relative; z-index: 1; padding-block: clamp(64px, 10vw, 128px); max-width: 1240px; }
.gg-hero h1 { font-size: clamp(3.6rem, 6vw, 7.2rem); margin: 14px 0 18px; max-width: 14ch; color: #fff; }
.gg-hero h1 span { color: var(--gg-lime); line-height: inherit; }
.gg-hero p { font-size: clamp(1.6rem, 1.6vw, 1.9rem); max-width: 52ch; color: rgba(255,255,255,0.82); }
.gg-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.gg-hero__points { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 36px; }
.gg-hero__points li { display: flex; align-items: center; gap: 8px; font-size: 1.45rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.gg-hero__points li::before { content: "✓"; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--gg-lime); color: var(--gg-black); font-size: 1.2rem; font-weight: 900; }

/* Trust bar */
.gg-trust { background: var(--gg-green); color: #fff; }
.gg-trust ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.gg-trust li { display: flex; align-items: center; gap: 12px; padding: 20px 16px; }
.gg-trust li + li { border-left: 1px solid rgba(255,255,255,0.18); }
.gg-trust .gg-trust__icon { font-size: 2.6rem; line-height: 1; }
.gg-trust strong { display: block; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.03em; }
.gg-trust span { font-size: 1.3rem; opacity: 0.85; }

/* Section heads */
.gg-section { padding-block: clamp(48px, 7vw, 88px); }
.gg-section--cream { background: var(--gg-cream); }
.gg-section--dark { background: var(--gg-black); color: #fff; }
.gg-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.gg-head h2 { font-size: clamp(2.8rem, 3.6vw, 4.4rem); }
.gg-head p { color: var(--gg-muted); font-size: 1.6rem; margin-top: 6px; max-width: 60ch; }
.gg-section--dark .gg-head p { color: rgba(255,255,255,0.7); }
.gg-link { font-weight: 700; color: var(--gg-green); text-transform: uppercase; font-size: 1.4rem; letter-spacing: 0.05em; }
.gg-link:hover { color: var(--gg-green-dark); }

/* Category tiles */
.gg-cats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.gg-cat {
  position: relative; display: flex; flex-direction: column; justify-content: end; min-height: 280px;
  border-radius: var(--gg-radius); overflow: hidden; background: var(--gg-ink); color: #fff; padding: 20px; isolation: isolate;
}
.gg-cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #fff; z-index: -2; transition: transform 0.5s ease; padding: 18px 18px 90px; }
.gg-cat::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 40%, rgba(13,17,14,0.95) 78%); }
.gg-cat:hover img { transform: scale(1.05); }
.gg-cat h3 { font-size: 2rem; color: #fff; }
.gg-cat span { font-size: 1.3rem; color: var(--gg-lime); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }

/* Product cards */
.items-grid > li { min-width: 0; }
.product-card {
  width: 100%; max-width: 100%;
  background: #fff; border: 1px solid var(--gg-line) !important; border-radius: var(--gg-radius);
  overflow: hidden; transition: box-shadow 0.25s ease, transform 0.25s ease; height: 100%;
}
.product-card:hover { box-shadow: 0 14px 34px rgba(13,17,14,0.12); transform: translateY(-3px); }
.product-card .img-link { display: block; aspect-ratio: 1; background: #fff; padding: 14px; }
.product-card .img-link img { object-fit: contain; width: 100%; height: 100%; }
.product-card .info { padding: 14px 16px 18px; border-top: 1px solid var(--gg-line); }
.product-card .title {
  font-weight: 600; font-size: 1.45rem; line-height: 1.35; color: var(--gg-ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.7em;
}
.product-card .price .current { font-family: var(--gg-display); font-size: 2.2rem; font-weight: 600; color: var(--gg-black); }
.product-card .price .compare-at { color: var(--gg-muted); text-decoration: line-through; }
.product-card .gg-ship { display: flex; align-items: center; gap: 6px; font-size: 1.2rem; font-weight: 700; color: var(--gg-green); text-transform: uppercase; letter-spacing: 0.04em; margin: 4px 0 10px; }
.product-card .badge span { background: var(--gg-lime); color: var(--gg-black); font-weight: 800; text-transform: uppercase; }

/* Yard guide */
.gg-guide { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gg-guide a {
  display: flex; flex-direction: column; gap: 10px; padding: 26px 22px; border-radius: var(--gg-radius);
  background: #151c17; border: 1px solid rgba(255,255,255,0.08); color: #fff; transition: 0.25s ease;
}
.gg-guide a:hover { border-color: var(--gg-lime); transform: translateY(-3px); }
.gg-guide .gg-guide__size { font-family: var(--gg-display); font-size: 3.2rem; color: var(--gg-lime); text-transform: uppercase; line-height: 1; }
.gg-guide strong { font-size: 1.7rem; }
.gg-guide p { color: rgba(255,255,255,0.7); font-size: 1.4rem; }
.gg-guide .gg-guide__cta { margin-top: auto; font-weight: 700; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gg-lime); }

/* Brands */
.gg-brands { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.gg-brands a {
  padding: 16px 26px; border: 1px solid var(--gg-line); border-radius: var(--gg-radius); background: #fff;
  font-family: var(--gg-display); font-size: 2rem; font-weight: 600; text-transform: uppercase; color: var(--gg-ink); letter-spacing: 0.03em;
}
.gg-brands a:hover { border-color: var(--gg-green); color: var(--gg-green); }

/* CTA */
.gg-cta { background: linear-gradient(110deg, var(--gg-green) 0%, #0f5c25 100%); color: #fff; border-radius: 16px; padding: clamp(32px, 5vw, 56px); display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.gg-cta h2 { font-size: clamp(2.6rem, 3.4vw, 4rem); color: #fff; }
.gg-cta p { color: rgba(255,255,255,0.85); font-size: 1.6rem; margin-top: 6px; }
.gg-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Footer */
footer { background: var(--gg-black) !important; color: rgba(255,255,255,0.8) !important; }
footer a, footer p, footer .copyright { color: rgba(255,255,255,0.8) !important; }
footer .navigation p { color: #fff !important; font-family: var(--gg-display); text-transform: uppercase; font-size: 1.6rem; }
footer a:hover { color: var(--gg-lime) !important; }
footer .store-brand a { font-family: var(--gg-display); font-size: 2.4rem; text-transform: uppercase; color: #fff !important; }

/* Pages */
.gg-page h2 { margin-bottom: 14px; }
.main-container .page-content h3, .gg-page h3 { font-size: 2rem; margin: 22px 0 8px; color: var(--gg-green-dark); }

@media (max-width: 1024px) {
  .gg-cats { grid-template-columns: repeat(3, 1fr); }
  .gg-guide { grid-template-columns: repeat(2, 1fr); }
  .gg-trust ul { grid-template-columns: repeat(2, 1fr); }
  .gg-trust li:nth-child(3) { border-left: 0; }
}
@media (max-width: 640px) {
  .gg-cats { grid-template-columns: repeat(2, 1fr); }
  .gg-cat { min-height: 210px; }
  .gg-guide { grid-template-columns: 1fr; }
  .gg-trust li { padding: 14px 8px; gap: 8px; }
  .gg-trust strong { font-size: 1.25rem; }
  .gg-trust span { display: none; }
  .gg-hero__actions .gg-btn { flex: 1 1 100%; }
}
