/*
Theme Name: MyPacking
Theme URI: https://mypacking.co.uk
Author: MyPacking Team
Author URI: https://mypacking.co.uk
Description: Award-winning theme for MyPacking - Premium packaging solutions with #c6682d brand color. Built with performance, accessibility, and SEO excellence.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mypacking
Tags: e-commerce, woocommerce, block-editor, custom-colors, custom-logo, custom-menu, featured-images, full-site-editing, rtl-language-support, sticky-post, threaded-comments, translation-ready, accessibility-ready

MyPacking Theme, Copyright 2025 MyPacking
MyPacking Theme is distributed under the terms of the GNU GPL.
*/

/* Critical CSS - Above the fold */
:root {
  /* Brand Colors - #c6682d centered */
  --brand: #c6682d;
  --brand-600: #a25727;
  --brand-700: #8d4b22;
  --brand-800: #703c1b;
  --brand-300: #e89a6d;
  --brand-200: #f0b58f;
  --brand-100: #f8d3b8;
  
  /* Neutrals */
  --ink: #121212;
  --gray-900: #1f1f1f;
  --gray-700: #3a3a3a;
  --gray-400: #9a9a9a;
  --gray-200: #e6e6e6;
  --white: #ffffff;
  
  /* Status Colors */
  --success: #22a06b;
  --warning: #f2b824;
  --error: #d64545;
  --info: #2f7dd1;
  
  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing - 8px base */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Z-index */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-toast: 400;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Override WordPress Block Editor body padding on mobile */
@media (max-width: 768px) {
  body {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: var(--space-md);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--brand-600);
}

a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--brand-600);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--brand);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Performance - Will be split to separate files */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Mobile Fixes for Digital Service Pages
   ========================================================================== */

/* Graphic Design Services - Pricing Cards Mobile Fix */
@media (max-width: 768px) {
  .pricing-cards-flow {
    flex-direction: column !important;
    align-items: center !important;
    overflow-x: visible !important;
    padding: 0 16px !important;
  }
  
  .price-art-card {
    flex: 1 1 auto !important;
    width: 100% !important;
    max-width: 400px !important;
    margin-bottom: 24px !important;
  }
}

/* ==========================================================================
   PERF-001: Alert Styles (moved from critical CSS)
   ========================================================================== */
.mytheme-alert {
  padding: 8px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.mytheme-alert__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

.mytheme-alert--success {
  background-color: rgba(16, 185, 129, 0.1);
  color: #047857;
}

.mytheme-alert--error {
  background-color: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
}

/* ==========================================================================
   CONTENT-001: Category SEO Content Styling
   ========================================================================== */
.mypacking-category-seo-content {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 12px;
  line-height: 1.8;
  color: #475569;
}

.mypacking-category-seo-content h2,
.mypacking-category-seo-content h3 {
  color: #1e293b;
  margin-top: 24px;
  margin-bottom: 12px;
}

.mypacking-category-seo-content p {
  margin-bottom: 16px;
}

.mypacking-category-seo-content ul,
.mypacking-category-seo-content ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

/* ==========================================================================
   Breadcrumb Navigation
   ========================================================================== */
.mytheme-breadcrumb {
  padding: 12px 0;
  background: var(--mytheme-color-bg-light, #fafafa);
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

.mytheme-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.mytheme-breadcrumb__item {
  display: flex;
  align-items: center;
  color: var(--mytheme-color-text-muted, #666);
}

.mytheme-breadcrumb__item + .mytheme-breadcrumb__item::before {
  content: "/";
  margin-right: 4px;
  color: #ccc;
}

.mytheme-breadcrumb__item a {
  color: var(--mytheme-color-text-muted, #666);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mytheme-breadcrumb__item a:hover {
  color: var(--mytheme-color-primary, #c6682d);
}

.mytheme-breadcrumb__item--current {
  color: var(--mytheme-color-text, #1a1a1a);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════
   GEO LOCATION PAGES — Premium Design v2
   Uses --mytheme-* design tokens for full site consistency.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Scroll Reveal Animation ── */
@keyframes geoFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes geoFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes geoPulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198,104,45,0.15); }
  50%      { box-shadow: 0 0 0 12px rgba(198,104,45,0); }
}
@keyframes geoSlideRight {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes geoGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.geo-reveal {
  opacity: 0;
  transform: translateY(32px);
}
.geo-reveal.geo-visible {
  animation: geoFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.geo-reveal-delay-1.geo-visible { animation-delay: 0.1s; }
.geo-reveal-delay-2.geo-visible { animation-delay: 0.2s; }
.geo-reveal-delay-3.geo-visible { animation-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .geo-reveal { opacity: 1; transform: none; }
  .geo-reveal.geo-visible { animation: none; }
}

/* ── Full-bleed for all geo sections ── */
.mytheme-geo-breadcrumb,
.mytheme-geo-hero,
.mytheme-geo-content,
.mytheme-geo-products,
.mytheme-geo-services,
.mytheme-geo-fulfilment,
.mytheme-geo-faq,
.mytheme-geo-nearby,
.mytheme-geo-cta-section,
.mytheme-geo-archive {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ── Breadcrumb ── */
.mytheme-geo-breadcrumb {
  padding: var(--space-md) 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.85rem;
  font-family: var(--font-body);
}
.mytheme-geo-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mytheme-geo-breadcrumb__list li { color: var(--gray-400); }
.mytheme-geo-breadcrumb__list li + li::before {
  content: "›";
  margin-right: 6px;
  color: var(--gray-200);
  font-weight: 300;
}
.mytheme-geo-breadcrumb__list li a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s ease;
}
.mytheme-geo-breadcrumb__list li a:hover { color: var(--brand); }
.mytheme-geo-breadcrumb__list li[aria-current="page"] {
  color: var(--gray-900);
  font-weight: 600;
}

/* ── Hero ── */
.mytheme-geo-hero {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  background-size: 200% 200%;
  animation: geoGradientShift 12s ease infinite;
  color: var(--white);
  padding: clamp(60px, 10vw, 100px) 0 clamp(50px, 8vw, 80px);
  text-align: center;
  overflow: hidden;
}
.mytheme-geo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(198,104,45,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(198,104,45,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.mytheme-geo-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand), var(--brand-300), var(--brand));
}
.mytheme-geo-hero .mytheme-container { position: relative; z-index: 1; }
.mytheme-geo-hero--archive { padding: clamp(48px, 8vw, 72px) 0; }

.mytheme-geo-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  margin: 0 0 var(--space-lg);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff !important;
  animation: geoFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.mytheme-geo-hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
  color: rgba(255,255,255,0.9) !important;
  animation: geoFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}
.mytheme-geo-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: var(--mytheme-transition, all 0.3s cubic-bezier(0.4, 0, 0.2, 1));
  animation: geoFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
  position: relative;
  overflow: hidden;
}
.mytheme-geo-hero__cta::after {
  content: "→";
  transition: transform 0.3s ease;
}
.mytheme-geo-hero__cta:hover {
  background: var(--brand-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198,104,45,0.35);
  color: var(--white);
}
.mytheme-geo-hero__cta:hover::after { transform: translateX(4px); }

/* ── Content Grid ── */
.mytheme-geo-content {
  padding: var(--space-4xl) 0;
}
.mytheme-geo-content__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-3xl);
  align-items: start;
}
@media (max-width: 900px) {
  .mytheme-geo-content__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
}
.mytheme-geo-content__intro {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--gray-700);
  margin-bottom: var(--space-xl);
  border-left: 3px solid var(--brand-200);
  padding-left: var(--space-lg);
}
.mytheme-geo-content__body {
  line-height: 1.85;
  color: var(--gray-700);
  font-size: 1.02rem;
}
.mytheme-geo-content__body h2 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: var(--space-3xl) 0 var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--brand-100);
  letter-spacing: -0.01em;
}
.mytheme-geo-content__body h2:first-child { margin-top: 0; }
.mytheme-geo-content__body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: var(--space-2xl) 0 var(--space-sm);
}
.mytheme-geo-content__body p {
  margin-bottom: var(--space-lg);
}

/* ── Sidebar ── */
.mytheme-geo-sidebar-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  margin-bottom: var(--space-lg);
  transition: var(--mytheme-transition, all 0.3s ease);
  box-shadow: var(--shadow-sm);
}
.mytheme-geo-sidebar-box:hover {
  box-shadow: var(--shadow-md);
}
.mytheme-geo-sidebar-box h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 var(--space-md);
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mytheme-geo-sidebar-box h3::before {
  content: "";
  width: 4px;
  height: 18px;
  background: var(--brand);
  border-radius: 2px;
  flex-shrink: 0;
}
.mytheme-geo-sidebar-box ul { margin: 0; padding: 0; list-style: none; }
.mytheme-geo-sidebar-box ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
}
.mytheme-geo-sidebar-box ul li:last-child { border-bottom: none; }
.mytheme-geo-sidebar-box ul li a {
  color: var(--gray-700);
  text-decoration: none;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.mytheme-geo-sidebar-box ul li a::before {
  content: "›";
  color: var(--brand-300);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}
.mytheme-geo-sidebar-box ul li a:hover {
  color: var(--brand);
  transform: translateX(4px);
}
.mytheme-geo-sidebar-box ul li a:hover::before { color: var(--brand); }

.mytheme-geo-sidebar-cta {
  background: linear-gradient(145deg, #fef7f0 0%, var(--brand-100) 100%);
  border-color: var(--brand-200);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mytheme-geo-sidebar-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(198,104,45,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.mytheme-geo-sidebar-cta h3::before { display: none; }
.mytheme-geo-sidebar-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: var(--space-sm);
  transition: var(--mytheme-transition, all 0.3s ease);
  position: relative;
}
.mytheme-geo-sidebar-cta__btn:hover {
  background: var(--brand-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198,104,45,0.3);
  color: var(--white);
}

/* ── Section Title (shared) ── */
.mytheme-geo-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.01em;
}
.mytheme-geo-section-subtitle {
  text-align: center;
  color: var(--gray-400);
  max-width: 560px;
  margin: 0 auto var(--space-2xl);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ── Products Grid ── */
.mytheme-geo-products {
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, #fafafa 0%, var(--white) 100%);
}
.mytheme-geo-products h2 {
  font-family: var(--font-heading);
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  margin: 0 auto var(--space-sm);
  color: var(--gray-900);
}
.mytheme-geo-products > .mytheme-container > p {
  text-align: center;
  color: var(--gray-400);
  margin: 0 auto var(--space-2xl);
  max-width: 560px;
}
.mytheme-geo-products .mytheme-container { text-align: center; }
.mytheme-geo-products__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
}
.mytheme-geo-product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-sm);
}
.mytheme-geo-product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--brand);
}
.mytheme-geo-product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mytheme-geo-product-card:hover img { transform: scale(1.06); }
.mytheme-geo-product-card h3 {
  padding: 14px var(--space-lg);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
}

.mytheme-geo-products__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-sm);
  min-height: 160px;
  width: 190px;
  gap: var(--space-sm);
}
.mytheme-geo-products__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--brand);
}
.mytheme-geo-products__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-100) 0%, var(--brand-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: var(--space-sm);
  transition: all 0.35s ease;
}
.mytheme-geo-products__card:hover .mytheme-geo-products__icon {
  background: var(--brand);
  color: var(--white);
  transform: scale(1.08);
}
.mytheme-geo-products__card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}
.mytheme-geo-products__count {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ── Website Services ── */
.mytheme-geo-services {
  padding: var(--space-4xl) 0;
  background: var(--white);
}
.mytheme-geo-services h2 {
  font-family: var(--font-heading);
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--gray-900);
}
.mytheme-geo-services > .mytheme-container > p {
  text-align: center;
  color: var(--gray-400);
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
  font-size: 1.05rem;
}
.mytheme-geo-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.mytheme-geo-service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.mytheme-geo-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mytheme-geo-service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--brand-200);
}
.mytheme-geo-service-card:hover::before { transform: scaleX(1); }
.mytheme-geo-service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-100) 0%, var(--brand-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: var(--space-lg);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mytheme-geo-service-card:hover .mytheme-geo-service-card__icon {
  background: var(--brand);
  color: var(--white);
  transform: scale(1.1) rotate(-3deg);
}
.mytheme-geo-service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 var(--space-sm);
}
.mytheme-geo-service-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.mytheme-geo-services__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: gap 0.2s ease, color 0.2s ease;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  justify-content: center;
}
.mytheme-geo-services__link:hover { gap: 10px; color: var(--brand-600); }

/* ── Fulfilment ── */
.mytheme-geo-fulfilment {
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, #fafafa 0%, var(--white) 100%);
}
.mytheme-geo-fulfilment h2 {
  font-family: var(--font-heading);
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: var(--space-2xl);
  color: var(--gray-900);
}
.mytheme-geo-fulfilment__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}
.mytheme-geo-fulfilment-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.mytheme-geo-fulfilment-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: var(--space-xl);
  right: var(--space-xl);
  height: 2px;
  background: var(--brand-100);
  border-radius: 1px;
}
.mytheme-geo-fulfilment-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.mytheme-geo-fulfilment-card:hover::after { background: var(--brand); }
.mytheme-geo-fulfilment-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brand-100) 0%, var(--brand-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: var(--space-md);
  transition: all 0.35s ease;
}
.mytheme-geo-fulfilment-card:hover .mytheme-geo-fulfilment-card__icon {
  background: var(--brand);
  color: var(--white);
}
.mytheme-geo-fulfilment-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 var(--space-sm);
}
.mytheme-geo-fulfilment-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

/* ── FAQ ── */
.mytheme-geo-faq {
  padding: var(--space-4xl) 0;
  background: var(--white);
}
.mytheme-geo-faq h2 {
  font-family: var(--font-heading);
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: var(--space-2xl);
  color: var(--gray-900);
}
.mytheme-geo-faq__list {
  max-width: 760px;
  margin: 0 auto;
}
.mytheme-geo-faq__item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.mytheme-geo-faq__item:hover { border-color: var(--brand-200); }
.mytheme-geo-faq__item[open] {
  border-color: var(--brand);
  box-shadow: 0 4px 16px rgba(198,104,45,0.1);
}
.mytheme-geo-faq__question {
  padding: var(--space-lg) var(--space-xl);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  background: var(--white);
  color: var(--gray-900);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  transition: all 0.2s ease;
}
.mytheme-geo-faq__question:hover { color: var(--brand); }
.mytheme-geo-faq__question::after {
  content: "";
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: var(--brand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23c6682d'%3E%3Cpath d='M7 1v12M1 7h12' stroke='%23c6682d' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.mytheme-geo-faq__item[open] .mytheme-geo-faq__question { color: var(--brand); }
.mytheme-geo-faq__item[open] .mytheme-geo-faq__question::after {
  background-color: var(--brand);
  transform: rotate(45deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14'%3E%3Cpath d='M7 1v12M1 7h12' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.mytheme-geo-faq__question::-webkit-details-marker { display: none; }
.mytheme-geo-faq__answer {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--gray-700);
  line-height: 1.8;
  font-size: 0.97rem;
  animation: geoSlideRight 0.4s ease forwards;
}

/* ── Nearby ── */
.mytheme-geo-nearby {
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, #fafafa 0%, var(--white) 100%);
}
.mytheme-geo-nearby h2 {
  font-family: var(--font-heading);
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: var(--space-2xl);
  color: var(--gray-900);
}
.mytheme-geo-nearby__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-md);
}
.mytheme-geo-nearby__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-decoration: none;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.mytheme-geo-nearby__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--brand-200);
  border-radius: 0 0 3px 3px;
  transition: all 0.3s ease;
}
.mytheme-geo-nearby__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--brand);
}
.mytheme-geo-nearby__card:hover::before { width: 100%; background: var(--brand); left: 0; transform: none; }
.mytheme-geo-nearby__card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0 0 4px;
}
.mytheme-geo-nearby__card span {
  font-size: 0.82rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ── CTA Section ── */
.mytheme-geo-cta-section {
  padding: clamp(56px, 10vw, 88px) 0;
  background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand) 50%, var(--brand-600) 100%);
  background-size: 200% 200%;
  animation: geoGradientShift 8s ease infinite;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mytheme-geo-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.mytheme-geo-cta-section .mytheme-container { position: relative; z-index: 1; }
.mytheme-geo-cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 var(--space-md);
  color: #ffffff !important;
  letter-spacing: -0.02em;
}
.mytheme-geo-cta-section p {
  max-width: 580px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.75;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92) !important;
}
.mytheme-geo-cta-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--brand);
  padding: 16px 40px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.mytheme-geo-cta-section__btn::after { content: "→"; transition: transform 0.3s ease; }
.mytheme-geo-cta-section__btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  color: var(--brand-700);
}
.mytheme-geo-cta-section__btn:hover::after { transform: translateX(4px); }

/* ── Archive Grid ── */
.mytheme-geo-archive {
  padding: var(--space-4xl) 0;
}
.mytheme-geo-archive__region {
  margin-bottom: var(--space-3xl);
}
.mytheme-geo-archive__region h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 3px solid var(--brand);
  color: var(--gray-900);
  display: inline-block;
}
.mytheme-geo-archive__region h2 a {
  color: var(--gray-900);
  text-decoration: none;
  transition: color 0.2s ease;
}
.mytheme-geo-archive__region h2 a:hover { color: var(--brand); }
.mytheme-geo-archive__section { margin-bottom: var(--space-2xl); }
.mytheme-geo-archive__section h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}
.mytheme-geo-archive__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
}
.mytheme-geo-archive__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.mytheme-geo-archive__card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.mytheme-geo-archive__card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--gray-900);
}
.mytheme-geo-archive__card--hub {
  border-color: var(--brand);
  background: linear-gradient(145deg, #fef7f0 0%, var(--brand-100) 100%);
  border-width: 2px;
}
.mytheme-geo-archive__badge {
  display: inline-block;
  font-size: 0.68rem;
  background: var(--brand);
  color: var(--white);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  align-self: flex-start;
}

/* ── Blog-to-Geo Cross Links ── */
.mytheme-geo-blog-links {
  margin-top: var(--space-2xl);
  padding: var(--space-xl) var(--space-xl);
  background: linear-gradient(135deg, #fef7f0 0%, var(--brand-100) 100%);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.mytheme-geo-blog-links p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.8;
}
.mytheme-geo-blog-links a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.mytheme-geo-blog-links a:hover { color: var(--brand-700); text-decoration: underline; }

/* ── Responsive Refinements ── */
@media (max-width: 640px) {
  .mytheme-geo-hero { padding: 48px 0 40px; }
  .mytheme-geo-hero__cta { width: 100%; justify-content: center; }
  .mytheme-geo-products__grid,
  .mytheme-geo-nearby__grid,
  .mytheme-geo-archive__grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .mytheme-geo-fulfilment__grid,
  .mytheme-geo-services__grid { grid-template-columns: 1fr; }
  .mytheme-geo-faq__question { font-size: 0.92rem; padding: var(--space-md) var(--space-lg); }
  .mytheme-geo-content,
  .mytheme-geo-products,
  .mytheme-geo-services,
  .mytheme-geo-fulfilment,
  .mytheme-geo-faq,
  .mytheme-geo-nearby { padding: var(--space-2xl) 0; }
}

