/* MD Agro Global Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700&family=Albert+Sans:wght@300;400;500;600;700&family=Barlow:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary-gold: #45750F;
  /* Signature Brand Green */
  --primary-gold-hover: #375C0C;
  --accent-gold: #45750F;
  /* Vibrant CTA Green */
  --primary-dark: #111111;
  --primary-dark-hover: #1E1E1E;
  --accent-green: #45750F;
  /* Green brand accent */
  --accent-red: #45750F;
  --text-dark: #1F2937;
  --text-muted: #6B7280;
  --bg-light: #FFFFFF;
  --bg-white: #FFFFFF;
  --border-color: #E5E7EB;
  --border-color-dark: #374151;

  --font-lato: 'Lato', sans-serif;
  --font-barlow: 'Lato', sans-serif;
  --font-albert: 'Lato', sans-serif;

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-premium: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Global Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-albert);
  color: var(--text-dark);
  background-color: var(--bg-light);
  min-height: 100vh;
  position: relative;
  line-height: 1.5;
  padding-top: 92px !important;
}

@media (max-width: 1023px) {
  body {
    padding-top: 56px !important;
  }
}

/* Fixed Sticky Header Wrapper */
.header-sticky-wrapper {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 10000 !important;
  background-color: transparent !important;
  box-shadow: none !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease !important;
}

.header-sticky-wrapper.scrolled {
  background-color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-barlow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button,
input,
select,
textarea {
  font-family: inherit;
  outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: #D1D5DB;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #9CA3AF;
}

/* Common Padding */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 4rem;
  }
}

/* Top Announcement Bar */
.top-announcement-bar {
  display: none !important;
}

/* --- HEADER SYSTEM --- */
header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  background-color: transparent;
  color: var(--primary-dark);
}

/* Navigation layout classes */
header.header-light {
  background-color: transparent;
  border-bottom: none;
  box-shadow: none;
  color: var(--primary-dark);
}

header.header-transparent {
  background-color: transparent;
  color: var(--primary-dark);
}

/* Default styling for headers overlaying a hero banner (when not scrolled) */
header.header-over-hero:not(.header-scrolled) {
  color: var(--primary-dark);
}

header.header-over-hero:not(.header-scrolled) .nav-links a {
  color: var(--primary-dark);
}

header.header-over-hero:not(.header-scrolled) .menu-btn {
  color: var(--primary-dark);
}

header.header-over-hero:not(.header-scrolled) .cart-pill {
  background-color: rgba(17, 17, 17, 0.05);
  border: 1px solid rgba(17, 17, 17, 0.1);
  color: var(--primary-dark);
}

header.header-over-hero:not(.header-scrolled) .cart-pill:hover {
  background-color: rgba(17, 17, 17, 0.1);
}

header.header-over-hero:not(.header-scrolled) .phone-pill {
  background-color: rgba(45, 92, 0, 0.08);
  border: 1px solid rgba(45, 92, 0, 0.15);
  color: var(--accent-green);
}

header.header-over-hero:not(.header-scrolled) .phone-pill:hover {
  background-color: rgba(45, 92, 0, 0.12);
}

header.header-over-hero:not(.header-scrolled) .phone-pill .phone-rate {
  color: var(--text-muted);
}

header.header-over-hero:not(.header-scrolled) .contact-pill {
  background-color: var(--primary-dark);
  color: var(--bg-white);
}

header.header-over-hero:not(.header-scrolled) .contact-pill:hover {
  background-color: var(--primary-gold);
  color: var(--bg-white);
}

/* Scrolled state — add subtle white bg for readability */
header.header-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
  color: var(--primary-dark) !important;
}

header.header-scrolled .nav-links a {
  color: var(--primary-dark) !important;
}

header.header-scrolled .menu-btn {
  color: var(--primary-dark) !important;
}

header.header-scrolled .cart-pill {
  background-color: rgba(17, 17, 17, 0.05) !important;
  border: 1px solid rgba(17, 17, 17, 0.1) !important;
  color: var(--primary-dark) !important;
}

header.header-scrolled .cart-pill:hover {
  background-color: rgba(17, 17, 17, 0.1) !important;
}

header.header-scrolled .phone-pill {
  background-color: rgba(45, 92, 0, 0.08) !important;
  border: 1px solid rgba(45, 92, 0, 0.15) !important;
  color: var(--accent-green) !important;
}

header.header-scrolled .phone-pill:hover {
  background-color: rgba(45, 92, 0, 0.12) !important;
}

header.header-scrolled .phone-pill .phone-rate {
  color: var(--text-muted) !important;
}

header.header-scrolled .contact-pill {
  background-color: var(--primary-dark) !important;
  color: var(--bg-white) !important;
}

header.header-scrolled .contact-pill:hover {
  background-color: var(--primary-gold) !important;
  color: var(--primary-dark) !important;
}

/* --- BULLETPROOF MOBILE & TABLET NAVBAR (< 1024px) --- */
@media (max-width: 1023px) {

  /* Header container */
  header,
  header.header-transparent,
  header.header-light,
  header.header-over-hero {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
    background-color: #ffffff !important;
    color: var(--primary-dark) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06) !important;
    border-bottom: 1px solid var(--border-color) !important;
    z-index: 10000 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 1rem !important;
    width: 100% !important;
    height: 56px !important;
    max-height: 56px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  /* Force hide all desktop elements on mobile */
  nav.nav-links,
  .nav-links,
  .nav-search-wrap,
  #nav-search-wrap,
  .contact-pill,
  .mega-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  /* Left Logo */
  .logo {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .logo img {
    height: 36px !important;
    max-height: 36px !important;
    width: auto !important;
    max-width: 160px !important;
    object-fit: contain !important;
    display: block !important;
  }

  /* Right Action Buttons Group */
  .header-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-shrink: 0 !important;
    gap: 0.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Quick Call Button */
  .phone-pill {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    padding: 0 !important;
    border-radius: 8px !important;
    background: rgba(69, 117, 15, 0.08) !important;
    border: 1px solid rgba(69, 117, 15, 0.2) !important;
    color: #45750F !important;
    flex-shrink: 0 !important;
    text-decoration: none !important;
  }

  .phone-pill-text,
  .phone-pill span,
  .phone-pill div {
    display: none !important;
  }

  .phone-pill i,
  .phone-pill svg {
    display: block !important;
    width: 18px !important;
    height: 18px !important;
  }

  /* Hamburger Menu Toggle Button */
  .menu-btn,
  #mobile-menu-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    padding: 0 !important;
    border-radius: 8px !important;
    background: #45750F !important;
    border: none !important;
    color: #ffffff !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 6px rgba(69, 117, 15, 0.3) !important;
  }

  .menu-btn i,
  .menu-btn svg {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    color: #ffffff !important;
    stroke: #ffffff !important;
  }
}






.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .nav-container {
    padding: 1.5rem 4rem;
  }
}

/* --- NAVBAR INLINE SEARCH --- */
.nav-search-wrap {
  display: none;
  flex: 1;
  max-width: 380px;
  margin: 0 1.5rem;
  position: relative;
}

@media (min-width: 1024px) {
  .nav-search-wrap {
    display: block;
  }
}

.nav-search-input-row {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 9999px;
  padding: 0 0.9rem;
  gap: 0.4rem;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(4px);
}

.nav-search-input-row:focus-within {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(69, 117, 15, 0.15);
}

/* When header is light (inner pages), adapt colors */
.header-light .nav-search-input-row {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.15);
}

.header-light .nav-search-input-row:focus-within {
  background: #fff;
  border-color: var(--primary-gold);
}

.nav-search-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.nav-search-input-row:focus-within .nav-search-icon {
  color: var(--primary-gold);
}

.header-light .nav-search-icon {
  color: #666;
}

.nav-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-albert);
  font-size: 0.85rem;
  color: #fff;
  padding: 0.55rem 0;
  min-width: 0;
}

.nav-search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.nav-search-input-row:focus-within .nav-search-input {
  color: var(--text-dark);
}

.nav-search-input-row:focus-within .nav-search-input::placeholder {
  color: #aaa;
}

.header-light .nav-search-input {
  color: var(--text-dark);
}

.header-light .nav-search-input::placeholder {
  color: #999;
}

.nav-search-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
  transition: background 0.15s;
}

.nav-search-clear:hover {
  background: rgba(255, 255, 255, 0.35);
}

.nav-search-input-row:focus-within .nav-search-clear {
  background: #e5e7eb;
  color: #555;
}

/* --- Dropdown --- */
.nav-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid rgba(69, 117, 15, 0.15);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  z-index: 9999;
  animation: searchDropIn 0.18s ease;
}

@keyframes searchDropIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    margin-left: 3rem !important;
    margin-right: auto !important;
    pointer-events: auto !important;
  }

  .nav-search-wrap {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    pointer-events: auto !important;
  }
}


.nav-links a {
  font-family: var(--font-barlow);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 4px;
  color: var(--primary-dark);
  /* always black on transparent navbar */
}

.chevron-down {
  font-size: 0.65rem;
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
  display: inline-block;
  vertical-align: middle;
}

.mega-menu {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background-color: var(--bg-white);
  border-top: 0px solid var(--primary-gold);
  box-shadow: none;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    border-top-width 0.3s ease,
    box-shadow 0.3s ease,
    padding 0.35s ease;
  z-index: 999;
  padding: 0 4rem;
  text-align: left;
}

.mega-menu.active {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
  border-top: 3px solid var(--primary-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  padding: 2.5rem 4rem;
}

.mega-menu-col-categories {
  width: 25%;
  border-right: 1.5px solid var(--border-color);
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mega-menu-col-subcategories {
  width: 30%;
  border-right: 1.5px solid var(--border-color);
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mega-menu-col-products {
  width: 45%;
  padding-left: 3rem;
}

.mega-category-item {
  font-family: var(--font-barlow);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #D1D5DB;
  /* Muted default */
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-category-item.active,
.mega-category-item:hover {
  color: var(--primary-dark);
}

.mega-subcategory-item {
  font-family: var(--font-barlow);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0;
}

.mega-subcategory-item.active,
.mega-subcategory-item:hover {
  color: var(--accent-green);
  padding-left: 0.5rem;
}

.mega-products-title {
  font-family: var(--font-barlow);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.mega-products-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.mega-products-list li {
  position: relative;
  padding-left: 1.25rem;
  text-align: left;
}

.mega-products-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-size: 1.2rem;
  line-height: 1;
  top: 0.15rem;
}

.mega-product-link {
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
  font-weight: 600;
  line-height: 1.4;
  display: inline-block;
  text-align: left;
}

.mega-product-link:hover {
  color: var(--accent-green);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: var(--transition-smooth);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

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

.cart-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.header-transparent .cart-pill {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--bg-white);
}

.header-transparent .cart-pill:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.header-light .cart-pill {
  background-color: rgba(17, 17, 17, 0.05);
  border: 1px solid rgba(17, 17, 17, 0.1);
  color: var(--primary-dark);
}

.header-light .cart-pill:hover {
  background-color: rgba(17, 17, 17, 0.1);
}

.phone-pill {
  display: none;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1.6rem;
  border-radius: 9999px;
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  min-width: 185px;
}

.phone-rate {
  font-size: 0.82rem;
  font-weight: 700;
  display: block;
  letter-spacing: 0.4px;
}

.header-transparent .phone-pill {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--bg-white);
}

.header-transparent .phone-pill:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.header-transparent .phone-pill .phone-rate {
  color: #D1D5DB;
}

.header-light .phone-pill {
  background-color: rgba(45, 92, 0, 0.08);
  border: 1px solid rgba(45, 92, 0, 0.15);
  color: var(--accent-green);
}

.header-light .phone-pill:hover {
  background-color: rgba(45, 92, 0, 0.12);
}

.header-light .phone-pill .phone-rate {
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .phone-pill {
    display: flex;
  }
}

.cart-count {
  background-color: var(--primary-gold);
  color: var(--bg-white);
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.contact-pill {
  display: none;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-family: var(--font-barlow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

@media (min-width: 640px) {
  .contact-pill {
    display: flex;
  }
}

.header-transparent .contact-pill {
  background-color: var(--bg-white);
  color: var(--primary-dark);
}

.header-transparent .contact-pill:hover {
  background-color: var(--primary-gold);
}

.header-light .contact-pill {
  background-color: var(--primary-dark);
  color: var(--bg-white);
}

.header-light .contact-pill:hover {
  background-color: var(--primary-gold);
  color: var(--primary-dark);
}

.menu-btn {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  transition: all 0.2s ease;
  outline: none;
}

.menu-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}

.header-transparent .menu-btn {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.header-transparent .menu-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

@media (min-width: 1024px) {
  .menu-btn {
    display: none;
  }
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 290px;
  max-width: 82vw;
  height: 100vh;
  background-color: #ffffff;
  color: var(--text-dark);
  z-index: 10002;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.25rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-nav-links a {
  font-family: var(--font-barlow);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background-color: rgba(69, 117, 15, 0.08);
  color: var(--accent-green);
}

/* Semi-transparent Backdrop for Drawer */
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 10000;
  transition: opacity 0.3s ease;
  display: block;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}


/* Hide mobile hamburger drawer & floating menu buttons on desktop view */
@media (min-width: 993px) {

  .mobile-nav,
  .drawer-backdrop,
  .mobile-drawer-overlay,
  .floating-menu-btn,
  #floating-menu-btn,
  .menu-btn,
  #mobile-menu-btn,
  .md-agro-hamburger-btn {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.mobile-nav-links a {
  font-family: var(--font-barlow);
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Search Dropdown Panel */
.search-drawer {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  background-color: var(--primary-dark);
  padding: 1.5rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-lg);
  display: flex;
  justify-content: center;
  z-index: 45;
}

.search-drawer.active {
  top: 100%;
}

.search-inner {
  width: 100%;
  max-width: 600px;
  position: relative;
  display: flex;
  gap: 0.5rem;
}

.search-inner input {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border-color-dark);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
  font-size: 1rem;
}

.search-inner input::placeholder {
  color: #9CA3AF;
}

.search-close {
  background: transparent;
  border: none;
  color: var(--bg-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.search-results-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  border-radius: 8px;
  margin-top: 0.5rem;
  box-shadow: var(--shadow-lg);
  max-height: 300px;
  overflow-y: auto;
  z-index: 100;
  display: none;
}

.search-results-panel.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--primary-dark);
}

.search-result-item:hover {
  background-color: var(--bg-light);
}

.search-result-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* --- HERO BANNER --- */
.hero {
  position: relative;
  min-h: 100vh;
  height: 100vh;
  overflow: hidden;
  background-color: var(--primary-dark);
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--bg-white);
  max-width: 900px;
  padding-top: 5rem;
}

.hero-heading {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--bg-white);
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 4rem;
  }
}

.hero-desc {
  font-size: 1.1rem;
  font-weight: 500;
  color: #E5E7EB;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.5rem;
  }
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-gold);
  color: var(--primary-dark);
  font-family: var(--font-barlow);
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-size: 1rem;
  letter-spacing: 1px;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background-color: var(--primary-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.slider-dots {
  position: absolute;
  bottom: 3rem;
  right: 1.5rem;
  display: flex;
  gap: 0.75rem;
  z-index: 15;
}

@media (min-width: 768px) {
  .slider-dots {
    right: 4rem;
  }
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background-color: var(--primary-gold);
  transform: scale(1.2);
}

/* --- STATS SECTION --- */
.stats-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: center;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item h3 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-item p {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- ABOUT SUMMARY SECTION --- */
.about-summary {
  padding: 6rem 1.5rem;
  background: var(--bg-white);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.about-summary::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(45, 92, 0, 0.15);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
}

.about-summary::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(45, 92, 0, 0.15);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
}

.about-summary-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-summary-wrapper {
    grid-template-columns: 1.25fr 1fr;
    gap: 4rem;
  }
}

.about-summary-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.about-summary-badge {
  font-family: var(--font-albert);
  font-size: 0.85rem;
  font-weight: 700;
  color: #84CC16;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-summary h2 {
  font-family: var(--font-barlow);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
  color: var(--primary-dark);
}

@media (min-width: 768px) {
  .about-summary h2 {
    font-size: 3rem;
  }
}

.about-summary-highlight {
  color: var(--accent-green);
  -webkit-text-stroke: none;
  text-shadow: none;
}

.about-summary p {
  font-family: var(--font-albert);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.about-summary-btn-container {
  margin-top: 0.5rem;
}

.about-summary-image-block {
  position: relative;
}

.about-summary-image-border-top {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 50px;
  height: 50px;
  border-top: 4px solid var(--primary-gold);
  border-left: 4px solid var(--primary-gold);
  pointer-events: none;
  z-index: 2;
}

.about-summary-image-border-bottom {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 50px;
  height: 50px;
  border-bottom: 4px solid var(--primary-gold);
  border-right: 4px solid var(--primary-gold);
  pointer-events: none;
  z-index: 2;
}

.about-summary-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  aspect-ratio: 4/3;
}

.about-summary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-summary-image-card:hover .about-summary-img {
  transform: scale(1.05);
}

.about-summary-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 2rem 1.5rem;
  text-align: left;
  pointer-events: none;
}

.about-summary-image-overlay h4 {
  font-family: var(--font-barlow);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
}

.about-summary-image-overlay p {
  font-family: var(--font-albert);
  font-size: 0.85rem;
  color: #D1D5DB;
  margin: 0.25rem 0 0 0;
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
  font-family: var(--font-barlow);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: var(--bg-white);
  color: var(--primary-dark);
}

/* --- SOLUTIONS SECTION --- */
.solutions {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 4rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-gold);
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.solution-img {
  height: 240px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.solution-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.solution-card:hover .solution-img img {
  transform: scale(1.05);
}

.solution-info {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution-info h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.solution-info p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.btn-card {
  font-family: var(--font-barlow);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-card svg {
  transition: var(--transition-smooth);
}

.btn-card:hover svg {
  transform: translateX(5px);
}

/* --- STRENGTHS SECTION --- */
.strengths {
  padding: 6rem 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
}

.strengths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .strengths-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.strength-card {
  padding: 2.5rem;
  border-radius: 12px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.strength-card:hover {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-gold);
}

.strength-icon {
  background-color: rgba(241, 184, 26, 0.1);
  color: var(--primary-dark);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strength-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.strength-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* --- SUSTAINABILITY SECTION --- */
.sustainability {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.tabs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.tab-btn {
  font-family: var(--font-barlow);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.tab-btn.active {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  border-color: var(--primary-dark);
}

.tab-content {
  background-color: var(--bg-white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: none;
}

.tab-content.active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .tab-content.active {
    grid-template-columns: 1.2fr 1fr;
  }
}

.tab-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.tab-info p {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.tab-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

/* --- RESEARCH SLIDER --- */
.research {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.research-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.research-slider {
  display: flex;
  gap: 2rem;
  transition: var(--transition-smooth);
}

.research-card {
  min-width: 100%;
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
}

@media (min-width: 768px) {
  .research-card {
    min-width: calc(50% - 1rem);
  }
}

.research-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.research-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- BLOGS SECTION --- */
.blogs {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.blogs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .blogs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-info {
  padding: 2rem;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  color: var(--primary-dark);
}

.blog-link {
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.blog-link:hover {
  color: var(--primary-gold);
}

/* --- DEALER NETWORK CALLOUT --- */
.dealer-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e293b 100%);
  color: var(--bg-white);
  padding: 6rem 0;
}

.dealer-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.dealer-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.dealer-cta p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #D1D5DB;
  margin-bottom: 3rem;
}

/* --- BREADCRUMB --- */
.breadcrumb-container {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary-dark);
}

.breadcrumb-separator {
  color: var(--border-color);
}

.breadcrumb-current {
  color: var(--primary-dark);
  font-weight: 500;
}

/* --- ABOUT PAGE SPECIFICS --- */
.about-hero {
  padding: 6rem 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

.about-hero h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .about-hero-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.about-hero-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.about-hero-sidebar {
  border-left: 4px solid var(--primary-gold);
  padding-left: 2rem;
}

.about-hero-sidebar h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.about-hero-sidebar p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.value-card:hover {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Chairman Message */
.chairman-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.chairman-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .chairman-grid {
    grid-template-columns: 1fr 1.8fr;
  }
}

.chairman-img-wrapper {
  text-align: center;
}

.chairman-img-wrapper img {
  width: 100%;
  max-width: 250px;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.chairman-name {
  font-family: var(--font-barlow);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.chairman-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.chairman-message blockquote {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 2rem;
}

/* Timeline Milestones */
.milestones-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.timeline-nav {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--border-color);
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .timeline-nav {
    flex-direction: row;
    border-left: none;
    border-bottom: 2px solid var(--border-color);
    justify-content: center;
  }
}

.timeline-nav-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: var(--font-barlow);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  position: relative;
}

@media (min-width: 768px) {
  .timeline-nav-btn {
    text-align: center;
  }
}

.timeline-nav-btn.active {
  color: var(--primary-dark);
}

.timeline-nav-btn::after {
  content: '';
  position: absolute;
  left: -2px;
  bottom: 0;
  width: 2px;
  height: 0;
  background-color: var(--primary-gold);
  transition: var(--transition-smooth);
}

@media (min-width: 768px) {
  .timeline-nav-btn::after {
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
  }
}

.timeline-nav-btn.active::after {
  height: 100%;
}

@media (min-width: 768px) {
  .timeline-nav-btn.active::after {
    width: 100%;
    height: 2px;
  }
}

.timeline-details {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem;
}

.timeline-panel {
  display: none;
}

.timeline-panel.active {
  display: block;
}

.timeline-panel h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.timeline-panel ul {
  list-style: none;
}

.timeline-panel li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.timeline-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-gold);
}

/* Certifications */
.certifications-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.certs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.cert-card {
  background-color: var(--bg-white);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition-smooth);
  width: 100%;
  max-width: 250px;
}

.cert-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-gold);
}

.cert-icon {
  background-color: var(--bg-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-weight: 700;
  color: var(--primary-dark);
  border: 2px solid var(--border-color);
}

.cert-card p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
}

/* --- PRODUCT DIRECTORY PAGE --- */
.product-cat-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .product-cat-layout {
    grid-template-columns: 300px 1fr;
  }
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.chip {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  font-family: var(--font-barlow);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.chip.active {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  border-color: var(--primary-dark);
}

.subcategory-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}

.subcat-chip {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 90px;
  cursor: pointer;
}

.subcat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  font-weight: 600;
}

.subcat-chip:hover .subcat-icon,
.subcat-chip.active .subcat-icon {
  border-color: var(--primary-gold);
  background-color: var(--primary-gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.subcat-chip span {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

/* Sidebar Filters */
.sidebar-filters {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  height: fit-content;
}

.filter-section {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.filter-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.filter-section h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.subcat-checklist {
  max-height: 200px;
  overflow-y: auto;
}

.checkbox-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
}

.checkbox-label input {
  margin-right: 0.75rem;
  width: 16px;
  height: 16px;
  accent-color: var(--primary-gold);
}

.item-count {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.price-inputs input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
}

.btn-filter-apply {
  width: 100%;
  padding: 0.6rem;
  border: none;
  background-color: var(--primary-dark);
  color: var(--bg-white);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  transition: var(--transition-smooth);
}

.btn-filter-apply:hover {
  background-color: var(--primary-gold);
  color: var(--primary-dark);
}

/* Product Grid UI */
.products-display {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.products-count {
  font-weight: 500;
  color: var(--text-muted);
}

.sort-select {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  font-size: 0.9rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-gold);
}

.discount-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
}

.product-card-img {
  height: 220px;
  padding: 0;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.product-card:hover .card-img-overlay {
  opacity: 1;
}

.btn-overlay {
  background-color: var(--bg-white);
  color: var(--primary-dark);
  font-family: var(--font-barlow);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
  border: none;
  cursor: pointer;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.product-card:hover .btn-overlay {
  transform: translateY(0);
}

.btn-overlay:hover {
  background-color: var(--primary-gold);
}

.product-card-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
  line-height: 1.4;
  height: 2.8rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.discount-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.original-mrp {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-label {
  font-size: 0.7rem;
  color: var(--accent-green);
  font-weight: 600;
  text-transform: uppercase;
  margin-left: auto;
}

.product-card-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-card-add {
  flex-grow: 1;
  background-color: var(--primary-dark);
  color: var(--bg-white);
  border: none;
  font-family: var(--font-barlow);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.6rem;
  font-size: 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.btn-card-add:hover {
  background-color: var(--primary-gold);
  color: var(--primary-dark);
}

.btn-card-add.added-state {
  background-color: var(--accent-green);
  color: var(--bg-white);
}

.btn-card-buy {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  border: none;
  font-family: var(--font-barlow);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  flex-grow: 1;
  text-align: center;
  transition: var(--transition-smooth);
}

.btn-card-buy:hover {
  background-color: var(--primary-gold);
  color: #FFFFFF;
}

.btn-card-enquire {
  background-color: transparent;
  color: var(--primary-dark);
  border: 1.5px solid var(--primary-dark);
  font-family: var(--font-barlow);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  flex-grow: 1;
  text-align: center;
  transition: var(--transition-smooth);
}

.btn-card-enquire:hover {
  background-color: var(--primary-dark);
  color: var(--bg-white);
}

/* --- PRODUCT DETAIL SPECIFICS --- */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .product-detail-layout {
    grid-template-columns: 1.1fr 1fr;
  }
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gallery-main {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.gallery-main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gallery-thumbs {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.thumb.active,
.thumb:hover {
  border-color: var(--primary-gold);
}

.thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.disclaimer-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  background-color: rgba(17, 17, 17, 0.02);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid #D1D5DB;
}

/* Detail Info Column */
.detail-info {
  display: flex;
  flex-direction: column;
}

.detail-info h1 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  line-height: 1.2;
}

.detail-price-box {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.detail-mrp-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.detail-mrp-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
}

.detail-tax-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .detail-actions {
    flex-direction: row;
  }
}

.btn-detail-buy {
  flex-grow: 1;
  background-color: var(--primary-gold);
  color: var(--primary-dark);
  font-family: var(--font-barlow);
  font-weight: 700;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transition-smooth);
}

.btn-detail-buy:hover {
  background-color: var(--primary-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-detail-enquire {
  background-color: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
  font-family: var(--font-barlow);
  font-weight: 700;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-detail-enquire:hover {
  background-color: var(--primary-dark);
  color: var(--bg-white);
}

/* Detail Tabs */
.detail-tabs {
  display: flex;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 2rem;
}

.detail-tab-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.75rem 2rem;
  font-family: var(--font-barlow);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  position: relative;
  text-transform: uppercase;
}

.detail-tab-btn.active {
  color: var(--primary-dark);
}

.detail-tab-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--primary-gold);
  transition: var(--transition-smooth);
}

.detail-tab-btn.active::after {
  width: 100%;
}

.detail-tab-panel {
  display: none;
}

.detail-tab-panel.active {
  display: block;
}

.detail-tab-panel.description-panel {
  line-height: 1.8;
  color: var(--text-dark);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-color);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.specs-label {
  font-weight: 600;
  color: var(--primary-dark);
  width: 40%;
}

.specs-value {
  color: var(--text-dark);
}

/* --- CART PAGE SPECIFICS --- */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .cart-layout {
    grid-template-columns: 1.8fr 1fr;
  }
}

.cart-empty-state {
  text-align: center;
  padding: 5rem 2rem;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  max-width: 600px;
  margin: 2rem auto;
}

.cart-empty-state svg {
  margin-bottom: 1.5rem;
  color: #D1D5DB;
}

.cart-empty-state h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.cart-empty-state p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.cart-empty-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cart-empty-actions {
    flex-direction: row;
  }
}

/* Cart Filled State */
.cart-items-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.cart-header-row h1 {
  font-size: 1.8rem;
  color: var(--primary-dark);
}

.btn-clear-cart {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.btn-clear-cart:hover {
  color: var(--accent-red);
}

.cart-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .cart-item {
    flex-direction: row;
    align-items: center;
  }
}

.cart-item-img {
  width: 90px;
  height: 90px;
  background-color: #FAFAFA;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .cart-item-img {
    margin: 0;
  }
}

.cart-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.cart-item-rate {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cart-fulfillment-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

@media (min-width: 640px) {
  .cart-item-controls {
    justify-content: flex-end;
  }
}

.quantity-adjuster {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  overflow: hidden;
  background-color: var(--bg-white);
}

.adjust-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  transition: var(--transition-smooth);
}

.adjust-btn:hover {
  background-color: var(--bg-light);
}

.adjust-qty {
  width: 32px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.cart-item-price-col {
  text-align: right;
  min-width: 100px;
}

.cart-item-total {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.btn-remove-item {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--accent-red);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-remove-item:hover {
  text-decoration: underline;
}

/* Order Summary */
.order-summary-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: fit-content;
}

.order-summary-card h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.summary-row.summary-total {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.btn-checkout {
  width: 100%;
  background-color: var(--primary-dark);
  color: var(--bg-white);
  font-family: var(--font-barlow);
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem;
  font-size: 0.95rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.btn-checkout:hover {
  background-color: var(--primary-gold);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-continue-shopping {
  width: 100%;
  background-color: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
  font-family: var(--font-barlow);
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem;
  font-size: 0.95rem;
  border-radius: 9999px;
  cursor: pointer;
  margin-top: 0.75rem;
  text-align: center;
  display: block;
}

.btn-continue-shopping:hover {
  background-color: var(--primary-dark);
  color: var(--bg-white);
}

/* Guest Card */
.guest-session-card {
  background-color: rgba(241, 184, 26, 0.05);
  border: 1px solid rgba(241, 184, 26, 0.2);
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.guest-info h4 {
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.guest-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn-guest-verify {
  background-color: var(--primary-gold);
  border: none;
  cursor: pointer;
  font-family: var(--font-barlow);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.8rem;
}

.btn-guest-verify:hover {
  background-color: var(--primary-gold-hover);
}

/* Cross-Sell Carousel */
.cross-sell-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
  margin-top: 4rem;
}

.cross-sell-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
}

.cross-sell-carousel .product-card {
  min-width: 280px;
  max-width: 280px;
}

/* --- CHECKOUT PAGE SPECIFICS --- */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .checkout-layout {
    grid-template-columns: 1.5fr 1fr;
  }
}

.checkout-stepper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.step-indicator {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
}

.checkout-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.checkout-card h2 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(241, 184, 26, 0.15);
}

.btn-verify-phone {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  border: none;
  font-family: var(--font-barlow);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
}

.btn-verify-phone:hover {
  background-color: var(--primary-gold);
  color: var(--primary-dark);
}

.checkout-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.checkout-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.checkout-item-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.checkout-item-info img {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.25rem;
  object-fit: contain;
}

.checkout-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.checkout-item-qty {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.checkout-item-total {
  font-weight: 600;
  font-size: 0.95rem;
}

.policy-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.policy-links a {
  cursor: pointer;
}

.policy-links a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* --- MODAL SYSTEM --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  padding: 2.5rem;
  box-shadow: var(--shadow-premium);
  position: relative;
  transform: translateY(-20px);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

/* OTP Code Box */
.otp-inputs {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin: 2rem 0;
}

.otp-box {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  transition: var(--transition-smooth);
}

.otp-box:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(241, 184, 26, 0.15);
}

.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.modal-actions button {
  flex-grow: 1;
  padding: 0.9rem;
  border-radius: 9999px;
  font-family: var(--font-barlow);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-modal-cancel {
  background-color: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

.btn-modal-verify {
  background-color: var(--primary-gold);
  color: var(--primary-dark);
  border: none;
}

.resend-otp-text {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.resend-otp-link {
  color: var(--primary-dark);
  font-weight: 600;
  cursor: pointer;
}

/* Policy Card styling (scrollable details inside popup) */
.policy-card {
  max-width: 700px;
}

.policy-content {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.policy-content h4 {
  margin: 1.5rem 0 0.5rem 0;
  font-size: 1.05rem;
  color: var(--primary-dark);
}

.policy-content p {
  margin-bottom: 1rem;
}

/* ================================================
   MD AGRO-STYLE CATALOG PAGE
   ================================================ */

.catalog-main {
  padding: 3rem 4rem 4rem 4rem;
  background-color: var(--bg-light);
  min-height: 100vh;
}

@media (max-width: 768px) {
  .catalog-main {
    padding: 1.5rem 1rem;
  }
}

/* --- Category Tabs (large bold uppercase text) --- */
.catalog-category-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 0.5rem 0 1rem;
}

.cat-tab {
  font-family: var(--font-barlow);
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #B0B0B0;
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: none;
  letter-spacing: 1px;
}

.cat-tab.active {
  color: var(--primary-dark);
}

.cat-tab:hover {
  color: var(--primary-dark);
}

/* --- Subcategory Icon Slider --- */
.subcat-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 1rem 0 2rem;
  gap: 0;
}

.slider-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  cursor: pointer;
  z-index: 5;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

@media (min-width: 768px) {
  .slider-arrow {
    display: flex;
  }
}

.slider-arrow:hover {
  background: var(--bg-light);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.subcat-slider-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 0;
  flex: 1;
  scrollbar-width: none;
}

.subcat-slider-track::-webkit-scrollbar {
  display: none;
}

.subcat-slider-item {
  display: flex;
  align-items: center;
  gap: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.subcat-slider-item:hover,
.subcat-slider-item.active {
  opacity: 1;
}

.subcat-slider-divider {
  display: block;
  width: 1px;
  height: 50px;
  background-color: #D0D0D0;
}

.subcat-slider-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.5rem;
  min-width: 100px;
}

.subcat-slider-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-light);
  border: 1.5px solid #D0D0D0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
}

.subcat-slider-label {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  color: var(--primary-dark);
  text-align: center;
  white-space: nowrap;
}

/* --- Catalog Content Layout (sidebar + grid) --- */
.catalog-content-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .catalog-content-layout {
    grid-template-columns: 1fr;
  }
}

.sidebar-filters {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  position: sticky;
  top: 110px;
}

.filter-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.filter-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-section h3 {
  font-family: var(--font-barlow);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  letter-spacing: 1px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-dark);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 0.6rem;
  accent-color: var(--primary-dark);
}

.item-count {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Sort options (clickable text) */
.sort-option {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.sort-option:hover,
.sort-option.active {
  background-color: var(--bg-light);
  border-color: var(--primary-dark);
  font-weight: 600;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.price-inputs input {
  width: 80px;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: var(--font-primary);
}

.btn-filter-apply {
  width: 100%;
  padding: 0.6rem;
  background-color: var(--primary-dark);
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-filter-apply:hover {
  background-color: var(--primary-gold);
}

/* --- Products Display --- */
.products-display {
  min-height: 400px;
}

.products-header {
  margin-bottom: 1rem;
}

.products-count {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* 4-column MD Agro-style grid */
.kk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .kk-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .kk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .kk-grid {
    grid-template-columns: 1fr;
  }
}

/* --- MD Agro Product Card --- */
.kk-product-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.kk-product-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.kk-more-info {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  color: #2E7D32;
  text-decoration: none;
  z-index: 2;
  transition: color 0.2s ease;
}

.kk-more-info:hover {
  color: var(--primary-gold);
  text-decoration: underline;
}

.kk-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 0.5rem;
}

.kk-card-img img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.kk-card-body {
  padding-top: 0.5rem;
}

.kk-card-title {
  font-family: var(--font-barlow);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-dark);
  line-height: 1.35;
  min-height: 2.4em;
  margin-bottom: 0.5rem;
}

.kk-card-pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
}

.kk-price {
  font-family: var(--font-barlow);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.kk-mrp {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.kk-discount-pct {
  font-size: 0.8rem;
  font-weight: 700;
  color: #2E7D32;
}

.kk-discount-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

/* Action buttons row */
.kk-card-actions {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.kk-btn {
  font-family: var(--font-barlow);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.kk-btn-add {
  background: transparent;
  border: 1.5px solid var(--primary-dark);
  color: var(--primary-dark);
}

.kk-btn-add:hover {
  background: var(--primary-dark);
  color: #FFFFFF;
}

.kk-btn-viewcart {
  background: transparent;
  border: 1.5px solid var(--primary-dark);
  color: var(--primary-dark);
}

.kk-btn-viewcart:hover {
  background: var(--primary-dark);
  color: #FFFFFF;
}

.kk-btn-buy {
  background: var(--primary-gold);
  border: 1.5px solid var(--primary-gold);
  color: #FFFFFF;
}

.kk-btn-buy:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Qty row for items in cart */
.kk-qty-row {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.kk-qty-btn {
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--primary-dark);
  transition: background 0.2s ease;
}

.kk-qty-btn:hover {
  background: var(--bg-light);
}

.kk-qty-val {
  flex: 1;
  text-align: center;
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: 1rem;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  padding: 0.25rem 0;
}
}

/* ==========================================================================
   MD AGRO REDESIGN WORKSPACE STYLES (MD AGRO ENTERPRISES)
   ========================================================================== */

/* --- Redesigned Hero Section (Full-Bleed MD Agro Style) --- */
.kk-hero {
  position: relative;
  min-height: 75vh;
  background-color: transparent;
  overflow: hidden;
  border-radius: 20px;
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
}

.kk-hero-slider {
  position: relative;
  width: 100%;
  height: 75vh;
}

.kk-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.kk-hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* Semi-transparent dark overlay for high readability on the left */
.kk-hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.kk-hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 40px;
  /* transparent header offset */
}

.kk-hero-content {
  color: #FFFFFF;
  text-align: left !important;
  max-width: 750px;
  margin-left: 0 !important;
  margin-right: auto !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.kk-hero-badge {
  display: inline-block;
  background-color: var(--primary-gold);
  color: #FFFFFF;
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.kk-hero-title {
  font-family: var(--font-barlow);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .kk-hero-title {
    font-size: 2.8rem;
  }
}

.kk-hero-desc {
  font-family: var(--font-albert);
  font-size: 1.05rem;
  line-height: 1.4;
  color: #E5E7EB;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Bullet list overlay */
.kk-hero-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  list-style: none;
  padding: 0;
}

.kk-hero-list-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.kk-hero-list-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(17, 17, 17, 0.8);
  border: 1.5px solid var(--primary-gold);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.kk-hero-list-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.kk-hero-list-text {
  font-family: var(--font-albert);
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Hero Slider Dots */
.kk-slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

@media (min-width: 768px) {
  .kk-slider-dots {
    left: auto;
    right: 8rem;
    transform: none;
  }
}

/* --- Redesigned Counter Grid Section --- */
.kk-stats-section {
  background-color: #FFFFFF;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.kk-stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  max-width: 100%;
  margin: 0 auto;
}

.kk-stat-card {
  text-align: center;
  flex: 1;
  min-width: 0;
  transition: transform 0.3s ease;
}

.kk-stat-card:hover {
  transform: translateY(-5px);
}

.kk-stat-number {
  font-family: var(--font-barlow);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.kk-stat-label {
  font-family: var(--font-albert);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .kk-stats-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .kk-stat-card {
    flex: 0 0 auto;
    min-width: 120px;
  }
}

@media (max-width: 640px) {
  .kk-stats-grid {
    gap: 1.5rem;
  }

  .kk-stat-number {
    font-size: 2.4rem;
  }

  .kk-stat-label {
    font-size: 0.75rem;
  }
}

/* --- Redesigned Solutions Section --- */
.kk-solutions-section {
  padding: 7rem 0;
  background-color: var(--bg-light);
}

.kk-solutions-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4.5rem;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .kk-solutions-header {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}

.kk-solutions-title-block {
  text-align: left;
}

.kk-solutions-subtitle {
  color: var(--primary-gold);
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.kk-solutions-title {
  font-family: var(--font-barlow);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1;
}

.kk-solutions-desc {
  font-family: var(--font-albert);
  font-size: 1.1rem;
  line-height: 1.65;
  color: #4B5563;
  text-align: left;
}

.kk-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
}

.kk-solutions-card {
  position: relative;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.kk-solutions-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

.kk-solutions-card:hover::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.92) 100%);
}

.kk-solutions-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.kk-solutions-card-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  text-align: left;
}

.kk-solutions-brand-tag {
  font-family: var(--font-barlow);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.kk-solutions-card-title {
  font-family: var(--font-barlow);
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.8rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.kk-solutions-card-desc {
  font-family: var(--font-albert);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #E5E7EB;
  margin-bottom: 1.8rem;
  opacity: 0.9;
}

.kk-solutions-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: 0.9rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.kk-solutions-card-btn .btn-arrow-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.kk-solutions-card-btn .btn-arrow-circle svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.kk-solutions-card:hover .kk-solutions-card-btn {
  color: var(--primary-gold);
}

.kk-solutions-card:hover .kk-solutions-card-btn .btn-arrow-circle {
  background-color: var(--primary-gold);
  color: #FFFFFF;
  transform: rotate(45deg);
}

/* --- Redesigned Strengths Section (Dark Theme) --- */
.kk-strengths-section {
  padding: 7rem 0;
  background-color: var(--bg-white);
}

.kk-strengths-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .kk-strengths-header {
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
  }
}

.kk-strengths-title-block {
  text-align: left;
}

.kk-strengths-title {
  font-family: var(--font-barlow);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1;
  text-transform: uppercase;
}

.kk-strengths-desc {
  font-family: var(--font-albert);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  text-align: left;
}

.kk-strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

@media (max-width: 1024px) {
  .kk-strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .kk-strengths-grid {
    grid-template-columns: 1fr;
  }

  .kk-strengths-title {
    font-size: 2.4rem;
  }
}

.kk-strengths-card {
  position: relative;
  height: 280px;
  border-radius: 4px;
  overflow: hidden;
  padding: 2rem 1.8rem;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.kk-strengths-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.78) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

.kk-strengths-card:hover::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.kk-strengths-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.kk-strengths-card-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  text-align: left;
}

.kk-strengths-card-title {
  font-family: var(--font-barlow);
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.kk-strengths-card-desc {
  font-family: var(--font-albert);
  font-size: 0.88rem;
  line-height: 1.55;
  color: #D1D5DB;
}

/* --- Redesigned Sustainability Section --- */
.kk-sustainability-section {
  padding: 7rem 0;
  background-color: var(--bg-light);
  border-top: none;
}

.kk-sustainability-title-block {
  text-align: center;
  margin-bottom: 3.5rem;
}

.kk-sustainability-title {
  font-family: var(--font-barlow);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.kk-sustainability-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .kk-sustainability-container {
    grid-template-columns: 1.1fr 1fr;
  }
}

.kk-sustainability-left {
  text-align: left;
}

.kk-sustainability-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.kk-sustainability-tab-btn {
  font-family: var(--font-barlow);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: 9999px;
  border: 1px solid #D1D5DB;
  background-color: #FFFFFF;
  color: var(--text-dark);
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.kk-sustainability-tab-btn:hover {
  background-color: #F3F4F6;
  border-color: #9CA3AF;
}

.kk-sustainability-tab-btn.active {
  background-color: var(--accent-green);
  color: #FFFFFF;
  border-color: var(--accent-green);
}

.kk-sustainability-content {
  min-height: 250px;
}

.kk-sustainability-subheading {
  font-family: var(--font-barlow);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-green);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.kk-sustainability-paragraphs p {
  font-family: var(--font-albert);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.kk-sustainability-paragraphs p:last-child {
  margin-bottom: 0;
}

/* Interactive Infographic Diagram */
.kk-sustainability-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.kk-diagram-wrapper {
  position: relative;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .kk-diagram-wrapper {
    width: 320px;
    height: 320px;
  }
}

.kk-diagram-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.kk-diagram-svg circle {
  stroke: #D1D5DB;
  stroke-width: 1.5;
  stroke-dasharray: 6 6;
  fill: none;
}

.kk-diagram-center {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 4px solid var(--accent-green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

@media (max-width: 480px) {
  .kk-diagram-center {
    width: 140px;
    height: 140px;
  }
}

.kk-diagram-center img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.kk-diagram-node {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 130px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

@media (max-width: 480px) {
  .kk-diagram-node {
    width: 90px;
  }
}

.kk-node-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 3px solid #9CA3AF;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.kk-node-label {
  font-family: var(--font-albert);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2px 8px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

/* Highlighting Active Node */
.kk-diagram-node.active .kk-node-dot {
  background-color: var(--accent-green);
  border-color: var(--accent-green);
  box-shadow: 0 0 0 6px rgba(45, 92, 0, 0.2);
  transform: scale(1.25);
}

.kk-diagram-node.active .kk-node-label {
  color: var(--accent-green);
  font-weight: 800;
  transform: translateY(-2px);
}

/* Node Placements */
/* Node 0: Sustainable Farming (bottom-left) */
.kk-node-sf {
  left: 0;
  bottom: 20%;
}

/* Node 1: Waste Recycling (top-left) */
.kk-node-wr {
  left: 0;
  top: 20%;
}

/* Node 2: Zero Liquid Discharge (top-right) */
.kk-node-zld {
  right: 0;
  top: 20%;
}

/* Node 3: Eco-friendly Machines (bottom-right) */
.kk-node-efm {
  right: 0;
  bottom: 20%;
}

/* ==========================================================================
   MD AGRO REDESIGN WORKSPACE STYLES - PHASE 2 (NEW SECTIONS)
   ========================================================================== */

/* --- Research & Innovation Slider --- */
.kk-research-section {
  padding: 7rem 0;
  background-color: #FFFFFF;
  border-top: none;
  overflow: hidden;
}

.kk-research-slider-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.kk-research-slider-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  width: 200%;
  /* 2 slides */
}

.kk-research-slide {
  width: 50%;
  /* 100% viewport width each */
  flex-shrink: 0;
  transition: opacity 0.6s ease;
  opacity: 0.1;
  padding: 0 1rem;
}

.kk-research-slide.active {
  opacity: 1;
}

.kk-research-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .kk-research-grid {
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 2rem;
  }
}

.kk-research-img-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 480px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kk-research-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kk-research-img-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
}

.kk-research-center {
  text-align: center;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kk-research-title {
  font-family: var(--font-barlow);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.kk-research-icon-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  width: 100%;
}

.kk-research-line {
  flex-grow: 1;
  height: 2px;
  background-color: var(--accent-green);
  max-width: 100px;
}

.kk-research-circle-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, #5EA91C 0%, #2D5C00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(45, 92, 0, 0.25);
  position: relative;
}

.kk-research-spin-svg {
  width: 100px;
  height: 100px;
  animation: spinSvg 12s linear infinite;
}

@keyframes spinSvg {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.kk-research-subtitle {
  font-family: var(--font-barlow);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kk-research-desc {
  font-family: var(--font-albert);
  font-size: 1.05rem;
  line-height: 1.65;
  color: #4B5563;
  margin-bottom: 2rem;
  max-width: 500px;
}

.kk-research-controls {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3rem;
}

.kk-research-dot {
  width: 60px;
  height: 4px;
  background-color: #E5E7EB;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.kk-research-dot.active {
  background-color: var(--accent-green);
}

/* --- Announcements CSS --- */
.kk-announcements-section {
  padding: 7rem 0;
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-color);
}

.kk-announcement-title {
  font-family: var(--font-barlow);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 3.5rem;
  text-transform: uppercase;
  text-align: left;
}

.kk-announcement-card {
  background-color: #000000;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 900px) {
  .kk-announcement-card {
    grid-template-columns: 1fr 1fr;
  }
}

.kk-announcement-left {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background-color: #0B0E07;
}

.kk-announcement-left img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.kk-announcement-right {
  padding: 4rem 3.5rem;
  color: #FFFFFF;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kk-announcement-date {
  font-family: var(--font-barlow);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.kk-announcement-date::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-green);
  display: inline-block;
}

.kk-announcement-subtitle {
  font-family: var(--font-barlow);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.kk-announcement-desc {
  font-family: var(--font-albert);
  font-size: 1.05rem;
  line-height: 1.65;
  color: #D1D5DB;
  margin-bottom: 3.5rem;
}

.kk-announcement-indicators {
  display: flex;
  gap: 0.6rem;
}

.kk-indicator-bar {
  width: 48px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 1.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.kk-indicator-bar.active {
  background-color: #FFFFFF;
}

/* --- Blogs Section CSS --- */
.kk-blogs-section {
  padding: 7rem 0;
  background-color: var(--bg-light);
  border-top: none;
}

.kk-blogs-title {
  font-family: var(--font-barlow);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 3.5rem;
  text-align: left;
}

.kk-blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.kk-blog-card {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.kk-blog-img-box {
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.kk-blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.kk-blog-card:hover .kk-blog-img-box img {
  transform: scale(1.05);
}

.kk-blog-date {
  font-family: var(--font-albert);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.kk-blog-title {
  font-family: var(--font-barlow);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
  min-height: 3.1em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: uppercase;
}

.kk-blog-excerpt {
  font-family: var(--font-albert);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kk-blog-link {
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}

.kk-blog-card:hover .kk-blog-link {
  color: var(--primary-gold);
}

.kk-blog-viewall-container {
  display: flex;
  justify-content: center;
}

.kk-blog-viewall-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
  border-bottom: 2px solid var(--primary-dark);
  padding-bottom: 4px;
  transition: var(--transition-smooth);
}

.kk-blog-viewall-btn:hover {
  color: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateY(-2px);
}

/* --- Dealer Showroom CSS --- */
.kk-dealer-section {
  background-color: var(--bg-white);
  display: grid;
  grid-template-columns: 1fr;
  min-height: 480px;
}

@media (min-width: 900px) {
  .kk-dealer-section {
    grid-template-columns: 1.1fr 1fr;
  }
}

.kk-dealer-left {
  background-color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 4rem 2rem;
}

@media (min-width: 900px) {
  .kk-dealer-left {
    padding: 4rem 3.5rem;
  }
}

.kk-dealer-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 3.5rem;
  max-width: 580px;
  text-align: left;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-color);
}

.kk-dealer-title {
  font-family: var(--font-barlow);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.kk-dealer-desc {
  font-family: var(--font-albert);
  font-size: 1.05rem;
  line-height: 1.65;
  color: #4B5563;
  margin-bottom: 2.2rem;
}

.kk-dealer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.2s ease;
}

.kk-dealer-btn:hover {
  color: var(--primary-gold);
  transform: translateX(4px);
}

.kk-dealer-right {
  background-size: cover;
  background-position: center;
  min-height: 350px;
}

/* --- Where to Find Us CSS --- */
.kk-find-us-section {
  padding: 8rem 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
  color: var(--text-dark);
  text-align: center;
}

.kk-find-us-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
  z-index: 1;
}

.kk-find-us-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.kk-find-us-title {
  font-family: var(--font-barlow);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.kk-find-us-subtitle {
  font-family: var(--font-albert);
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  font-weight: 500;
}

.kk-find-us-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: 1rem;
  color: #FFFFFF;
  background-color: var(--primary-gold);
  padding: 1.1rem 2.6rem;
  border-radius: 9999px;
  box-shadow: 0 10px 20px rgba(255, 94, 0, 0.2);
  transition: var(--transition-smooth);
}

.kk-find-us-btn:hover {
  background-color: var(--primary-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 94, 0, 0.35);
}

.kk-find-us-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.kk-find-us-btn:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   CONTACT PAGE STYLES (MD AGRO)
   ========================================================================== */

/* --- Contact Hero (Full-Bleed) --- */
.contact-hero {
  position: relative;
  width: 96%;
  max-width: 1820px;
  min-height: 65vh;
  margin: 2.5rem auto !important;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/Banner/Contact%20Us.png') center/cover no-repeat;
  overflow: hidden;
  transition: var(--transition-smooth);
}

@media (max-width: 1024px) {
  .contact-hero {
    width: 95%;
    border-radius: 24px;
    margin: 2rem auto !important;
    min-height: 55vh;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    width: 97%;
    border-radius: 16px;
    margin: 1.5rem auto !important;
    min-height: 50vh;
  }
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  text-align: center;
}

.contact-hero-heading {
  font-family: var(--font-barlow);
  font-size: 2.8rem !important;
  font-weight: 900 !important;
  color: #FFFFFF;
  line-height: 1.15 !important;
  letter-spacing: -0.5px !important;
  text-transform: uppercase;
  margin: 0 0 0.75rem 0;
}

@media (max-width: 768px) {
  .contact-hero-heading {
    font-size: 2rem !important;
  }
}

.contact-hero-brand {
  color: var(--primary-gold);
}

.contact-hero-sub {
  max-width: 750px;
}

.contact-hero-sub p {
  font-family: var(--font-albert);
  font-size: 1.05rem !important;
  line-height: 1.4 !important;
  color: #E5E7EB;
  font-weight: 500 !important;
  margin: 0;
}

.contact-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-barlow);
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px !important;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  transition: var(--transition-smooth);
  margin-top: 1rem;
}

.contact-hero-btn:hover {
  color: var(--primary-gold);
}

.contact-hero-btn-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-hero-btn-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary-dark);
}

.contact-hero-btn:hover .contact-hero-btn-arrow {
  background: var(--primary-gold);
  transform: rotate(45deg);
}

.contact-hero-btn:hover .contact-hero-btn-arrow svg {
  stroke: #FFFFFF;
}

/* --- Offices Section (Dark) --- */
.contact-offices-section {
  background-color: var(--bg-white);
  padding: 5rem 0;
}

.contact-offices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-offices-grid {
    grid-template-columns: 2fr 3fr;
    gap: 5rem;
  }
}

.contact-section-heading {
  font-family: var(--font-barlow);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-dark);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* Head Office Card (White) */
.contact-office-card {
  background: #FFFFFF;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #111111;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.contact-office-city {
  font-family: var(--font-barlow);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-office-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-detail-block p {
  font-family: var(--font-albert);
  font-size: 0.95rem;
  line-height: 1.65;
  color: #374151;
  margin: 0;
}

.contact-detail-label {
  font-family: var(--font-albert);
  font-size: 1rem;
  font-weight: 400;
  color: #111111;
  margin-bottom: 0.15rem;
}

.contact-detail-link {
  font-family: var(--font-albert);
  font-size: 1rem;
  color: #111111;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.contact-detail-link:hover {
  color: var(--primary-gold);
}

.contact-factory-heading {
  font-family: var(--font-barlow);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Regional Offices Right Panel */
.contact-office-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-tabs {
  display: flex;
  gap: 0.5rem;
}

.contact-tab-btn {
  font-family: var(--font-barlow);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 0.65rem 1.5rem;
  cursor: pointer;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  flex: 1;
  text-align: center;
}

.contact-tab-btn.active {
  border-color: var(--primary-dark);
  background-color: var(--bg-light);
}

.contact-tab-btn:hover {
  border-color: var(--primary-dark);
}

.contact-regional-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-regional-item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .contact-regional-item {
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
  }
}

.contact-regional-city {
  font-family: var(--font-barlow);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
}

.contact-regional-address {
  font-family: var(--font-albert);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  max-width: 350px;
}

.contact-regional-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-meta-row {
  font-family: var(--font-albert);
  font-size: 0.92rem;
  color: var(--text-dark);
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.contact-meta-row a {
  text-decoration: underline;
  color: var(--text-dark);
  transition: color 0.2s;
}

.contact-meta-row a:hover {
  color: var(--primary-gold);
}

.contact-map-wrapper {
  width: 100%;
  flex: 1;
  min-height: 300px;
}

.contact-map-iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

/* --- Contact Form Section (White) --- */
.contact-form-section {
  background: #FFFFFF;
  padding: 5rem 0;
}

.contact-form-title {
  font-family: var(--font-barlow);
  font-size: 3rem;
  font-weight: 900;
  color: #111111;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-form-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.contact-form-tab {
  font-family: var(--font-barlow);
  font-size: 0.95rem;
  font-weight: 600;
  color: #6B7280;
  background: transparent;
  border: 2px solid #E5E7EB;
  padding: 0.7rem 2rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.contact-form-tab.active {
  color: #FFFFFF;
  background-color: var(--accent-green);
  border-color: var(--accent-green);
}

.contact-form-tab:hover:not(.active) {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form-full {
  grid-column: 1 / -1;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form-group label {
  font-family: var(--font-barlow);
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form-group label .required {
  color: #DC2626;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  font-family: var(--font-albert);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  background: #FFFFFF;
  color: #111111;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(45, 92, 0, 0.1);
}

.contact-form-group textarea {
  resize: vertical;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-barlow);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: var(--accent-green);
  border: none;
  padding: 0.9rem 2.5rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2rem;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-submit-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.contact-submit-btn:hover {
  background-color: #1E4D00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 92, 0, 0.3);
}

.contact-submit-btn:hover svg {
  transform: translateX(4px);
}

/* --- Reusable Page Hero Section (Transparent Header Compatible) --- */
.page-hero {
  position: relative;
  width: 96%;
  max-width: 1820px;
  min-height: 65vh;
  margin: 2.5rem auto !important;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: var(--transition-smooth);
}

@media (max-width: 1024px) {
  .page-hero {
    width: 95%;
    border-radius: 24px;
    margin: 2rem auto !important;
    min-height: 55vh;
  }
}

@media (max-width: 768px) {
  .page-hero {
    width: 97%;
    border-radius: 16px;
    margin: 1.5rem auto !important;
    min-height: 50vh;
  }
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 8rem 2rem 4rem 2rem;
  text-align: center;
  max-width: 1000px;
}

.page-hero-title {
  font-family: var(--font-barlow);
  font-size: 2.8rem !important;
  font-weight: 900 !important;
  color: #FFFFFF;
  line-height: 1.15 !important;
  letter-spacing: -0.5px !important;
  text-transform: uppercase;
  margin: 0 0 0.75rem 0;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .page-hero-title {
    font-size: 2rem !important;
  }
}

.page-hero-subtitle {
  font-family: var(--font-albert);
  font-size: 1.05rem !important;
  line-height: 1.4 !important;
  color: #E5E7EB;
  margin: 0;
  max-width: 750px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 500 !important;
}

.page-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-barlow);
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px !important;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  transition: var(--transition-smooth);
  margin-top: 1.5rem;
  text-decoration: none;
  background-color: transparent;
}

.page-hero-btn:hover {
  color: var(--primary-gold);
}

.page-hero-btn-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page-hero-btn-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary-dark);
}

.page-hero-btn:hover .page-hero-btn-arrow {
  background: var(--primary-gold);
  transform: rotate(45deg);
}

.page-hero-btn:hover .page-hero-btn-arrow svg {
  stroke: #FFFFFF;
}

/* Company Profile Section */
.company-profile-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
  border-bottom: none;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .profile-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.profile-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.profile-left .sub-title {
  font-family: var(--font-barlow);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.profile-left h2 {
  font-family: var(--font-barlow);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-transform: none;
}

.profile-left .desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.profile-left .cta-note {
  font-family: var(--font-barlow);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.profile-contact-btn {
  display: inline-block;
  background-color: var(--accent-green);
  color: #FFFFFF;
  font-family: var(--font-barlow);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.9rem 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(45, 92, 0, 0.2);
  transition: var(--transition-smooth);
}

.profile-contact-btn:hover {
  background-color: #244900;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 92, 0, 0.3);
  color: #FFFFFF;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.detail-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: var(--bg-light);
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.detail-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(45, 92, 0, 0.3);
}

.detail-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background-color: rgba(45, 92, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.detail-card:hover .card-icon {
  background-color: var(--accent-green);
  color: #FFFFFF;
}

.detail-card .card-info {
  display: flex;
  flex-direction: column;
}

.detail-card .card-info h4 {
  font-family: var(--font-barlow);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.detail-card .card-info p {
  font-family: var(--font-albert);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
}

/* Trustseal Card override */
.detail-card.trustseal-card {
  background-color: #FFFDF0;
  border-color: #FFECA1;
}

.detail-card.trustseal-card:hover {
  border-color: #F59E0B;
}

.detail-card.trustseal-card .card-icon {
  background-color: #FFF6C3;
  color: #D97706;
}

.detail-card.trustseal-card:hover .card-icon {
  background-color: #F59E0B;
  color: #FFFFFF;
}

/* Factsheet Section */
.factsheet-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
  border-bottom: none;
}

.factsheet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .factsheet-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

.why-us-block {
  background-color: var(--bg-white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.why-us-block h3 {
  font-family: var(--font-barlow);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.why-us-intro {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.why-us-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-us-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-us-list .check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(45, 92, 0, 0.1);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  flex-shrink: 0;
}

.why-us-list li strong {
  display: block;
  font-family: var(--font-barlow);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.why-us-list li p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.factsheet-dashboard {
  display: flex;
  flex-direction: column;
}

.factsheet-nav {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
  overflow-x: auto;
}

.factsheet-nav-btn {
  background: none;
  border: none;
  font-family: var(--font-barlow);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: var(--transition-smooth);
}

.factsheet-nav-btn:hover {
  color: var(--primary-gold);
}

.factsheet-nav-btn.active {
  color: var(--primary-gold);
}

.factsheet-nav-btn.active::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-gold);
}

.factsheet-content {
  background-color: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  flex-grow: 1;
}

.factsheet-panel {
  display: none;
}

.factsheet-panel.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.factsheet-table {
  width: 100%;
  border-collapse: collapse;
}

.factsheet-table tr {
  border-bottom: 1px solid var(--border-color);
}

.factsheet-table tr:last-child {
  border-bottom: none;
}

.factsheet-table td {
  padding: 1.2rem 0;
  vertical-align: top;
  font-size: 0.95rem;
}

.factsheet-table td:first-child {
  width: 35%;
  color: var(--text-muted);
  font-family: var(--font-barlow);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.factsheet-table td:last-child {
  width: 65%;
  color: var(--primary-dark);
  font-weight: 500;
  padding-left: 1.5rem;
}

.highlight-gst {
  background-color: rgba(255, 94, 0, 0.08);
  color: var(--primary-gold);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-family: monospace;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.factsheet-table ul {
  padding-left: 1.2rem;
}

.factsheet-table li {
  margin-bottom: 0.4rem;
}

/* Fallback styles for IndiaMART TrustSEAL logo */
.sprt.ts {
  display: inline-block !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' fill='none'%3E%3Cpath d='M18 2L21.5 5.5L26.3 4.5L27.3 9.3L32 10.3L31 15L34 18L31 21L32 25.7L27.3 26.7L26.3 31.5L21.5 30.5L18 34L14.5 30.5L9.7 31.5L8.7 26.7L4 25.7L5 21L2 18L5 15L4 10.3L8.7 9.3L9.7 4.5L14.5 5.5L18 2Z' fill='%23FBBF24' stroke='%23D97706' stroke-width='1.0'/%3E%3Ccircle cx='18' cy='18' r='11' fill='%23B91C1C'/%3E%3Cpath d='M13 18.5L16.5 22L23 14' stroke='%23FFFFFF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  width: 32px !important;
  height: 32px !important;
  vertical-align: middle;
}

/* Social Link Hover Styles */
.social-links a:hover {
  background-color: var(--primary-gold) !important;
  transform: translateY(-2px);
}

.contact-social-icon:hover {
  background-color: var(--accent-green) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* Force social SVGs to render in correct colors and sizes */
.social-icon svg {
  color: #FFFFFF !important;
  stroke: #FFFFFF !important;
  fill: none !important;
  width: 18px !important;
  height: 18px !important;
  display: block;
}

.social-icon:hover svg {
  color: var(--primary-dark) !important;
  stroke: var(--primary-dark) !important;
}

.contact-social-icon svg {
  color: var(--accent-green) !important;
  stroke: var(--accent-green) !important;
  fill: none !important;
  width: 18px !important;
  height: 18px !important;
  display: block;
}

.contact-social-icon:hover svg {
  color: #FFFFFF !important;
  stroke: #FFFFFF !important;
}

/* Header and Card icon color inheritance fix */
.search-btn svg,
.menu-btn svg,
.cart-pill svg,
.phone-pill svg,
.card-icon svg {
  stroke: currentColor !important;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #FFFFFF !important;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Hide horizontal scrollbar sliders/handles for sliders while keeping swipe scroll functional */
.subcategory-slider,
.cross-sell-carousel,
.factsheet-nav {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.subcategory-slider::-webkit-scrollbar,
.cross-sell-carousel::-webkit-scrollbar,
.factsheet-nav::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

/* --- PREMIUM RED TIGER HERO BANNER STYLES --- */
.tiger-theme-slide {
  background-size: cover;
  background-position: center;
}

.tiger-theme-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.75) 35%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.5) 100%) !important;
  z-index: 1;
}

.tiger-slide-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  padding: 3rem 0;
}

.tiger-slide-left {
  position: relative;
  z-index: 2;
  text-align: left;
}

.tiger-badge-next-gen {
  display: inline-block;
  font-family: var(--font-barlow);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
  text-transform: uppercase;
}

.tiger-intro-capsule {
  display: inline-block;
  background-color: transparent;
  border: 1.5px solid var(--accent-red);
  color: var(--accent-red);
  font-family: var(--font-barlow);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.15);
}

.tiger-title {
  font-family: var(--font-barlow);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .tiger-title {
    font-size: 4.2rem;
  }
}

.bg-red-card {
  background-color: var(--accent-red);
  color: #FFFFFF;
  padding: 0.15rem 0.75rem;
  border-radius: 4px;
  display: inline-block;
  transform: skewX(-6deg);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.5);
  text-shadow: none;
}

.tiger-offer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17, 17, 17, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 5px solid #FFD700;
  border-radius: 6px;
  padding: 1.1rem 1.6rem;
  max-width: 580px;
  margin-top: 1rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.offer-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}

.offer-pre-book {
  font-family: var(--font-barlow);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFD700;
  letter-spacing: 0.5px;
}

.offer-gift {
  font-family: var(--font-albert);
  font-size: 0.85rem;
  font-weight: 600;
  color: #E5E7EB;
}

.btn-tiger-prebook {
  display: inline-block;
  background-color: var(--accent-red);
  color: #FFFFFF !important;
  font-family: var(--font-barlow);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 0.65rem 1.3rem;
  border-radius: 4px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.btn-tiger-prebook:hover {
  background-color: #B91C1C;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.6);
}

.tiger-slide-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(17, 17, 17, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2.2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  max-width: 460px;
  justify-self: end;
}

.genie-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-barlow);
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--accent-red);
  padding-bottom: 0.6rem;
  width: fit-content;
  text-transform: uppercase;
}

.genie-badge svg {
  color: #FFD700;
  fill: #FFD700;
}

.tiger-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.tiger-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.tiger-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(220, 38, 38, 0.15);
  border: 1px solid var(--accent-red);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.2);
}

.tiger-feature-icon svg {
  width: 18px;
  height: 18px;
}

.tiger-feature-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
}

.tiger-feature-title {
  font-family: var(--font-barlow);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.tiger-feature-desc {
  font-family: var(--font-albert);
  font-size: 0.8rem;
  color: #9CA3AF;
  line-height: 1.35;
}

.tiger-coming-soon-badge {
  position: absolute;
  bottom: 4.5rem;
  right: -35px;
  background: linear-gradient(135deg, #FFC700 0%, #FF8A00 100%);
  color: #000000;
  font-family: var(--font-barlow);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 2px;
  padding: 0.5rem 4.5rem;
  transform: rotate(-15deg);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.45);
  z-index: 15;
  text-transform: uppercase;
}

/* Responsiveness for Red Tiger banner */
@media (max-width: 991px) {
  .tiger-slide-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 100px;
    padding-bottom: 70px;
  }

  .tiger-slide-right {
    justify-self: start;
    max-width: 100%;
    width: 100%;
    padding: 1.8rem;
  }

  .tiger-coming-soon-badge {
    bottom: 2rem;
    right: -25px;
    font-size: 0.95rem;
    padding: 0.4rem 3.5rem;
  }
}

@media (max-width: 576px) {
  .tiger-title {
    font-size: 2.3rem;
  }

  .tiger-badge-next-gen {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  .tiger-offer-box {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
  }

  .offer-left {
    text-align: center;
  }

  .btn-tiger-prebook {
    width: 100%;
    text-align: center;
    padding: 0.6rem;
  }

  .tiger-coming-soon-badge {
    display: none;
    /* Hide rotated ribbon on small mobile to avoid layout shifts */
  }
}

/* --- MD AGRO CUSTOM LAYOUT --- */

/* Body padding for fixed announcement bar only (header is sticky, not fixed) */
@media (min-width: 1024px) {
  body {
    padding-top: 40px;
    /* announcement bar height */
  }
}

@media (max-width: 1023px) {
  body {
    padding-top: 40px;
    /* announcement bar height */
  }
}

/* Transparent header scroll effect */
header.header-transparent.header-scrolled {
  background-color: var(--bg-white) !important;
  color: var(--primary-dark) !important;
  box-shadow: var(--shadow-sm);
}

/* Announcement Bar */
.top-announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  font-family: var(--font-barlow);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.top-announcement-bar-content {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* Redesigned Header */
.md-agro-header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  height: 80px;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 999;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

@media (max-width: 1023px) {
  .md-agro-header {
    height: 70px;
    padding: 0 1rem;
  }
}

.md-agro-logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.md-agro-logo-text {
  font-family: var(--font-barlow);
  font-size: 1.6rem;
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.md-agro-logo-text span {
  color: var(--primary-gold);
}

/* Center Search Bar */
.md-agro-search-container {
  flex: 0 1 500px;
  position: relative;
  margin: 0 1.5rem;
}

@media (max-width: 768px) {
  .md-agro-search-container {
    display: none;
    /* hidden on small screen header, shown in drawer */
  }
}

.md-agro-search-input {
  width: 100%;
  height: 44px;
  background-color: #f1f3f5;
  border: 1px solid transparent;
  border-radius: 22px;
  padding: 0 1.5rem 0 3rem;
  font-family: var(--font-albert);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.md-agro-search-input:focus {
  background-color: #ffffff;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(179, 13, 21, 0.1);
}

.md-agro-search-icon-btn {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Header Action Right */
.md-agro-header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.login-pill-btn {
  background-color: var(--primary-gold);
  color: #ffffff;
  border: none;
  padding: 0.65rem 1.25rem;
  border-radius: 22px;
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.2px;
}

.login-pill-btn:hover {
  background-color: var(--primary-gold-hover);
  transform: translateY(-1px);
}

.login-pill-welcome {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-size: 0.8rem;
  color: var(--text-dark);
  font-weight: 600;
}

.login-pill-welcome span {
  font-family: var(--font-barlow);
  font-size: 0.9rem;
  color: var(--primary-gold);
  font-weight: 700;
}

.md-agro-action-icon-link {
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.md-agro-action-icon-link:hover {
  background-color: #f1f3f5;
  color: var(--primary-gold);
}

.md-agro-cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--primary-gold);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.md-agro-hamburger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

@media (max-width: 1023px) {
  .md-agro-hamburger-btn {
    display: flex;
  }
}

/* Left Sidebar Navigation */
.md-agro-sidebar {
  position: fixed;
  top: 132px;
  /* 40px announcement bar + 92px header */
  left: 0;
  bottom: 0;
  width: 240px;
  background-color: #ffffff;
  border-right: 1px solid var(--border-color);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  z-index: 998;
  transition: var(--transition-smooth);
}



@media (max-width: 1023px) {
  .md-agro-sidebar {
    transform: translateX(-100%);
    /* hidden on tablet/mobile */
  }

  .md-agro-sidebar.active {
    transform: translateX(0);
    top: 0;
    z-index: 1001;
    /* Layer above header/announcement */
    box-shadow: var(--shadow-lg);
  }
}

.md-agro-sidebar-logo-header {
  display: none;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1023px) {
  .md-agro-sidebar-logo-header {
    display: flex;
  }
}

.md-agro-sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.md-agro-sidebar-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 0.5rem;
  color: var(--text-dark);
  font-family: var(--font-barlow);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-left: 4px solid transparent;
  transition: var(--transition-smooth);
  gap: 6px;
}

.md-agro-sidebar-item a i {
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.md-agro-sidebar-item a:hover {
  background-color: #fcf1f2;
  color: var(--primary-gold);
}

.md-agro-sidebar-item a:hover i {
  color: var(--primary-gold);
}

.md-agro-sidebar-item.active a {
  background-color: #fcf1f2;
  color: var(--primary-gold);
  border-left-color: var(--primary-gold);
}

.md-agro-sidebar-item.active a i {
  color: var(--primary-gold);
}

/* Sidebar Footer (Optional styling inside sidebar) */
.md-agro-sidebar-footer {
  margin-top: auto;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid #f1f3f5;
}

/* Sidebar Drawer Backdrop */
.sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.sidebar-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Login Modal */
.login-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1005;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.login-modal-wrapper.active {
  opacity: 1;
  visibility: visible;
}

.login-modal-card {
  background-color: #ffffff;
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: var(--shadow-premium);
  padding: 2.25rem 2rem;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.login-modal-wrapper.active .login-modal-card {
  transform: translateY(0);
}

.login-modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
}

.login-modal-close-btn:hover {
  color: var(--primary-gold);
}

.login-modal-title {
  font-family: var(--font-barlow);
  font-size: 1.5rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 0.5rem;
  text-align: center;
}

.login-modal-subtitle {
  font-family: var(--font-albert);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  text-align: center;
  line-height: 1.4;
}

.login-form-group {
  margin-bottom: 1.25rem;
}

.login-form-label {
  display: block;
  font-family: var(--font-albert);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.login-form-input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0 1rem;
  font-family: var(--font-albert);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.login-form-input:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(179, 13, 21, 0.1);
}

.login-modal-btn {
  width: 100%;
  height: 48px;
  background-color: var(--primary-gold);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 0.5rem;
}

.login-modal-btn:hover {
  background-color: var(--primary-gold-hover);
}

.otp-box-container {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.otp-input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.otp-input:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(179, 13, 21, 0.1);
}

/* Custom layout adjustment for hero banner slider */
.kk-hero {
  margin: 2.5rem auto !important;
  border-radius: 32px;
  width: 96%;
  max-width: 1820px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.kk-hero-slider {
  height: 70vh;
}

@media (max-width: 1024px) {
  .kk-hero {
    width: 95%;
    border-radius: 24px;
    margin: 2rem auto !important;
  }
}

@media (max-width: 768px) {
  .kk-hero {
    width: 97%;
    border-radius: 16px;
    margin: 1.5rem auto !important;
    min-height: 50vh;
  }

  .kk-hero-slider {
    height: 50vh;
  }
}

/* Custom changes to adapt existing elements to sidebar layout */
footer {
  margin-top: 0;
  border-top: none;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   GLOBAL SEARCH BAR
   ========================================================================== */

.site-search-bar {
  position: sticky;
  top: 0;
  z-index: 900;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(69, 117, 15, 0.15);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 0.6rem 1rem;
}

.search-bar-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid rgba(69, 117, 15, 0.3);
  border-radius: 9999px;
  padding: 0 1rem;
  gap: 0.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input-wrap:focus-within {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(69, 117, 15, 0.12);
}

.search-icon-svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary-gold);
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-albert);
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 0.6rem 0;
  min-width: 0;
}

.search-input::placeholder {
  color: #9ca3af;
  font-size: 0.875rem;
}

.search-clear-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  cursor: pointer;
  color: #6b7280;
  flex-shrink: 0;
  transition: background 0.15s;
}

.search-clear-btn:hover {
  background: #e5e7eb;
  color: var(--text-dark);
}

/* --- Dropdown --- */
.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid rgba(69, 117, 15, 0.15);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  z-index: 999;
  animation: searchDropIn 0.18s ease;
}

@keyframes searchDropIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1rem;
  text-decoration: none;
  color: var(--text-dark);
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s;
}

.search-result-item:last-of-type {
  border-bottom: none;
}

.search-result-item:hover {
  background: rgba(69, 117, 15, 0.06);
}

.search-result-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.search-result-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.search-result-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.search-result-arrow {
  color: #d1d5db;
  flex-shrink: 0;
  transition: color 0.15s, transform 0.15s;
}

.search-result-item:hover .search-result-arrow {
  color: var(--primary-gold);
  transform: translateX(3px);
}

.search-no-result {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.search-view-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-gold);
  background: rgba(69, 117, 15, 0.04);
  border-top: 1px solid rgba(69, 117, 15, 0.1);
  text-decoration: none;
  transition: background 0.15s;
}

.search-view-all:hover {
  background: rgba(69, 117, 15, 0.1);
}

@media (max-width: 640px) {
  .site-search-bar {
    padding: 0.5rem 0.75rem;
  }

  .search-input {
    font-size: 0.82rem;
  }
}

/* ==========================================================================
   MD AGRO HOMEPAGE COMPONENT STYLES
   ========================================================================== */

/* --- Categories Grid Section --- */
.categories-section {
  padding: 3rem 1.5rem;
}

.categories-section h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-dark);
  font-family: var(--font-barlow);
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  text-align: center;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.categories-box {
  flex: 0 0 auto;
  width: 130px;
}

@media (max-width: 640px) {
  .categories-box {
    width: 90px;
  }
}

.categories-box {
  text-align: center;
  display: block;
  text-decoration: none;
}

.categories-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: #f8f9fa;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem auto;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.categories-box:hover .categories-circle {
  border-color: var(--primary-gold);
  background-color: rgba(69, 117, 15, 0.08);
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 10px 20px rgba(69, 117, 15, 0.18);
}

.categories-circle svg {
  width: 48px;
  height: 48px;
  color: var(--primary-gold);
  transition: var(--transition-smooth);
}

.categories-box:hover .categories-circle svg {
  color: var(--primary-gold-hover);
  transform: scale(1.08);
}

.categories-label {
  display: block;
  font-family: var(--font-barlow);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  line-height: 1.3;
  transition: var(--transition-smooth);
}

.categories-box:hover .categories-label {
  color: var(--primary-gold);
}

/* --- Stats Banner Section --- */
.dealer-stats-banner {
  background-color: #1e2b3d;
  border-radius: 16px;
  padding: 2.25rem 2rem;
  margin-bottom: 3.5rem;
  color: #ffffff;
  box-shadow: var(--shadow-premium);
}

.stats-banner-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.stats-banner-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-barlow);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.stats-banner-title .live-pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #10b981;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  animation: statsPulse 2s infinite;
}

@keyframes statsPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.stats-dealer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background-color: var(--primary-gold);
  color: #ffffff;
  border-radius: 30px;
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.stats-dealer-btn:hover {
  background-color: var(--primary-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(179, 13, 21, 0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--primary-gold);
}

.stat-card h2 {
  font-size: 2.25rem;
  font-weight: 900;
  font-family: var(--font-barlow);
  color: #ffffff;
  line-height: 1;
  margin: 0 0 0.5rem 0;
}

.stat-card p {
  font-size: 0.72rem;
  color: #cbd5e1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  margin: 0;
}

/* --- Bestsellers / DealDay Product Grid --- */
.md-agro-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 1200px) {
  .md-agro-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .md-agro-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .md-agro-products-grid {
    grid-template-columns: 1fr;
  }
}

.dealday-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.dealday-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(179, 13, 21, 0.2);
}

.dealday-box .off-box {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #e3ffd5;
  border: 1px solid rgba(102, 179, 62, 0.35);
  color: #66b33e;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.7rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dealday-box .off-box img {
  width: 12px;
  height: 12px;
}

.dealday-box .product-card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-gold);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.dealday-img {
  height: 250px;
  padding: 0;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #f3f4f6;
}

.dealday-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.dealday-box:hover .dealday-img img {
  transform: scale(1.04);
}

.dealday-con {
  padding: 1.25rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.prod-reviews {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 0.5rem;
}

.prod-reviews span {
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 0.25rem;
}

.prod-d-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin: 0 0 0.5rem 0;
  height: 2.7rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-family: var(--font-albert);
  text-transform: none;
  letter-spacing: 0;
}

.prod-d-name a {
  color: inherit;
  transition: var(--transition-smooth);
}

.prod-d-name a:hover {
  color: var(--primary-gold);
}

.prod-d-save-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.prod-d-save {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin: 0;
}

.prod-d-off {
  font-size: 0.78rem;
  font-weight: 700;
  color: #66b33e;
  margin: 0;
}

.prod-d-price {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-dark);
  font-family: var(--font-barlow);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0 0 1.25rem 0;
  line-height: 1;
}

.prod-d-price span del {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 500;
}

.btn-buy-now {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.7rem;
  background-color: var(--primary-gold);
  color: #ffffff;
  font-family: var(--font-barlow);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-buy-now:hover {
  background-color: var(--primary-gold-hover);
  transform: translateY(-1px);
}

.btn-add-cart {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.7rem;
  background-color: transparent;
  color: var(--primary-gold);
  font-family: var(--font-barlow);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  border-radius: 8px;
  border: 1.5px solid var(--primary-gold);
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 0.5rem;
}

.btn-add-cart:hover {
  background-color: #fcf1f2;
}

/* --- Trust Highlights Section --- */
.trusted-section {
  background-color: #1e2b3d;
  border-radius: 16px;
  padding: 3.5rem 2rem;
  margin-bottom: 3.5rem;
  color: #ffffff;
}

.trusted-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.trusted-header h4 {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  font-family: var(--font-barlow);
  margin: 0;
  letter-spacing: 1px;
}

.trusted-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0.5rem 0 0 0;
  font-weight: 500;
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .trusted-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .trusted-grid {
    grid-template-columns: 1fr;
  }
}

.trusted-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.25rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

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

.trusted-box-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #fdf2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary-gold);
}

.trusted-box h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e2b3d;
  text-transform: uppercase;
  font-family: var(--font-barlow);
  margin: 0 0 0.5rem 0;
  line-height: 1.25;
}

.trusted-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* --- Tabbed Product Showcase & Spotlight Styles --- */
.product-tab-btn {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--primary-dark);
  font-family: var(--font-barlow);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 1px;
}

.product-tab-btn:hover {
  background-color: rgba(179, 13, 21, 0.05);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.product-tab-btn.active {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(220, 163, 50, 0.3);
}

.spotlight-promo-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.spotlight-promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.spotlight-promo-card .btn-primary {
  transition: all 0.3s ease;
}

.spotlight-promo-card:hover .btn-primary {
  background-color: var(--primary-gold) !important;
  color: #ffffff !important;
}

/* Fade-in transition for tabs content update */
#homepage-tabbed-grid {
  transition: opacity 0.25s ease-in-out;
}

.tab-grid-fade {
  opacity: 0;
}

/* --- Horizontal Product Slider (Single Row Layout) --- */
.product-slider-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.product-row-scroll {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding: 0.75rem 0.5rem 1.5rem 0.5rem;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #66b33e rgba(0, 0, 0, 0.05);
}

.product-row-scroll::-webkit-scrollbar {
  height: 8px;
}

.product-row-scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.product-row-scroll::-webkit-scrollbar-thumb {
  background: #66b33e;
  border-radius: 10px;
}

.product-row-scroll::-webkit-scrollbar-thumb:hover {
  background: #1e3a8a;
}

.product-row-scroll>.dealday-box {
  flex: 0 0 280px !important;
  min-width: 280px !important;
  max-width: 280px !important;
  scroll-snap-align: start;
  height: auto;
}

/* Nav Control Buttons */
.slider-header-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.slider-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-color, #e2e8f0);
  color: #1e293b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  outline: none;
}

.slider-nav-btn:hover {
  background: #66b33e;
  color: #ffffff;
  border-color: #66b33e;
  box-shadow: 0 4px 14px rgba(102, 179, 62, 0.35);
  transform: translateY(-2px);
}

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

@media (max-width: 600px) {
  .product-row-scroll>.dealday-box {
    flex: 0 0 250px !important;
    min-width: 250px !important;
    max-width: 250px !important;
  }
}

/* --- AS-IS REFERENCE FOOTER DESIGN (EXACT REAL HOMES THEME REPLICA) --- */
.site-footer {
  background-color: #313131 !important;
  color: #a0a0a0 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  padding: 4.5rem 0 2.5rem 0 !important;
  clip-path: polygon(0 45px, 100% 0, 100% 100%, 0 100%) !important;
  position: relative !important;
  width: 100% !important;
  box-sizing: border-box !important;
  border-top: none !important;
  margin-top: 0 !important;
}

.site-footer-container {
  max-width: 1140px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 1.5rem !important;
  box-sizing: border-box !important;
}

/* Header Row */
.sf-header-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1.5rem !important;
  padding-bottom: 2.5rem !important;
  border-bottom: none !important;
  margin-bottom: 0 !important;
}

.sf-brand {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
}

.sf-logo {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  text-decoration: none !important;
  color: #ffffff !important;
}

.sf-logo-name {
  font-weight: 800 !important;
  font-size: 1.25rem !important;
  letter-spacing: 1px !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
}

.sf-slash {
  color: rgba(255, 255, 255, 0.3) !important;
  font-size: 1.2rem !important;
  font-weight: 300 !important;
  margin: 0 0.15rem !important;
}

.sf-tagline {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.88rem !important;
  font-weight: 400 !important;
}

.sf-socials {
  display: flex !important;
  align-items: center !important;
  gap: 1.1rem !important;
}

.sf-socials a {
  color: rgba(255, 255, 255, 0.55) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: color 0.2s ease, transform 0.2s ease !important;
}

.sf-socials a:hover {
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

/* Main Grid Columns */
.sf-cols-row {
  display: grid !important;
  grid-template-columns: 1fr 1.2fr 1fr !important;
  gap: 3.5rem !important;
  padding-bottom: 3rem !important;
}

.sf-col-heading {
  color: #ffffff !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  margin-top: 0 !important;
  margin-bottom: 1.25rem !important;
  letter-spacing: 0.3px !important;
  text-transform: none !important;
}

/* Quick Links Subgrid */
.sf-links-subgrid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1rem !important;
}

.sf-link-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

.sf-link-list li {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sf-link-list li::before {
  content: none !important;
}

.sf-link-list a {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.88rem !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  transition: color 0.2s ease !important;
}

.sf-link-list a:hover {
  color: #ffffff !important;
}

.sf-arrow {
  font-size: 8px !important;
  color: rgba(255, 255, 255, 0.45) !important;
}

/* Contact Info List */
.sf-contact-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.1rem !important;
}

.sf-contact-list li {
  list-style: none !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.85rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.88rem !important;
  line-height: 1.45 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sf-contact-list li::before {
  content: none !important;
}

.sf-contact-icon {
  color: rgba(255, 255, 255, 0.5) !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

/* Form */
.sf-subscribe-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.85rem !important;
}

.sf-email-input {
  width: 100% !important;
  height: 42px !important;
  background-color: #ffffff !important;
  border: 1px solid #ffffff !important;
  border-radius: 0px !important;
  padding: 0 14px !important;
  font-size: 0.88rem !important;
  color: #333333 !important;
  outline: none !important;
  box-sizing: border-box !important;
}

.sf-email-input::placeholder {
  color: #999999 !important;
}

.sf-submit-btn {
  align-self: flex-start !important;
  background-color: #e4643b !important;
  color: #ffffff !important;
  border: none !important;
  padding: 10px 24px !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  border-radius: 0px !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease !important;
}

.sf-submit-btn:hover {
  background-color: #d3532a !important;
}

/* Bottom Bar */
.sf-bottom-bar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding-top: 1.5rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 0.82rem !important;
}

/* Scroll To Top */
.sf-scroll-top-btn {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  width: 38px !important;
  height: 38px !important;
  background-color: #26b49a !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 2px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 999 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
}

.sf-scroll-top-btn:hover {
  background-color: #1fa088 !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 992px) {
  .sf-cols-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem !important;
  }
}

@media (max-width: 600px) {
  .sf-header-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.25rem !important;
  }

  .sf-cols-row {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .sf-bottom-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
  }
}

/* ==========================================
   SITE HEADER & TRANSPARENT NAVBAR REFRESH
   ========================================== */

#site-header {
  position: relative !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: none !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  padding: 0.85rem 0 !important;
}

#site-header.header-transparent {
  background: transparent !important;
  border-bottom: none !important;
}

.nav-container {
  max-width: 1780px !important;
  width: 98% !important;
  margin: 0 auto !important;
  padding: 0 0.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.5rem !important;
  box-sizing: border-box !important;
}

/* LEFT GROUP: Logo + Links on LEFT */
.nav-left-group {
  display: flex !important;
  align-items: center !important;
  gap: 2.5rem !important;
}

.nav-container .logo {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

.nav-container .logo img {
  height: 64px !important;
  width: auto !important;
  max-width: 250px !important;
  object-fit: contain !important;
  display: block !important;
}

.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 2rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.nav-links a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  color: #1f2937 !important;
  text-transform: capitalize !important;
  text-decoration: none !important;
  padding: 0.4rem 0 !important;
  position: relative !important;
  transition: color 0.25s ease !important;
  white-space: nowrap !important;
}

.nav-links a:hover {
  color: #2d5c00 !important;
}

.nav-links a.active {
  color: #2d5c00 !important;
}

.nav-links a::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0% !important;
  height: 2.5px !important;
  background-color: #2d5c00 !important;
  transition: width 0.25s ease !important;
  border-radius: 2px !important;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100% !important;
}

/* RIGHT GROUP: Search + Contact Button on RIGHT */
.nav-right-group {
  display: flex !important;
  align-items: center !important;
  gap: 1.25rem !important;
  flex-shrink: 0 !important;
}

.nav-search-wrap,
.nav-search-input-row {
  position: relative !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.nav-search-wrap {
  width: 340px !important;
  flex-shrink: 0 !important;
}

.nav-search-input-row {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
}

.nav-search-icon {
  position: absolute !important;
  left: 14px !important;
  color: #4b5563 !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.nav-search-input {
  width: 100% !important;
  height: 42px !important;
  background-color: #ffffff !important;
  border: 1.5px solid #d1d5db !important;
  border-radius: 22px !important;
  padding: 0 36px 0 42px !important;
  font-size: 0.88rem !important;
  color: #111827 !important;
  outline: none !important;
  transition: border-color 0.2s ease !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
}

.nav-search-input:focus {
  background-color: #ffffff !important;
  border-color: #2d5c00 !important;
  outline: none !important;
  box-shadow: none !important;
}

.nav-search-clear {
  position: absolute !important;
  right: 10px !important;
  background: none !important;
  border: none !important;
  color: #9ca3af !important;
  cursor: pointer !important;
  padding: 2px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.phone-pill {
  display: flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  background-color: #2d5c00 !important;
  border: 1px solid #2d5c00 !important;
  border-radius: 30px !important;
  padding: 7px 18px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 12px rgba(45, 92, 0, 0.22) !important;
}

.phone-pill:hover {
  background-color: #234700 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(45, 92, 0, 0.3) !important;
}

.phone-pill-text {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.2 !important;
}

.phone-pill-text span:first-child {
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  opacity: 0.9 !important;
}

.phone-rate {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
}

.menu-btn {
  display: none !important;
  background: none !important;
  border: none !important;
  color: #2d3748 !important;
  cursor: pointer !important;
  padding: 6px !important;
  border-radius: 6px !important;
}

.floating-menu-btn {
  display: none !important;
}

@media (max-width: 992px) {
  .nav-links {
    display: none !important;
  }

  .menu-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .nav-search-wrap {
    width: 180px !important;
  }
}

@media (max-width: 640px) {
  .nav-search-wrap {
    display: none !important;
  }
}

/* ==========================================
   HERO BANNER WITH ROUNDED CORNERS & WIDER WIDTH
   ========================================== */

.kk-hero {
  position: relative !important;
  width: 98% !important;
  max-width: 1780px !important;
  margin: 0.5rem auto 0 auto !important;
  border-radius: 20px !important;
  min-height: 88vh !important;
  min-height: 88dvh !important;
  height: 88vh !important;
  height: 88dvh !important;
  background-color: transparent !important;
  background: transparent !important;
  border: none !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

.kk-hero-slider {
  position: relative !important;
  width: 100% !important;
  height: 88vh !important;
  height: 88dvh !important;
  min-height: 88vh !important;
  min-height: 88dvh !important;
  border-radius: 20px !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.hero-slide,
.kk-hero-slide {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out !important;
  display: flex !important;
  align-items: center !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: 20px !important;
}

.hero-slide.active,
.kk-hero-slide.active {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Linear dark gradient overlay for text readability */
.hero-slide::before,
.kk-hero-slide::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.15) 100%) !important;
  z-index: 1 !important;
  border-radius: 20px !important;
}

/* Ensure inner container has comfortable left padding shift */
.kk-hero-container {
  position: relative !important;
  z-index: 10 !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 3rem 1.5rem 1.5rem 4rem !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .kk-hero-container {
    padding: 2.5rem 1.25rem 1.5rem 2rem !important;
  }
}

/* ==========================================
   GLOBAL SECTION SPACING & GAP REDUCTION & BORDER REMOVAL
   ========================================== */

section,
main>section,
body>section,
.kk-stats-section,
.kk-solutions-section,
.kk-strengths-section,
.kk-sustainability-section,
.kk-research-section,
.kk-dealer-section,
.kk-video-section,
.kk-categories,
.kk-features,
.kk-products,
.kk-testimonial-section,
.kk-cta-section,
.section-padding,
.contact-section,
.contact-info-section,
.contact-form-section,
.about-section,
.about-mission-section,
.careers-section,
.product-detail-section,
.category-page-section,
.products-section,
.trust-indicators,
.company-overview,
.dealer-network-section,
.inquiry-section,
.tabbed-products-section {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
  border-top: none !important;
  border-bottom: none !important;
}

body>section:not(.kk-hero):not(#site-header),
main>section:not(.kk-hero) {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
  border-top: none !important;
  border-bottom: none !important;
}

.md-promo-banner {
  margin: 1.75rem 0 !important;
}

.dealer-stats-banner {
  margin-bottom: 1.75rem !important;
}

.kk-solutions-header,
.kk-strengths-header,
.kk-sustainability-title-block,
.kk-research-title,
.kk-dealer-header,
.section-header,
.section-title-wrap {
  margin-bottom: 1.5rem !important;
}

/* ==========================================
   UNIFIED HERO BANNER SIZE & STYLE FOR ALL PAGES
   (Matches Index Page .kk-hero Div Size)
   ========================================== */

.kk-hero,
.page-hero,
.contact-hero,
.about-hero,
.careers-hero,
.category-hero,
.product-hero,
section[class*="-hero"] {
  position: relative !important;
  width: 98% !important;
  max-width: 1780px !important;
  margin: 0.5rem auto 0 auto !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border: none !important;
  box-shadow: none !important;
}

.kk-hero {
  min-height: 78vh !important;
  background-color: transparent !important;
}

.page-hero,
.contact-hero,
.about-hero,
.careers-hero,
.category-hero,
.product-hero,
section[class*="-hero"]:not(.kk-hero) {
  min-height: 500px !important;
  display: flex !important;
  align-items: center !important;
}

/* Page Hero Dark Overlay for readable text */
.page-hero-overlay,
.page-hero::before,
.contact-hero::before,
.about-hero::before,
.careers-hero::before,
section[class*="-hero"]:not(.kk-hero)::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 55%, rgba(0, 0, 0, 0.2) 100%) !important;
  z-index: 1 !important;
  border-radius: 20px !important;
}

/* Inner hero content container spacing across all pages */
.page-hero-content,
.contact-hero-content,
.about-hero-content,
.careers-hero-content,
.category-hero-content,
.product-hero-content {
  position: relative !important;
  z-index: 10 !important;
  max-width: 1780px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 5rem 2.5rem 3rem 2.5rem !important;
  box-sizing: border-box !important;
}

/* Footer & Navbar Logo Size Increase */
.sf-logo img {
  height: 66px !important;
  width: auto !important;
  max-width: 260px !important;
  object-fit: contain !important;
  display: block !important;
}

/* ==========================================
   MOBILE HAMBURGER MENU & DRAWER STYLES
   ========================================== */

.menu-btn {
  display: none !important;
  background: #ffffff !important;
  border: 1px solid #d1d5db !important;
  border-radius: 10px !important;
  width: 42px !important;
  height: 42px !important;
  align-items: center !important;
  justify-content: center !important;
  color: #111827 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
  flex-shrink: 0 !important;
}

.menu-btn:hover {
  background: #f3f4f6 !important;
  border-color: #2d5c00 !important;
  color: #2d5c00 !important;
}

@media (max-width: 992px) {
  .menu-btn {
    display: flex !important;
  }

  .nav-links {
    display: none !important;
  }

  .nav-search-wrap {
    width: 220px !important;
  }
}

@media (max-width: 680px) {
  .nav-search-wrap {
    display: none !important;
  }

  .phone-pill {
    display: none !important;
  }
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(4px) !important;
  z-index: 99999 !important;
  display: flex !important;
  justify-content: flex-end !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease !important;
}

.mobile-drawer-overlay.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.mobile-drawer-card {
  width: 320px !important;
  max-width: 85% !important;
  height: 100% !important;
  background: #ffffff !important;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: 1.5rem !important;
  transform: translateX(100%) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-sizing: border-box !important;
}

.mobile-drawer-overlay.active .mobile-drawer-card {
  transform: translateX(0) !important;
}

.mobile-drawer-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-bottom: 1.25rem !important;
  border-bottom: 1px solid #f3f4f6 !important;
}

.mobile-drawer-close-btn {
  background: #f3f4f6 !important;
  border: none !important;
  font-size: 1.8rem !important;
  color: #374151 !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

.mobile-drawer-body {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  flex: 1 !important;
  padding-top: 1.5rem !important;
}

.mobile-drawer-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

.mobile-drawer-links a {
  font-family: var(--font-barlow, -apple-system, sans-serif) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  text-decoration: none !important;
  padding: 0.75rem 1rem !important;
  border-radius: 10px !important;
  transition: all 0.2s ease !important;
}

.mobile-drawer-links a:hover {
  background: rgba(45, 92, 0, 0.08) !important;
  color: #2d5c00 !important;
}

.mobile-drawer-footer {
  padding-top: 1.5rem !important;
  border-top: 1px solid #f3f4f6 !important;
}

.mobile-drawer-phone {
  display: flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  background: #2d5c00 !important;
  color: #ffffff !important;
  padding: 0.85rem 1.25rem !important;
  border-radius: 25px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  justify-content: center !important;
}

/* ============================================================
   GLOBAL MOBILE & TABLET RESPONSIVENESS & UTILITY OVERRIDES
   ============================================================ */

/* Medium & Tablet Screens (max-width: 992px) */
@media (max-width: 992px) {
  .nav-container {
    padding: 0 1rem !important;
  }

  .nav-links {
    display: none !important;
  }

  .phone-pill {
    display: none !important;
  }

  .menu-btn {
    display: flex !important;
  }

  .nav-search-wrap {
    display: none !important;
  }

  /* Fix promo banner cards text overlap on mobile */
  .md-promo-card-light,
  .md-promo-card-green,
  .md-promo-card-dark {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 2.5rem 1.75rem !important;
    text-align: center !important;
  }

  .md-promo-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .md-promo-main-heading,
  .md-promo-dark-title {
    font-size: 2rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.75rem !important;
  }

  .md-promo-tagline {
    font-size: 1.05rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.4 !important;
  }

  .md-promo-img-primary {
    max-width: 260px !important;
    margin: 0 auto !important;
  }

  .kk-hero-title {
    font-size: 2.1rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.75rem !important;
  }

  .kk-hero-desc {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    margin-bottom: 1.25rem !important;
  }

  .kk-hero-container {
    padding: 3.5rem 1.25rem 1.5rem 1.25rem !important;
  }

  .page-hero,
  .category-hero,
  .product-hero,
  section[class*="-hero"]:not(.kk-hero) {
    min-height: 420px !important;
    width: 96% !important;
    border-radius: 16px !important;
    margin: 0.5rem auto !important;
  }

  .page-hero-title,
  .contact-hero-title,
  .about-hero-title,
  .careers-hero-title {
    font-size: 2.1rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.75rem !important;
  }

  .page-hero-subtitle,
  .contact-hero-subtitle,
  .about-hero-subtitle,
  .careers-hero-subtitle {
    font-size: 1rem !important;
    line-height: 1.4 !important;
  }

  .page-hero-content,
  .contact-hero-content,
  .about-hero-content,
  .careers-hero-content,
  .category-hero-content,
  .product-hero-content {
    padding: 3.5rem 1.25rem 2rem 1.25rem !important;
  }

  .sf-cols-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
  }
}

/* Small Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
  .nav-search-wrap {
    display: none !important;
  }

  .phone-pill {
    display: none !important;
  }

  .nav-container {
    padding: 0 0.75rem !important;
  }

  .logo img {
    height: 48px !important;
  }

  .kk-hero-title {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
  }

  .kk-hero-desc {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
  }

  .page-hero,
  .category-hero,
  .product-hero,
  section[class*="-hero"]:not(.kk-hero) {
    min-height: 350px !important;
    width: 95% !important;
    border-radius: 14px !important;
    margin: 0.5rem auto !important;
  }

  .page-hero-title,
  .contact-hero-title,
  .about-hero-title,
  .careers-hero-title {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
  }

  .page-hero-subtitle,
  .contact-hero-subtitle,
  .about-hero-subtitle,
  .careers-hero-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
  }

  section,
  main,
  .careers-container,
  .contact-container,
  .about-container {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .jobs-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .form-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .sf-header-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.25rem !important;
  }

  .sf-cols-row {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .sf-bottom-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
  }

  .sf-logo img {
    height: 52px !important;
  }
}

/* Extra Small Screens (max-width: 480px) */
@media (max-width: 480px) {
  body {
    font-size: 15px !important;
  }

  .logo img {
    height: 46px !important;
  }

  .page-hero-title,
  .contact-hero-title,
  .about-hero-title,
  .careers-hero-title {
    font-size: 1.65rem !important;
  }

  .job-card,
  .apply-card {
    padding: 1.5rem 1rem !important;
    border-radius: 14px !important;
  }

  .btn-apply,
  .btn-submit-app {
    height: 48px !important;
    font-size: 0.9rem !important;
  }
}

/* ==========================================
   PRODUCTS NAVBAR DROPDOWN MENU STYLES
   ========================================== */

.nav-dropdown-wrap {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
}

.nav-dropdown-trigger,
.dropdown-trigger {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  cursor: pointer !important;
}

.chevron-down,
.dropdown-chevron {
  font-size: 0.75rem !important;
  display: inline-block !important;
  transition: transform 0.25s ease !important;
  margin-left: 0.25rem !important;
}

.nav-dropdown-wrap:hover .chevron-down,
.nav-dropdown-wrap:hover .dropdown-chevron,
.dropdown-trigger:hover .chevron-down {
  transform: rotate(180deg) !important;
}

.nav-dropdown-menu {
  position: absolute !important;
  top: calc(100% + 12px) !important;
  left: -20px !important;
  top: calc(100% + 14px) !important;
  left: 50% !important;
  transform: translateX(-35%) translateY(-10px) !important;
  width: 1180px !important;
  max-width: 92vw !important;
  background: #ffffff !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18) !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 99999 !important;
}

/* ============================================================
   EXACT REPLICATED MEGA DROPDOWN MENU (MATCHING USER SCREENSHOT)
   ============================================================ */

.mega-dropdown-wrap {
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
}

#site-header {
  position: relative !important;
}

.mega-dropdown-panel {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  transform: none !important;
  margin-top: 0 !important;
  background: #ffffff !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18) !important;
  border-top: 1px solid #e2e8f0 !important;
  border-bottom: 4px solid #45750F !important;
  display: none !important;
  z-index: 99999 !important;
  padding: 0 !important;
}

.mega-dropdown-panel::before {
  content: '' !important;
  position: absolute !important;
  top: -30px !important;
  left: 0 !important;
  right: 0 !important;
  height: 30px !important;
  background: transparent !important;
  pointer-events: auto !important;
}

.mega-dropdown-wrap:hover .mega-dropdown-panel,
.dropdown-trigger:hover+.mega-dropdown-panel,
.mega-dropdown-panel:hover,
.mega-dropdown-panel.is-open {
  display: block !important;
}

.mega-dropdown-inner {
  width: 100% !important;
  max-width: 1550px !important;
  margin: 0 auto !important;
  padding: 0 3rem !important;
  display: grid !important;
  grid-template-columns: 320px 1px 1fr !important;
  min-height: 440px !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
}

/* Left Column Categories */
.mega-left-col {
  padding: 2.5rem 1.5rem 1.5rem 2rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  background: #ffffff !important;
}

.mega-cat-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.2rem !important;
}

.mega-cat-link {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-family: var(--font-barlow, -apple-system, sans-serif) !important;
  font-size: 1.55rem !important;
  font-weight: 800 !important;
  color: #cbd5e1 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: -0.3px !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  border: none !important;
  background: transparent !important;
  padding: 0.6rem 0 !important;
  width: 100% !important;
  text-align: left !important;
}

.mega-cat-link:hover,
.mega-cat-link.active {
  color: #000000 !important;
  font-weight: 900 !important;
}

.cat-arrow {
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  color: #000000 !important;
  margin-left: 1rem !important;
}

.mega-mascot-wrap {
  padding-top: 2rem !important;
}

/* Divider Line */
.mega-divider {
  background: #e2e8f0 !important;
  height: 100% !important;
  width: 1px !important;
}

/* Right Products Panel */
.mega-right-col {
  padding: 2.5rem 3rem !important;
  background: #ffffff !important;
}

.mega-products-title {
  font-family: var(--font-barlow, -apple-system, sans-serif) !important;
  font-size: 1.15rem !important;
  color: #000000 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 0.75rem !important;
}

.title-underline {
  height: 1px !important;
  background: #e2e8f0 !important;
  width: 100% !important;
  margin-bottom: 1.5rem !important;
}

.mega-columns-wrap {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0.4rem 3rem !important;
}

.mega-products-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.mega-products-list li {
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  font-size: 0.85rem !important;
  font-family: var(--font-albert, -apple-system, sans-serif) !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

.mega-products-list li::before,
.mega-products-list a::before {
  content: none !important;
  display: none !important;
}

.mega-products-list a {
  display: inline-block !important;
  color: #1e293b !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  line-height: 1.5 !important;
  transition: color 0.15s ease !important;
}

.mega-products-list a:hover {
  color: #45750F !important;
  font-weight: 600 !important;
}

.nav-dropdown-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.35rem !important;
}

.nav-dropdown-item {
  display: flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
  padding: 0.75rem 0.85rem !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  transition: background 0.2s ease !important;
}

.nav-dropdown-item:hover {
  background: rgba(45, 92, 0, 0.06) !important;
}

.dropdown-icon-box {
  width: 38px !important;
  height: 38px !important;
  border-radius: 8px !important;
  background: rgba(45, 92, 0, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  flex-shrink: 0 !important;
}

.dropdown-text {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.15rem !important;
}

.dropdown-text strong {
  font-family: var(--font-barlow, -apple-system, sans-serif) !important;
  font-size: 0.95rem !important;
  color: #111827 !important;
  font-weight: 700 !important;
}

.dropdown-text span {
  font-size: 0.78rem !important;
  color: #6b7280 !important;
  font-weight: 500 !important;
}

.view-all-item {
  background: #f9fafb !important;
  border-top: 1px solid #f3f4f6 !important;
  margin-top: 0.35rem !important;
}

.view-all-item strong {
  color: #2d5c00 !important;
}

/* Hamburger & Floating Menu Buttons */
.menu-btn {
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(45, 92, 0, 0.08) !important;
  border: 1px solid rgba(45, 92, 0, 0.2) !important;
  color: #1e293b !important;
  padding: 8px 12px !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  z-index: 1001 !important;
  transition: all 0.2s ease !important;
}

.menu-btn:hover,
.menu-btn:active {
  background: #45750F !important;
  color: #ffffff !important;
  border-color: #45750F !important;
}

@media (max-width: 992px) {
  .menu-btn {
    display: flex !important;
  }
}

.floating-menu-btn {
  position: fixed !important;
  bottom: 25px !important;
  right: 25px !important;
  z-index: 99990 !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background: #45750F !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 10px 25px rgba(69, 117, 15, 0.4) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
}

.floating-menu-btn.visible {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Mobile Drawer Overlay & Card Styles */
.mobile-drawer-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(4px) !important;
  z-index: 999999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
  display: flex !important;
  justify-content: flex-end !important;
}

.mobile-drawer-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-drawer-card {
  width: 85% !important;
  max-width: 360px !important;
  height: 100% !important;
  background: #ffffff !important;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2) !important;
  display: flex !important;
  flex-direction: column !important;
  transform: translateX(100%) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow-y: auto !important;
}

.mobile-drawer-overlay.active .mobile-drawer-card {
  transform: translateX(0) !important;
}

.mobile-drawer-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 1.25rem 1.5rem !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.mobile-drawer-close-btn {
  background: transparent !important;
  border: none !important;
  font-size: 2rem !important;
  color: #1e293b !important;
  cursor: pointer !important;
  line-height: 1 !important;
  padding: 0 0.5rem !important;
}

.mobile-drawer-body {
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
  flex: 1 !important;
}

.mobile-drawer-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}

.mobile-drawer-links a {
  font-family: var(--font-barlow, sans-serif) !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  text-decoration: none !important;
  padding: 0.5rem 0 !important;
  transition: color 0.2s ease !important;
}

.mobile-drawer-links a:hover,
.mobile-drawer-links a.active {
  color: #45750F !important;
}

.mobile-drawer-dropdown {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.mobile-parent-link {
  color: #45750F !important;
}

.mobile-drawer-sublinks {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.4rem !important;
  padding-left: 1rem !important;
  border-left: 2px solid rgba(45, 92, 0, 0.2) !important;
  margin-left: 0.5rem !important;
}

.mobile-drawer-sublinks a {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #4b5563 !important;
  padding: 0.4rem 0.5rem !important;
}

.mobile-drawer-footer {
  margin-top: auto !important;
  padding-top: 1.5rem !important;
  border-top: 1px solid #e2e8f0 !important;
}

.mobile-drawer-phone {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  background: #f1f5f9 !important;
  padding: 0.85rem 1.25rem !important;
  border-radius: 12px !important;
  color: #45750F !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
}

/* ============================================================
   MD AGRO PROMOTIONAL POSTERS / BANNERS
   ============================================================ */

.md-promo-banner {
  margin: 4rem 0 !important;
  width: 100% !important;
}

/* Style 1: Light Grey & Red Accent Banner */
.md-promo-card-light {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 24px !important;
  padding: 1.75rem 3rem !important;
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr !important;
  align-items: center !important;
  gap: 2rem !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06) !important;
  position: relative !important;
  overflow: hidden !important;
}

.md-promo-badge-red {
  display: inline-block !important;
  background: #45750F !important;
  color: #ffffff !important;
  font-family: var(--font-barlow, sans-serif) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  padding: 0.3rem 1rem !important;
  border-radius: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 0.5rem !important;
}

.md-promo-subtext {
  font-family: var(--font-barlow, sans-serif) !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  margin-bottom: 0.25rem !important;
  letter-spacing: -0.5px !important;
}

.md-promo-main-heading {
  font-family: var(--font-barlow, sans-serif) !important;
  font-size: 2.5rem !important;
  font-weight: 900 !important;
  color: #2d5c00 !important;
  line-height: 1.1 !important;
  margin-bottom: 0.5rem !important;
  text-transform: uppercase !important;
}

.md-promo-tagline {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #334155 !important;
  margin-bottom: 1.25rem !important;
}

.md-promo-badges-row {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
}

.md-promo-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background: #ffffff !important;
  border: 1.5px solid #45750F !important;
  color: #45750F !important;
  font-weight: 800 !important;
  font-size: 0.92rem !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(69, 117, 15, 0.08) !important;
}

.md-promo-image-group {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}

.md-promo-img-primary {
  max-width: 380px !important;
  height: auto !important;
  border-radius: 16px !important;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.35)) !important;
  transition: transform 0.3s ease !important;
  background: transparent !important;
  border: none !important;
}

.md-promo-card-light:hover .md-promo-img-primary,
.md-promo-card-green:hover .md-promo-img-primary,
.md-promo-card-dark:hover .md-promo-img-primary {
  transform: scale(1.04) translateY(-5px) !important;
}

/* Style 2: Deep Emerald Green & Gold Banner */
.md-promo-card-green {
  background: linear-gradient(135deg, #143800 0%, #2D5C00 100%) !important;
  border-radius: 24px !important;
  padding: 1.75rem 3rem !important;
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr !important;
  align-items: center !important;
  gap: 2rem !important;
  box-shadow: 0 15px 40px rgba(45, 92, 0, 0.25) !important;
  position: relative !important;
  overflow: hidden !important;
  color: #ffffff !important;
}

.md-promo-tag-gold {
  display: inline-block !important;
  background: rgba(255, 255, 255, 0.15) !important;
  color: #fef08a !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  letter-spacing: 2px !important;
  padding: 0.35rem 1rem !important;
  border-radius: 20px !important;
  text-transform: uppercase !important;
  margin-bottom: 0.5rem !important;
  border: 1px solid rgba(254, 240, 138, 0.3) !important;
}

.md-promo-green-title {
  font-family: var(--font-barlow, sans-serif) !important;
  font-size: 2.3rem !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
  margin-bottom: 0.5rem !important;
  text-transform: uppercase !important;
}

.md-promo-green-subtitle {
  font-size: 1.1rem !important;
  color: #bbf7d0 !important;
  font-weight: 600 !important;
  margin-bottom: 1.25rem !important;
}

.md-promo-btn-white {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  background: #ffffff !important;
  color: #2d5c00 !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  padding: 0.75rem 1.75rem !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.25s ease !important;
}

.md-promo-btn-white:hover {
  background: #fef08a !important;
  color: #143800 !important;
  transform: translateY(-2px) !important;
}

/* Style 3: Modern Dark Navy Banner */
.md-promo-card-dark {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%) !important;
  border: 1px solid #334155 !important;
  border-radius: 24px !important;
  padding: 1.75rem 3rem !important;
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr !important;
  align-items: center !important;
  gap: 2rem !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
  position: relative !important;
  overflow: hidden !important;
  color: #ffffff !important;
}

.md-promo-dark-title {
  font-family: var(--font-barlow, sans-serif) !important;
  font-size: 2.3rem !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
  margin-bottom: 0.5rem !important;
  text-transform: uppercase !important;
}

.md-promo-btn-red {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  background: #45750F !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  padding: 0.85rem 2rem !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(69, 117, 15, 0.3) !important;
  transition: all 0.25s ease !important;
}

.md-promo-btn-red:hover {
  background: #2d5c00 !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 992px) {

  .md-promo-card-light,
  .md-promo-card-green,
  .md-promo-card-dark {
    grid-template-columns: 1fr !important;
    padding: 2.5rem 2rem !important;
    gap: 2rem !important;
    text-align: center !important;
  }

  .md-promo-badges-row {
    justify-content: center !important;
  }

  .md-promo-main-heading,
  .md-promo-green-title,
  .md-promo-dark-title {
    font-size: 2.2rem !important;
  }
}

/* ============================================================
   MD AGRO DEALER NETWORK SECTION (EQUAL CONTAINER WIDTH)
   ============================================================ */
.kk-dealer-section-banner {
  margin: 4rem auto !important;
  width: 100% !important;
}

.kk-dealer-card-wrap {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 24px !important;
  padding: 3.5rem 4rem !important;
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr !important;
  align-items: center !important;
  gap: 3rem !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
  position: relative !important;
  overflow: hidden !important;
  color: #ffffff !important;
}

.kk-dealer-tag {
  display: inline-block !important;
  background: rgba(69, 117, 15, 0.2) !important;
  color: #a3e635 !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  letter-spacing: 2px !important;
  padding: 0.4rem 1.2rem !important;
  border-radius: 20px !important;
  text-transform: uppercase !important;
  margin-bottom: 1.2rem !important;
  border: 1px solid rgba(163, 230, 53, 0.3) !important;
}

.kk-dealer-title-text {
  font-family: var(--font-barlow, sans-serif) !important;
  font-size: 2.8rem !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
  margin-bottom: 1rem !important;
  text-transform: uppercase !important;
  letter-spacing: -0.5px !important;
}

.kk-dealer-desc-text {
  font-size: 1.15rem !important;
  color: #cbd5e1 !important;
  line-height: 1.6 !important;
  margin-bottom: 2rem !important;
  max-width: 540px !important;
}

.kk-dealer-features-grid {
  display: flex !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
  margin-bottom: 2.2rem !important;
}

.kk-dealer-feature-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 10px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: #f8fafc !important;
}

.kk-dealer-action-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  background: #45750F !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  padding: 0.95rem 2.4rem !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(69, 117, 15, 0.35) !important;
  transition: all 0.25s ease !important;
  letter-spacing: 0.5px !important;
}

.kk-dealer-action-btn:hover {
  background: #2d5c00 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(69, 117, 15, 0.45) !important;
}

.kk-dealer-img-box {
  position: relative !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
  border: 2px solid rgba(255, 255, 255, 0.15) !important;
}

.kk-dealer-img-box img {
  width: 100% !important;
  height: 340px !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}

.kk-dealer-card-wrap:hover .kk-dealer-img-box img {
  transform: scale(1.05) !important;
}

.kk-dealer-img-overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 100%) !important;
  padding: 1.25rem 1.5rem !important;
  color: #ffffff !important;
}

@media (max-width: 992px) {
  .kk-dealer-card-wrap {
    grid-template-columns: 1fr !important;
    padding: 2.5rem 2rem !important;
    gap: 2rem !important;
    text-align: center !important;
  }

  .kk-dealer-desc-text {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .kk-dealer-features-grid {
    justify-content: center !important;
  }

  .kk-dealer-title-text {
    font-size: 2.2rem !important;
  }

  .kk-dealer-img-box img {
    height: 240px !important;
  }
}

/* ============================================================
   EXACT KISANKRAFT MEGA DROPDOWN REPLICA (3-COLUMN HIERARCHY)
   ============================================================ */

.mega-dropdown-inner-kisankraft {
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 2.5rem 3rem !important;
  display: grid !important;
  grid-template-columns: 240px 240px 1px 1fr !important;
  min-height: 420px !important;
  gap: 2rem !important;
  background: #ffffff !important;
}

/* Col 1: Super Categories */
.kk-col-super-cats {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
}

.kk-super-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-family: var(--font-barlow, sans-serif) !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: #cbd5e1 !important;
  /* light gray for inactive */
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.kk-super-item.active,
.kk-super-item:hover {
  color: #0f172a !important;
  /* bold dark for active */
}

/* Col 2: Subcategories List */
.kk-col-sub-cats {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}

.kk-sub-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-family: var(--font-barlow, sans-serif) !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #1e293b !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
}

.kk-sub-item.active,
.kk-sub-item:hover {
  color: #45750F !important;
}

.kk-arrow {
  font-size: 1.1rem !important;
  font-weight: 900 !important;
  margin-left: 0.5rem !important;
}

/* Vertical Divider Line */
.kk-vertical-divider {
  background: #e2e8f0 !important;
  height: 100% !important;
  width: 1px !important;
}

/* Col 3: Products Grid */
.kk-col-products-grid {
  padding-left: 1.5rem !important;
}

.kk-products-title {
  font-family: var(--font-barlow, sans-serif) !important;
  font-size: 1.35rem !important;
  color: #0f172a !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 1.5rem !important;
}

.kk-products-cols {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1.25rem 3rem !important;
}

.kk-products-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.9rem !important;
}

.kk-products-list li {
  position: relative !important;
  padding-left: 1.2rem !important;
  margin: 0 !important;
}

.kk-products-list li::before {
  content: "•" !important;
  position: absolute !important;
  left: 0 !important;
  top: -2px !important;
  color: #0f172a !important;
  font-size: 1.2rem !important;
}

.kk-products-list a {
  font-family: var(--font-albert, sans-serif) !important;
  font-size: 0.92rem !important;
  color: #334155 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  line-height: 1.4 !important;
  transition: color 0.2s ease !important;
  display: inline-block !important;
}

.kk-products-list a:hover {
  color: #45750F !important;
  text-decoration: underline !important;
}

/* KisanKraft Header Pill Buttons */
.kk-header-btn-cart,
.kk-header-btn-contact {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  background: #0f172a !important;
  color: #ffffff !important;
  font-family: var(--font-barlow, sans-serif) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 1px !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 20px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.kk-header-btn-cart:hover,
.kk-header-btn-contact:hover {
  background: #45750F !important;
  transform: translateY(-1px) !important;
}

/* ============================================================
   MOBILE NAVIGATION DRAWER OVERLAY & RESPONSIVE DRAWER STYLES
   ============================================================ */

.mobile-drawer-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.65) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  z-index: 999999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  justify-content: flex-end !important;
}

.mobile-drawer-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-drawer-card {
  width: 85% !important;
  max-width: 360px !important;
  height: 100% !important;
  background: #ffffff !important;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25) !important;
  display: flex !important;
  flex-direction: column !important;
  transform: translateX(100%) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow-y: auto !important;
  position: relative !important;
  z-index: 1000000 !important;
}

.mobile-drawer-overlay.active .mobile-drawer-card {
  transform: translateX(0) !important;
}

.mobile-drawer-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 1.25rem 1.5rem !important;
  border-bottom: 1px solid #e2e8f0 !important;
  background: #ffffff !important;
}

.mobile-drawer-close-btn {
  background: #f1f5f9 !important;
  border: none !important;
  font-size: 1.8rem !important;
  color: #0f172a !important;
  cursor: pointer !important;
  line-height: 1 !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s ease !important;
}

.mobile-drawer-close-btn:hover {
  background: #e2e8f0 !important;
}

.mobile-drawer-body {
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
  flex: 1 !important;
}

.mobile-drawer-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.mobile-drawer-links a {
  font-family: var(--font-barlow, -apple-system, sans-serif) !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  text-decoration: none !important;
  padding: 0.65rem 0.85rem !important;
  border-radius: 8px !important;
  transition: background 0.2s ease, color 0.2s ease !important;
}

.mobile-drawer-links a:hover {
  background: rgba(69, 117, 15, 0.08) !important;
  color: #45750F !important;
}

.mobile-drawer-dropdown {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.mobile-parent-link {
  color: #45750F !important;
  font-weight: 800 !important;
}

.mobile-drawer-sublinks {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.4rem !important;
  padding-left: 1rem !important;
  border-left: 2.5px solid #45750F !important;
  margin-left: 0.85rem !important;
}

.mobile-drawer-sublinks a {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #475569 !important;
  padding: 0.4rem 0.5rem !important;
}

.mobile-drawer-sublinks a:hover {
  color: #45750F !important;
}

.mobile-drawer-footer {
  margin-top: auto !important;
  padding-top: 1.5rem !important;
  border-top: 1px solid #e2e8f0 !important;
}

.mobile-drawer-phone {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.75rem !important;
  background: #45750F !important;
  padding: 0.85rem 1.25rem !important;
  border-radius: 12px !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(69, 117, 15, 0.25) !important;
}

/* Strict override: Hamburger side-drawer and toggle buttons strictly hidden on Desktop view (> 992px) */
@media (min-width: 993px) {

  .mobile-nav,
  .drawer-backdrop,
  .mobile-drawer-overlay,
  .floating-menu-btn,
  #floating-menu-btn,
  .menu-btn,
  #mobile-menu-btn,
  .md-agro-hamburger-btn {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* ============================================================
   COMPLETE RESPONSIVE MEDIA QUERIES FOR ALL SCREEN BREAKPOINTS
   (1920px, 1440px, 1024px, 768px, 425px, 375px, 320px)
   ============================================================ */

/* 1. Large Screens & Laptops (min-width: 1440px) */
@media (min-width: 1440px) {
  .product-grid.kk-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.75rem !important;
  }
}

/* 2. Standard Desktop / Small Laptops (1024px to 1439px) */
@media (max-width: 1439px) and (min-width: 1024px) {
  .product-grid.kk-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }

  .catalog-content-layout {
    grid-template-columns: 260px 1fr !important;
    gap: 1.5rem !important;
  }
}

/* 3. Tablets & Mobile Devices (max-width: 1023px) */
@media (max-width: 1023px) {

  /* Catalog & Product Detail Layouts */
  .catalog-content-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }

  .sidebar-filters {
    width: 100% !important;
    background: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 14px !important;
    padding: 1.25rem !important;
  }

  .price-inputs {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
  }

  .price-inputs input {
    width: 100% !important;
    padding: 0.6rem 0.75rem !important;
    font-size: 0.9rem !important;
  }

  .product-detail-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .product-gallery,
  .product-info {
    width: 100% !important;
  }

  /* Contact & Forms Layout */
  .contact-layout,
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  /* Grid scaling for 2 columns on tablet */
  .product-grid.kk-grid,
  .parts-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
  }
}

/* 4. Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {

  /* Category Tabs Horizontal Scroll */
  .catalog-category-tabs {
    display: flex !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    gap: 0.5rem !important;
    padding-bottom: 0.75rem !important;
    margin-bottom: 1.5rem !important;
    scrollbar-width: none !important;
  }

  .catalog-category-tabs::-webkit-scrollbar {
    display: none !important;
  }

  .cat-tab {
    flex-shrink: 0 !important;
    padding: 0.6rem 1.2rem !important;
    font-size: 0.95rem !important;
  }

  /* Hero Section scaling */
  .page-hero,
  .kk-hero,
  section[class*="-hero"] {
    min-height: auto !important;
    padding: 3rem 1rem 2rem 1rem !important;
  }

  .page-hero-title,
  .hero-title,
  h1.page-title {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.75rem !important;
  }

  .page-hero-subtitle,
  .hero-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
  }

  /* Product Cards & Buttons */
  .product-card,
  .kk-card {
    padding: 0.85rem !important;
    border-radius: 12px !important;
  }

  .product-card img,
  .kk-card img {
    height: 160px !important;
    object-fit: contain !important;
  }

  .product-title,
  .kk-card-title {
    font-size: 0.95rem !important;
    line-height: 1.3 !important;
  }

  .product-price,
  .kk-card-price {
    font-size: 1.05rem !important;
  }

  .product-actions,
  .action-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.65rem !important;
    width: 100% !important;
  }

  .btn-buy-now,
  .btn-add-cart,
  .btn-whatsapp-enquiry,
  .btn-primary,
  .btn-secondary {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 0.75rem 1rem !important;
  }
}

/* 5. Extra Small Mobile Screens (max-width: 425px) */
@media (max-width: 425px) {

  .product-grid.kk-grid,
  .parts-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .page-hero-title,
  .hero-title {
    font-size: 1.5rem !important;
  }

  .container {
    padding: 0 0.85rem !important;
  }
}

/* 6. Ultra Small Mobile Screens (max-width: 340px) */
@media (max-width: 340px) {
  body {
    font-size: 14px !important;
  }

  .top-announcement-bar {
    font-size: 0.7rem !important;
    padding: 0.35rem 0.25rem !important;
  }

  .logo img {
    height: 32px !important;
  }
}

/* ============================================================
   REDUCED GAPS BETWEEN SECTIONS ACROSS ALL PAGES
   ============================================================ */
section {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

/* Hero sections keep their own spacing */
section.kk-hero,
section[class*="-hero"] {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Promo banners tighter */
.md-promo-banner {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/* Section titles reduce bottom margin */
.section-title {
  margin-bottom: 1.25rem !important;
}

/* Spotlight sections */
.spotlight-section {
  padding-top: 1rem !important;
  padding-bottom: 1.5rem !important;
}

/* Tabbed products section */
.tabbed-products-section {
  padding-top: 1.25rem !important;
  padding-bottom: 1.5rem !important;
}

/* About summary, solutions, strengths, sustainability */
.about-summary,
.kk-solutions-section,
.kk-strengths-section,
.kk-sustainability-section,
.kk-find-us-section,
.kk-dealer-section-banner {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

/* Contact, Careers, Catalog pages */
.catalog-main {
  padding-top: 1rem !important;
  padding-bottom: 1.5rem !important;
}

@media (max-width: 768px) {
  section {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .about-summary,
  .kk-solutions-section,
  .kk-strengths-section,
  .kk-sustainability-section,
  .kk-find-us-section,
  .kk-dealer-section-banner {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}

/* --- CATALOG PAGE SIDEBAR FILTERS & RESPONSIVE LAYOUT --- */
.catalog-content-layout {
  display: grid !important;
  grid-template-columns: 260px 1fr !important;
  gap: 2rem !important;
  align-items: start !important;
  margin-top: 1.5rem !important;
}

.sidebar-filters {
  position: sticky !important;
  top: 100px !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 1.25rem !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
  z-index: 10 !important;
}

.filter-section h3 {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin-bottom: 0.6rem !important;
  border-bottom: 2px solid #f3f4f6 !important;
  padding-bottom: 0.35rem !important;
}

.sort-option {
  padding: 0.5rem 0.75rem !important;
  border-radius: 6px !important;
  background-color: #f9fafb !important;
  color: #374151 !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  margin-bottom: 0.4rem !important;
  transition: all 0.2s ease !important;
  border: 1px solid #e5e7eb !important;
}

.sort-option:hover,
.sort-option.active {
  background-color: #45750F !important;
  color: #ffffff !important;
  border-color: #45750F !important;
}

.price-inputs {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  margin-bottom: 0.75rem !important;
}

.price-inputs input {
  width: 100% !important;
  padding: 0.45rem 0.6rem !important;
  border: 1px solid #d1d5db !important;
  border-radius: 6px !important;
  font-size: 0.85rem !important;
}

.btn-filter-apply {
  width: 100% !important;
  background-color: #45750F !important;
  color: #ffffff !important;
  border: none !important;
  padding: 0.55rem 1rem !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease !important;
}

.btn-filter-apply:hover {
  background-color: #365c0c !important;
}

/* Mobile view fixes for sidebar-filters */
@media (max-width: 991px) {
  .catalog-content-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
  }

  .sidebar-filters {
    position: relative !important;
    position: static !important;
    top: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 0.5rem !important;
    padding: 1rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    align-items: flex-start !important;
  }

  .sidebar-filters .filter-section {
    flex: 1 1 220px !important;
    margin-top: 0 !important;
  }
}

/* Responsive Table Wrapper */
.table-responsive {
  width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  margin-bottom: 1rem !important;
}

/* Prevent body scrolling when mobile drawer is open */
body.menu-open {
  overflow: hidden !important;
}