/*
Theme Name: Zak International Child Theme
Theme URI: https://zakinternational.in
Description: Bespoke high-performance Divi Child Theme for ZAK INTERNATIONAL — premier B2B manufacturer and exporter of Pet Gear, Equestrian Equipment, In-House Molded Rubber, and Bespoke Leather Goods.
Author: Antigravity AI Engineering
Author URI: https://zakinternational.in
Template: Divi
Version: 1.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zak-international
*/


/* ==========================================================================
   CONSOLIDATED: zak-international-theme/assets/css/design-tokens.css
   ========================================================================== */

/**
 * Zak International — Agency Design Tokens & Core Variables
 *
 * Approved British Heritage Royal Look:
 * - #1B2A4A: Deep Royal Navy (Headings, Primary Buttons, Badges)
 * - #121E36: Midnight Navy Dark (Footer, High-Contrast Anchors)
 * - #D97724: Warm English Amber / Cognac Leather (Primary CTA & Highlights)
 * - #FFFFFF: Crisp Surface White (Card Bodies, Hero Background)
 * - #F9F9F7: Warm Stone (Subtle Alternating Sections)
 * - #1E2229: Rich Charcoal Main Body Text
 * - #5A6578: Muted Slate Secondary Text
 */

:root {
  /* Brand Core Palette */
  --zak-navy-primary: #1B2A4A;
  --zak-navy-dark: #121E36;
  --zak-navy-deep: #0D1627;
  --zak-navy-soft: rgba(27, 42, 74, 0.06);

  --zak-amber-cta: #D97724;
  --zak-amber-hover: #BF651B;
  --zak-amber-soft: rgba(217, 119, 36, 0.09);
  --zak-amber-glow: rgba(217, 119, 36, 0.30);

  /* Background Surfaces */
  --zak-surface-white: #FFFFFF;
  --zak-surface-stone: #F9F9F7;
  --zak-surface-cream: #F5F3EF;

  /* Typography Colors */
  --zak-text-main: #1E2229;
  --zak-text-navy: #1B2A4A;
  --zak-text-muted: #5A6578;
  --zak-text-light: #94A3B8;
  --zak-text-white: #FFFFFF;

  /* Hairline Borders */
  --zak-border-subtle: rgba(27, 42, 74, 0.08);
  --zak-border-card: #EAEBED;

  /* Typography Families */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Mathematical 8pt Spacing Grid */
  --zak-space-xs: 8px;
  --zak-space-sm: 16px;
  --zak-space-md: 24px;
  --zak-space-lg: 32px;      /* Standard card padding */
  --zak-space-xl: 48px;
  --zak-space-2xl: 64px;
  --zak-section-pad: 96px;    /* Uniform section vertical rhythm */

  /* Elevation & Diffuse Shadows (Agency Grade) */
  --zak-shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 20px 40px -10px rgba(27, 42, 74, 0.05);
  --zak-shadow-card-hover: 0 10px 20px -3px rgba(0, 0, 0, 0.04), 0 25px 50px -12px rgba(27, 42, 74, 0.12);
  --zak-shadow-pill: 0 10px 30px rgba(27, 42, 74, 0.06);
  --zak-shadow-amber: 0 8px 24px rgba(217, 119, 36, 0.28);

  /* Radii */
  --zak-radius-sm: 8px;
  --zak-radius-md: 14px;
  --zak-radius-card: 20px;
  --zak-radius-pill: 99px;

  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-in-out;
}

body.zak-international-site {
  background-color: var(--zak-surface-white) !important;
  color: var(--zak-text-main) !important;
  font-family: var(--font-sans) !important;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .et_pb_text h1, .et_pb_text h2, .et_pb_text h3 {
  font-family: var(--font-serif) !important;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--zak-navy-primary);
}



/* ==========================================================================
   CONSOLIDATED: zak-international-theme/assets/css/glassmorphism.css
   ========================================================================== */

/**
 * Zak International — Subtle Glassmorphism Engine
 * British Heritage Royal Palette (Royal Navy, English Amber, Warm Stone)
 */

/* 1. Light Card with Crisp Border and Subtle Shadow */
.zak-glass-card {
  background: #FFFFFF !important;
  border: 1px solid var(--zak-border-card) !important;
  box-shadow: var(--zak-shadow-card) !important;
  border-radius: var(--zak-radius-card) !important;
  padding: 32px !important;
  transition: var(--transition-smooth);
}

.zak-glass-card:hover {
  background: #FFFFFF !important;
  box-shadow: var(--zak-shadow-card-hover) !important;
  transform: translateY(-4px);
  border-color: rgba(27, 42, 74, 0.18) !important;
}

/* 2. Dark Luxury Card (For Deep Royal Navy Sections) */
.zak-glass-dark {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
  border-radius: var(--zak-radius-card) !important;
  color: #FFFFFF !important;
  padding: 32px !important;
  transition: var(--transition-smooth);
}

.zak-glass-dark:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--zak-amber-cta) !important;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35) !important;
  transform: translateY(-4px);
}

/* 3. Glassmorphic Badges & Pill Tags */
.zak-glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(217, 119, 36, 0.12) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(217, 119, 36, 0.35) !important;
  border-radius: var(--zak-radius-pill) !important;
  color: var(--zak-amber-cta) !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.zak-glass-pill-dark {
  background: rgba(255, 255, 255, 0.10) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #FFFFFF !important;
}

/* 4. Frosted Glass Header Integration (Fallback) */
.zak-glass-nav,
header#main-header.zak-glass-nav {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27, 42, 74, 0.08) !important;
  box-shadow: 0 4px 20px rgba(27, 42, 74, 0.04) !important;
}

/* Graceful Fallback for older browsers lacking backdrop-filter */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .zak-glass-card {
    background: #FFFFFF !important;
  }
  .zak-glass-dark {
    background: #1B2A4A !important;
  }
}


/* ==========================================================================
   CONSOLIDATED: zak-international-theme/assets/css/ambient-backgrounds.css
   ========================================================================== */

/**
 * Zak International — Dynamic Ambient Backgrounds
 * British Heritage Royal Palette (Royal Navy, English Amber, Warm Stone)
 */

/* 1. Primary Warm Stone Canvas with Soft Ambient Lighting */
.zak-ambient-canvas {
  background-color: var(--zak-surface-stone) !important;
  background-image: 
    radial-gradient(at 15% 15%, rgba(27, 42, 74, 0.03) 0px, transparent 55%),
    radial-gradient(at 85% 25%, rgba(217, 119, 36, 0.03) 0px, transparent 50%),
    radial-gradient(at 50% 80%, rgba(27, 42, 74, 0.02) 0px, transparent 60%);
  position: relative;
}

/* 2. Deep Royal Navy Contrast Section with Dynamic Amber Glow */
.zak-bg-navy,
.zak-bg-teal {
  background-color: var(--zak-navy-primary) !important;
  background-image: 
    radial-gradient(at 80% 10%, rgba(217, 119, 36, 0.12) 0px, transparent 50%),
    radial-gradient(at 20% 90%, rgba(255, 255, 255, 0.04) 0px, transparent 55%),
    radial-gradient(at 50% 50%, rgba(15, 23, 42, 0.95) 0px, transparent 100%);
  color: var(--zak-text-white) !important;
  position: relative;
  overflow: hidden;
}

/* Subtle Geometric Linework Texture (3% Opacity SVG overlay) */
.zak-bg-navy::before,
.zak-bg-teal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.8;
}

/* 3. Hero Atmospheric Mesh with Ambient Light Animation */
.zak-hero-mesh {
  background: linear-gradient(135deg, #1B2A4A 0%, #152238 60%, #0F172A 100%) !important;
  position: relative;
  overflow: hidden;
}

.zak-hero-mesh::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(217, 119, 36, 0.15) 0%, rgba(27, 42, 74, 0.12) 45%, transparent 70%);
  filter: blur(80px);
  animation: zakFloatGlow 14s infinite alternate ease-in-out;
  pointer-events: none;
}

.zak-hero-mesh::before {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  filter: blur(90px);
  animation: zakFloatGlow 18s infinite alternate-reverse ease-in-out;
  pointer-events: none;
}

@keyframes zakFloatGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 40px) scale(1.08);
  }
  100% {
    transform: translate(40px, -20px) scale(0.95);
  }
}

/* 4. Section Divider & Smooth Wave Transitions */
.zak-section-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}


/* ==========================================================================
   CONSOLIDATED: zak-international-theme/assets/css/components.css
   ========================================================================== */

/**
 * Zak International — Agency-Grade Components, Hero, Header, Footer & Forms
 *
 * Designed to Albion Pet Foods & Flatrover Agency Standards
 */

/* ==========================================================================
   0. Divi Parent Overrides (Hide Default Divi Header & Footer)
   ========================================================================== */

#main-header,
#top-header,
#main-footer,
.et-fixed-header {
  display: none !important;
}

#page-container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ==========================================================================
   1. Buttons & Action Links
   ========================================================================== */


.zak-btn-primary,
.zak-btn-amber-pill,
.et_pb_button.zak-btn-primary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--zak-amber-cta) !important;
  color: #FFFFFF !important;
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.01em;
  padding: 13px 26px !important;
  border-radius: var(--zak-radius-pill) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: var(--zak-shadow-amber) !important;
  text-decoration: none !important;
  transition: var(--transition-smooth) !important;
  cursor: pointer;
}

.zak-btn-primary:hover,
.zak-btn-amber-pill:hover,
.et_pb_button.zak-btn-primary:hover {
  background-color: var(--zak-amber-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(217, 119, 36, 0.38) !important;
}

.zak-btn-secondary,
.zak-btn-navy-pill,
.et_pb_button.zak-btn-secondary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--zak-navy-primary) !important;
  color: #FFFFFF !important;
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  padding: 13px 26px !important;
  border-radius: var(--zak-radius-pill) !important;
  border: 1px solid transparent !important;
  box-shadow: 0 4px 15px rgba(27, 42, 74, 0.15) !important;
  text-decoration: none !important;
  transition: var(--transition-smooth) !important;
  cursor: pointer;
}

.zak-btn-secondary:hover,
.zak-btn-navy-pill:hover,
.et_pb_button.zak-btn-secondary:hover {
  background: var(--zak-navy-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 42, 74, 0.25) !important;
}

.zak-btn-outline {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent !important;
  color: var(--zak-navy-primary) !important;
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  padding: 12px 24px !important;
  border-radius: var(--zak-radius-pill) !important;
  border: 1.5px solid var(--zak-border-card) !important;
  text-decoration: none !important;
  transition: var(--transition-fast) !important;
}

.zak-btn-outline:hover {
  border-color: var(--zak-navy-primary) !important;
  background: var(--zak-navy-soft) !important;
}

/* WhatsApp Direct Button */
.zak-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%) !important;
  color: #FFFFFF !important;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--zak-radius-sm);
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.22);
  transition: var(--transition-smooth);
}

.zak-btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ae06d 0%, #20b859 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  color: #FFFFFF !important;
}

/* ==========================================================================
   2. Standardized Agency B2B Product Cards (Strict 32px Padding & Height Equalization)
   ========================================================================== */

/* Ensure Divi Columns & Rows Stretch to Equal Height */
.et_pb_row:has(.zak-product-card),
.et_pb_row:has(.zak-product-title) {
  display: flex !important;
  flex-wrap: wrap !important;
}

.et_pb_row:has(.zak-product-card) > .et_pb_column,
.et_pb_row:has(.zak-product-title) > .et_pb_column {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
}

.et_pb_row:has(.zak-product-card) .et_pb_module,
.et_pb_row:has(.zak-product-card) .et_pb_text {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.zak-product-card {
  position: relative;
  background: var(--zak-surface-white);
  border: 1px solid var(--zak-border-subtle);
  border-radius: var(--zak-radius-card);
  padding: var(--zak-space-lg) !important; /* Strictly 32px padding */
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  box-shadow: var(--zak-shadow-card);
  box-sizing: border-box;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.zak-product-card:hover {
  transform: translateY(-6px) perspective(1200px) rotateX(2deg);
  border-color: rgba(27, 42, 74, 0.18);
  box-shadow: 0 20px 45px rgba(27, 42, 74, 0.10);
}

.zak-product-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--zak-radius-md);
  background-color: var(--zak-surface-stone);
  margin-bottom: 22px;
  position: relative;
}

.zak-product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.zak-product-card:hover .zak-product-image-wrap img {
  transform: scale(1.05);
}

.zak-product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--zak-navy-primary);
  border: 1px solid var(--zak-border-subtle);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--zak-radius-pill);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transform: translateZ(16px);
  transition: transform 0.35s ease;
}

.zak-product-card:hover .zak-product-badge {
  transform: translateZ(24px);
}

.zak-product-title {
  font-family: var(--font-sans) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--zak-navy-primary) !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.35;
}

.zak-product-specs {
  font-size: 0.88rem;
  color: var(--zak-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1 1 auto !important;
}

.zak-product-specs p {
  margin: 0 0 8px 0;
}

.zak-product-specs strong {
  color: var(--zak-text-main);
  font-weight: 600;
}

.zak-product-card .zak-btn-whatsapp,
.zak-product-card .zak-btn-primary,
.zak-product-card .zak-btn-secondary {
  margin-top: auto !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* ==========================================================================
   3. Flatrover Reference Hero Components
   ========================================================================== */

.zak-hero-flatrover {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF9F6 100%);
  padding: 130px 20px 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Social Proof Capsule */
.zak-social-proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid var(--zak-border-subtle);
  padding: 6px 18px;
  border-radius: var(--zak-radius-pill);
  box-shadow: 0 4px 12px rgba(27, 42, 74, 0.04);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--zak-navy-primary);
  margin-bottom: 24px;
}

.zak-avatar-stack {
  display: inline-flex;
  align-items: center;
}

.zak-avatar-stack span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  background: var(--zak-surface-stone);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--zak-navy-primary);
  margin-left: -6px;
}

.zak-avatar-stack span:first-child {
  margin-left: 0;
}

.zak-hero-h1 {
  font-family: var(--font-serif) !important;
  font-size: 54px !important;
  color: var(--zak-navy-primary) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  max-width: 900px;
  margin: 0 auto 18px auto !important;
  font-weight: 700 !important;
}

.zak-hero-sub {
  font-family: var(--font-sans);
  font-size: 1.12rem;
  color: var(--zak-text-muted);
  max-width: 680px;
  margin: 0 auto 32px auto;
  line-height: 1.7;
}

.zak-hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Center Stage Visual with Flanking Badges */
.zak-hero-stage {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  min-height: 480px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.zak-hero-dog-wrap {
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.zak-hero-dog-wrap img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, black 72%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 72%, transparent 100%);
}

/* Left Floating Pill Badges */
.zak-hero-float-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid var(--zak-border-subtle);
  border-radius: var(--zak-radius-pill);
  padding: 10px 18px;
  box-shadow: 0 10px 25px rgba(27, 42, 74, 0.08);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--zak-navy-primary);
  animation: zakFloat 4s ease-in-out infinite;
}

.zak-hero-float-badge--1 {
  top: 15%;
  left: 6%;
  animation-delay: 0s;
}

.zak-hero-float-badge--2 {
  top: 42%;
  left: 2%;
  animation-delay: 1.2s;
}

.zak-hero-float-badge--3 {
  top: 70%;
  left: 7%;
  animation-delay: 2.4s;
}

/* Right Tilted Stat Cards */
.zak-hero-tilted-card {
  position: absolute;
  z-index: 3;
  background: #FFFFFF;
  border: 1px solid var(--zak-border-subtle);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 16px 36px rgba(27, 42, 74, 0.09);
  text-align: left;
  transition: transform 0.3s ease;
}

.zak-hero-tilted-card--1 {
  top: 22%;
  right: 6%;
  transform: rotate(-5deg);
}

.zak-hero-tilted-card--2 {
  top: 55%;
  right: 4%;
  transform: rotate(4deg);
}

.zak-hero-tilted-card:hover {
  transform: translateY(-4px) rotate(0deg);
}

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

/* ==========================================================================
   4. Floating Pill Header Capsule
   ========================================================================== */

.zak-floating-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 99999;
  margin: 0 auto;
  max-width: 1200px;
  width: calc(100% - 36px);
  transition: all 0.3s ease;
}

.zak-header-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(27, 42, 74, 0.08);
  border-radius: var(--zak-radius-pill);
  padding: 8px 22px;
  box-shadow: 0 10px 30px rgba(27, 42, 74, 0.06);
}

.zak-header-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.zak-header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.zak-nav-link {
  color: var(--zak-text-main);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--zak-radius-pill);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.zak-nav-link:hover {
  color: var(--zak-navy-primary);
  background: var(--zak-navy-soft);
}

/* Products Dropdown */
.zak-nav-dropdown {
  position: relative;
}

.zak-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #FFFFFF;
  border: 1px solid var(--zak-border-subtle);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(27, 42, 74, 0.12);
  padding: 12px;
  min-width: 250px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 1000;
}

.zak-nav-dropdown:hover .zak-dropdown-menu {
  display: flex;
}

.zak-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--zak-navy-primary);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.zak-dropdown-item:hover {
  background: var(--zak-surface-stone);
  color: var(--zak-amber-cta);
  padding-left: 18px;
}

/* ==========================================================================
   5. Albion-Style 4-Column Global Footer
   ========================================================================== */

.zak-global-footer {
  background-color: var(--zak-navy-dark);
  color: #E2E8F0;
  font-family: var(--font-sans);
  margin-top: 60px;
}

/* Catalog Strip */
.zak-footer-catalog-strip {
  background-color: var(--zak-navy-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 20px;
}

.zak-footer-catalog-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.zak-footer-catalog-text h3 {
  color: #FFFFFF !important;
  font-family: var(--font-serif) !important;
  font-size: 1.6rem !important;
  margin: 0 0 6px 0 !important;
}

.zak-footer-catalog-text p {
  color: #94A3B8;
  font-size: 0.92rem;
  margin: 0;
}

.zak-footer-catalog-form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  width: 100%;
}

.zak-footer-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--zak-radius-pill);
  padding: 12px 20px;
  color: #FFFFFF;
  font-size: 0.9rem;
  outline: none;
}

.zak-footer-input:focus {
  border-color: var(--zak-amber-cta);
  background: rgba(255, 255, 255, 0.12);
}

.zak-footer-submit {
  background: var(--zak-amber-cta);
  color: #FFFFFF;
  border: none;
  border-radius: var(--zak-radius-pill);
  padding: 12px 24px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.zak-footer-submit:hover {
  background: var(--zak-amber-hover);
}

/* Main 4-Column Grid */
.zak-footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px 50px 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.zak-footer-col h4 {
  color: #FFFFFF !important;
  font-family: var(--font-sans) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 20px 0 !important;
}

.zak-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zak-footer-col li {
  margin-bottom: 12px;
}

.zak-footer-col a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.zak-footer-col a:hover {
  color: var(--zak-amber-cta);
  padding-left: 4px;
}

.zak-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 20px;
  font-size: 0.85rem;
  color: #64748B;
}

.zak-footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* ==========================================================================
   6. Executive RFQ Form Inputs
   ========================================================================== */

.zak-form-glass {
  background: #FFFFFF;
  border: 1px solid var(--zak-border-card);
  border-radius: var(--zak-radius-card);
  padding: 40px;
  box-shadow: var(--zak-shadow-card);
}

.zak-form-group {
  margin-bottom: 22px;
}

.zak-form-label,
.zak-form-glass label {
  display: block !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
  color: #1B2A4A !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.zak-form-input,
.zak-form-select,
.zak-form-textarea {
  width: 100% !important;
  padding: 13px 18px !important;
  background: #FFFFFF !important;
  border: 1.5px solid #CBD5E1 !important;
  border-radius: var(--zak-radius-sm) !important;
  color: #1B2A4A !important;
  font-family: var(--font-sans) !important;
  font-size: 0.95rem !important;
  transition: var(--transition-fast) !important;
  box-sizing: border-box !important;
}

.zak-form-input:focus,
.zak-form-select:focus,
.zak-form-textarea:focus {
  outline: none !important;
  border-color: #1B2A4A !important;
  box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.12) !important;
}

/* ==========================================================================
   7. Minimalist Circular WhatsApp Floating Action Button
   ========================================================================== */

.zak-whatsapp-floater {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 99999 !important;
  line-height: 0 !important;
}

.zak-floater-button--icon-only {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%) !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.38), 0 2px 6px rgba(0,0,0,0.12) !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
}

.zak-floater-button--icon-only:hover {
  transform: scale(1.08) translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.50) !important;
}

/* ==========================================================================
   8. Inter-Category Cross-Navigation Grid
   ========================================================================== */

.zak-inter-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.zak-inter-cat-card {
  background: #FFFFFF;
  border: 1px solid rgba(27, 42, 74, 0.08);
  border-radius: 16px;
  padding: 20px;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(27, 42, 74, 0.03);
}

.zak-inter-cat-card:hover {
  transform: translateY(-4px);
  border-color: #D97724;
  box-shadow: 0 12px 30px rgba(27, 42, 74, 0.08);
}

.zak-inter-cat-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.zak-inter-cat-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: #1B2A4A;
  margin: 0 0 6px 0;
}

.zak-inter-cat-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #D97724;
}

/* ==========================================================================
   9. Interactive Material & Spec Switcher Tabs
   ========================================================================== */

.zak-spec-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.zak-spec-tab-btn {
  background: #FFFFFF;
  border: 1.5px solid rgba(27, 42, 74, 0.12);
  color: #1B2A4A;
  padding: 10px 22px;
  border-radius: var(--zak-radius-pill);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.zak-spec-tab-btn.is-active,
.zak-spec-tab-btn:hover {
  background: #1B2A4A;
  color: #FFFFFF;
  border-color: #1B2A4A;
}

.zak-spec-tab-panel {
  display: none;
}

.zak-spec-tab-panel.is-active {
  display: block;
}

/* ==========================================================================
   10. Mobile Responsiveness & iOS Auto-Zoom Prevention
   ========================================================================== */

@media (max-width: 980px) {
  .zak-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .zak-hero-h1 {
    font-size: 38px !important;
  }
  .zak-hero-float-badge {
    position: static;
    margin: 6px auto;
    display: table;
    animation: none;
  }
  .zak-hero-tilted-card {
    position: static;
    margin: 12px auto;
    transform: none;
    max-width: 320px;
  }
  .zak-hero-stage {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .zak-footer-main {
    grid-template-columns: 1fr;
  }
  .zak-header-nav {
    display: none !important;
  }
  .zak-hero-flatrover {
    padding: 100px 15px 50px 15px;
  }
  .zak-product-card {
    padding: 22px !important;
  }
  .zak-form-glass {
    padding: 24px !important;
  }
  .zak-form-input,
  .zak-form-select,
  .zak-form-textarea {
    font-size: 16px !important; /* Prevents iOS Safari auto-zoom */
  }
  .zak-whatsapp-floater {
    bottom: 18px !important;
    right: 18px !important;
  }
}

