/* ===========================
   FJORD THEME - MAIN STYLES
   =========================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Brand Colors ── */
  --color-primary:   #1a3a5c;
  --color-primary-hover: #1e4570;
  --color-primary-dark:  #0d1f35;
  --color-accent:    #e8a020;
  --color-accent-hover:  #f0b030;

  /* ── Text Colors (from kingdomfishing.com source) ── */
  --color-dark:      #333333;   /* .s_subtitle, headings */
  --color-body:      #666666;   /* .s_body, .s_title, labels */
  --color-muted:     #999999;   /* .s_link, placeholders */
  --color-gray:      #666666;   /* alias */
  --color-white:     #ffffff;

  /* ── Background Colors (from source) ── */
  --color-light:     #f5f5f5;   /* hover bg, page bg */
  --color-bg-subtle: #f1f1f1;   /* input bg */
  --color-bg-comp:   #fffef8;   /* warm white sections */

  /* ── Border Colors (from source) ── */
  --color-border:    #e1e1e1;   /* inputs */
  --color-border-light: #ebebeb;
  --color-border-focus: #9fceff;

  /* ── Semantic ── */
  --color-sale:      #e53935;
  --color-success:   #2e7d32;
  --color-error:     #f56c6c;
  --color-error-bg:  #fef0f0;

  /* ── Typography ── */
  --font-heading:    "Montserrat", "Noto Sans SC", Arial, sans-serif;
  --font-body:       "Roboto", "Noto Sans SC", Arial, sans-serif;
  --font-nav:        "Roboto", Arial, sans-serif;  /* matches source intent */

  /* ── Type Scale (from source clamp values) ── */
  --text-display:    clamp(1.375rem, 1.094rem + 1.41vw, 2.5rem);   /* .s_subtitle */
  --text-lead:       clamp(1rem, 0.906rem + 0.47vw, 1.375rem);     /* .s_body */
  --text-summary:    clamp(1rem, 0.969rem + 0.16vw, 1.125rem);     /* .s_summary */
  --text-base:       clamp(0.875rem, 0.844rem + 0.16vw, 1rem);     /* .s_title */
  --text-small:      clamp(0.75rem, 0.719rem + 0.16vw, 0.875rem);  /* .s_link */
  --text-nav-l1:     0.8125rem;   /* 13px — L1 nav */
  --text-nav-l2:     0.875rem;    /* 14px — L2 dropdown */
  --text-nav-l3:     0.8125rem;   /* 13px — L3 sub-dropdown */
  --text-btn:        0.875rem;    /* 14px — all buttons (from source) */
  --text-label:      0.75rem;     /* 12px — form labels (from source) */
  --text-badge:      0.625rem;    /* 10px — badges */

  /* ── Line Heights (from source) ── */
  --leading-tight:   1.0;    /* .s_subtitle line-height: 1 */
  --leading-normal:  1.4;
  --leading-body:    1.8;    /* .s_title line-height: 1.8 */
  --leading-loose:   2.0;

  /* ── Transitions ── */
  --transition:      0.3s ease;
  --transition-fast: 0.15s ease;  /* from source form transitions */

  /* ── Misc ── */
  --shadow:          0 2px 8px rgba(0,0,0,0.06);
  --shadow-hover:    0 12px 32px rgba(0,0,0,0.12);
  --shadow-dropdown: 0 8px 32px rgba(0,0,0,0.15);
  --radius:          4px;
  --radius-round:    20px;   /* .s_button2 border-radius */
  --container:       1280px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-dark);
  background: var(--color-white);
  line-height: var(--leading-body);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-gray);
  font-size: 0.95rem;
  margin-bottom: 48px;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-accent);
  margin: 12px auto 0;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: transparent;
  color: var(--color-accent);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* ===========================
   HEADER / NAVIGATION
   =========================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--color-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: box-shadow var(--transition);
}

#site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.site-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Invert dark logo to white for dark navbar background */
  filter: brightness(0) invert(1);
}

/* WordPress custom logo */
.site-logo .custom-logo-link img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.site-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
}

.site-logo .logo-sub {
  font-size: 0.6rem;
  color: var(--color-accent);
  letter-spacing: 3px;
  display: block;
  text-transform: uppercase;
}

/* ===========================
   NAV — supports both .nav-list (fallback) and .menu (WordPress)
   =========================== */
.main-nav { flex: 1; overflow: visible; }

/* Target both class names */
.main-nav ul,
.main-nav .menu,
.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

/* Top-level items */
.main-nav ul > li,
.main-nav .menu > li,
.main-nav .nav-list > li {
  position: relative;
  flex-shrink: 0;
}

/* Top-level links */
.main-nav ul > li > a,
.main-nav .menu > li > a,
.main-nav .nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 8px 11px;
  color: var(--color-white);
  font-family: var(--font-nav);
  font-size: var(--text-nav-l1);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  text-decoration: none;
}

.main-nav ul > li > a:hover,
.main-nav .menu > li > a:hover,
.main-nav .nav-list > li > a:hover,
.main-nav ul > li.current-menu-item > a,
.main-nav .menu > li.current-menu-item > a {
  color: var(--color-white);
  background: var(--color-accent);
  border-bottom-color: transparent;
}

/* Dropdown arrow for items with children */
.main-nav ul > li.menu-item-has-children > a::after,
.main-nav .menu > li.menu-item-has-children > a::after,
.main-nav .has-dropdown > a::after {
  content: '▾';
  font-size: 0.6rem;
  opacity: 0.7;
  margin-left: 2px;
  transition: transform var(--transition);
}
.main-nav ul > li.menu-item-has-children:hover > a::after,
.main-nav .menu > li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

/* ===========================
   DROPDOWN — 1st level sub-menu
   =========================== */
.main-nav ul > li > ul,
.main-nav .menu > li > ul,
.main-nav .nav-list > li > ul,
.main-nav .has-dropdown > ul.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--color-white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  min-width: 200px;
  padding: 8px 0;
  z-index: 500;
  border-top: 3px solid var(--color-accent);
  list-style: none;
}

.main-nav ul > li:hover > ul,
.main-nav .menu > li:hover > ul,
.main-nav .nav-list > li:hover > ul,
.main-nav .has-dropdown:hover > ul.nav-dropdown,
.main-nav .has-dropdown:focus-within > ul.nav-dropdown {
  display: block;
}

/* Dropdown links */
.main-nav ul > li > ul li a,
.main-nav .menu > li > ul li a,
.main-nav .nav-list > li > ul li a,
.main-nav .has-dropdown > ul.nav-dropdown li a {
  display: block;
  padding: 9px 20px;
  font-family: var(--font-nav);
  font-size: var(--text-nav-l2);
  color: var(--color-dark);
  font-weight: 400;
  white-space: nowrap;
  border-bottom: none;
  transition: background var(--transition-fast), color var(--transition-fast), padding-left var(--transition-fast);
  text-decoration: none;
}

.main-nav ul > li > ul li a:hover,
.main-nav .menu > li > ul li a:hover,
.main-nav .nav-list > li > ul li a:hover,
.main-nav .has-dropdown > ul.nav-dropdown li a:hover {
  background: var(--color-light);
  color: var(--color-accent);
  padding-left: 26px;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-switch {
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color var(--transition);
  white-space: nowrap;
}
.lang-switch:hover { color: var(--color-accent); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--color-primary);
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav.open { display: block; }

.mobile-nav-list {
  list-style: none;
  margin: 0; padding: 0;
}
.mobile-nav-list li { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav-list li:last-child { border-bottom: none; }
.mobile-nav-list a {
  display: block;
  padding: 11px 4px;
  color: rgba(255,255,255,.85);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-nav-list a:hover { color: var(--color-accent); }

/* Hamburger open state */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .lang-switch { display: none; }
}

@media (min-width: 769px) {
  .mobile-nav { display: none !important; }
}
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
}

/* ===========================
   HERO SLIDER
   =========================== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active { opacity: 1; }

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 30, 60, 0.75) 0%,
    rgba(10, 30, 60, 0.3) 60%,
    transparent 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 18%;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero-content .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero-tag {
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  max-width: 700px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--color-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  font-size: 1.2rem;
}
.slider-arrow:hover { background: var(--color-accent); border-color: var(--color-accent); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
  padding: 100px 0;
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-title { text-align: left; }
.about-text .section-title::after { margin-left: 0; }

.about-text p {
  color: var(--color-gray);
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-card {
  background: var(--color-light);
  padding: 20px;
  border-radius: var(--radius);
  border-left: 3px solid var(--color-accent);
  transition: box-shadow var(--transition);
}
.about-card:hover { box-shadow: var(--shadow); }

.about-card h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.about-card p {
  font-size: 0.85rem;
  color: var(--color-gray);
  margin: 0;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--color-accent);
  border-radius: var(--radius);
  z-index: -1;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-number span { color: var(--color-accent); }

.stat-label {
  font-size: 0.78rem;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===========================
   PRODUCTS SECTION
   =========================== */
.products-section {
  padding: 100px 0;
  background: var(--color-light);
}

.products-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 8px 24px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-gray);
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn:hover,
.tab-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* Products section uses archive-card style — override grid for homepage */
.products-section .products-archive {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .products-section .products-archive { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .products-section .products-archive { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .products-section .products-archive { grid-template-columns: 1fr; }
}
  gap: 24px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-light);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.product-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.45;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(0.82rem * 1.45 * 2);
}

.product-card-body p { display: none; }
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card-body p {
  font-size: 0.82rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.product-link:hover { gap: 10px; }
.product-link::after { content: '→'; }

.products-more {
  text-align: center;
  margin-top: 48px;
}

/* ===========================
   NEWS SECTION
   =========================== */
.news-section {
  padding: 100px 0;
  background: var(--color-white);
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.news-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.news-card-img {
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--color-light);
}
.news-card.featured .news-card-img { aspect-ratio: 16/10; }

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.05); }

.news-card-body {
  padding: 24px;
}

.news-date {
  font-size: 0.75rem;
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.news-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-card.featured .news-card-body h3 { font-size: 1.3rem; }

.news-card-body p {
  font-size: 0.83rem;
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.news-link:hover { color: var(--color-primary); }

/* ===========================
   CONTACT BANNER
   =========================== */
.contact-banner {
  padding: 80px 0;
  background: var(--color-primary);
  text-align: center;
}

.contact-banner h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-banner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* ===========================
   FOOTER
   =========================== */
#site-footer {
  background: #0d1f35;
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.footer-brand .logo-sub {
  font-size: 0.65rem;
  color: var(--color-accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--color-accent); }

.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact .icon {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .main-nav, .header-actions .lang-switch { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: 2rem; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-image::before { display: none; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .news-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; justify-content: center; }
}

/* Mega menu and dropdown styles moved to header/nav section above */

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 8px 10px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li.current-menu-item > a {
  background: rgba(255,255,255,.12);
  color: var(--color-accent);
}

.nav-arrow {
  font-size: 0.6rem;
  opacity: .7;
  transition: transform var(--transition);
}
.nav-list > li:hover .nav-arrow { transform: rotate(180deg); }

/* Mega Menu panel */
.mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  padding: 24px 28px;
  min-width: 720px;
  z-index: 500;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0 24px;
  border-top: 3px solid var(--color-accent);
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  display: grid;
}

/* Keep panel open when hovering it */
.mega-menu:hover { display: grid; }

.mega-col {
  padding: 0 0 8px;
}

.mega-col-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--color-accent);
  white-space: nowrap;
}

.mega-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--color-gray);
  padding: 4px 0;
  transition: color var(--transition), padding-left var(--transition);
  white-space: nowrap;
}
.mega-col a:hover {
  color: var(--color-accent);
  padding-left: 6px;
}

/* Standard dropdown */
.has-dropdown > ul.nav-dropdown,
.nav-list > li > ul {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  min-width: 200px;
  padding: 8px 0;
  z-index: 500;
  border-top: 3px solid var(--color-accent);
  list-style: none;
}
.has-dropdown:hover > ul.nav-dropdown,
.has-dropdown:focus-within > ul.nav-dropdown,
.nav-list > li:hover > ul {
  display: block;
}
.has-dropdown > ul.nav-dropdown li a,
.nav-list > li > ul li a {
  display: block;
  padding: 8px 18px;
  font-size: 0.83rem;
  color: var(--color-dark);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
  white-space: nowrap;
}
.has-dropdown > ul.nav-dropdown li a:hover,
.nav-list > li > ul li a:hover {
  background: var(--color-light);
  color: var(--color-accent);
  padding-left: 24px;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  background: var(--color-primary);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav.open { display: block; }

.mobile-nav-list {
  list-style: none;
  margin: 0; padding: 0;
}
.mobile-nav-list li { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav-list li:last-child { border-bottom: none; }
.mobile-nav-list a {
  display: block;
  padding: 12px 4px;
  color: rgba(255,255,255,.85);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mobile-nav-list a:hover { color: var(--color-accent); }

/* Hamburger open state */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 769px) {
  .mobile-nav { display: none !important; }
  .hamburger  { display: none !important; }
}

/* ===========================
   FULLPAGE SCROLL
   =========================== */
/* Fullpage scroll — homepage only */
body.home {
  overflow: hidden;
  height: 100%;
}
body:not(.home) {
  overflow: auto !important;
  height: auto !important;
}
html {
  scroll-behavior: smooth;
}

#fullpage {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#fullpage::-webkit-scrollbar { display: none; }

.fp-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  height: 100vh;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Hero section — no extra padding needed */
.fp-section-hero { padding: 0; }

/* Other sections — account for fixed header */
.fp-section-categories,
.fp-section-about,
.fp-section-products,
.fp-section-news,
.fp-section-contact {
  overflow-y: auto;
  scrollbar-width: none;
}
.fp-section-categories::-webkit-scrollbar,
.fp-section-about::-webkit-scrollbar,
.fp-section-products::-webkit-scrollbar,
.fp-section-news::-webkit-scrollbar,
.fp-section-contact::-webkit-scrollbar { display: none; }

/* Fullpage side nav dots */
#fp-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fp-nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.fp-nav-dot.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.3);
}
.fp-nav-dot:hover { background: var(--color-accent); }

/* ===========================
   CATEGORY SHOWCASE SECTION
   (like kingdomfishing.com)
   =========================== */
.cat-showcase {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}

.cat-showcase-bg {
  position: absolute;
  inset: 0;
  background: url('../images/cat-bg.jpg') center/cover no-repeat;
  filter: grayscale(80%) brightness(0.4);
  z-index: 0;
}

.cat-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,40,0.6) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.cat-showcase-inner {
  position: relative;
  z-index: 2;
  padding-top: 72px; /* header height */
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition), transform var(--transition);
  cursor: pointer;
}
.cat-item:hover {
  color: var(--color-accent);
  transform: translateY(-6px);
}

.cat-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  transition: stroke var(--transition);
}

.cat-name {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

/* Sections that need padding for content */
.fp-section-about .about-section,
.fp-section-products .products-section,
.fp-section-news .news-section {
  padding-top: calc(72px + 40px);
  padding-bottom: 40px;
  min-height: 100vh;
  box-sizing: border-box;
}

/* Responsive */
@media (max-width: 768px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 32px 16px; }
  .cat-icon { width: 48px; height: 48px; }
  .cat-name { font-size: 0.65rem; }
  #fp-nav { display: none; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* No sub-menu arrows needed (no 3rd level categories) */

/* Footer Products — 2 column grid */
.footer-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-products-grid li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.footer-products-grid li a:hover { color: var(--color-accent); }

/* Wider products column */
.footer-col-products { min-width: 0; }

@media (max-width: 768px) {
  .footer-products-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-products-grid { grid-template-columns: 1fr; }
}
