/* Core Design Variables */
:root {
  --primary-color: #027a08;
  --primary-hover: #015906;
  --bg-light: #ffffff;
  --bg-gray: #f8f9fa;
  --bg-dark: #1f2024;
  --text-main: #2b2b2b;
  --text-muted: #6c757d;
  --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700&display=swap');

html {
  font-size: 16px;
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin-bottom: 60px;
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-gray);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--bg-dark);
}

.modern-hero {
  position: relative;
  padding: 260px 0 100px 0;
  /* Huge padding to clear the massive sticky header */
  background: linear-gradient(135deg, rgba(2, 122, 8, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.modern-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(2, 122, 8, 0.08) 0%, rgba(2, 122, 8, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.modern-hero-content {
  position: relative;
  z-index: 2;
}

.modern-hero-title {
  font-size: clamp(3.5rem, 6vw, 6rem);
  /* Larger, more premium font */
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #1f2024, var(--primary-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modern-hero-p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 30px;
}

.btn-modern {
  background: var(--primary-color);
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(2, 122, 8, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-modern:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 122, 8, 0.5);
  color: white;
  text-decoration: none;
}

.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.category-img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.glass-card:hover .category-img {
  transform: scale(1.05);
}

.category-content {
  padding: 30px;
  text-align: center;
}

.category-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.category-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
}

.premium-section {
  padding: 120px 0;
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  font-size: 3rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: var(--primary-color);
  border-radius: 3px;
}

/* Base override for layout padding usually added by .pb-3 */
main.pb-3 {
  padding-bottom: 0 !important;
}

.container-fluid.modern-fluid {
  width: 100%;
  padding-left: 5vw;
  padding-right: 5vw;
}

/* --- Modern Header Overrides --- */
#pq-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.pq-bottom-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

#pq-main-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#pq-main-menu>li>a {
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-main) !important;
  text-transform: capitalize;
  font-size: 15px;
  padding: 25px 12px;
  transition: color 0.3s ease;
  text-decoration: none;
}

#pq-main-menu>li>a:hover,
#pq-main-menu>li:hover>a {
  color: var(--primary-color) !important;
}

.pq-menu-contain ul.sub-menu {
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-hover) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  background: white !important;
}

.pq-menu-contain ul.sub-menu li a {
  font-size: 14px !important;
  padding: 10px 20px !important;
  transition: all 0.2s ease;
}

.pq-menu-contain ul.sub-menu li a:hover {
  background: var(--bg-gray) !important;
  color: var(--primary-color) !important;
}

/* Search and Cart Tools */
.ti-search,
.ti-shopping-cart,
.fas.fa-bars {
  color: var(--text-main) !important;
  transition: color 0.3s;
}

.ti-search:hover,
.ti-shopping-cart:hover,
.fas.fa-bars:hover {
  color: var(--primary-color) !important;
}

/* Ensure mobile menu works cleanly */
@media (max-width: 991px) {
  #pq-main-menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
    background: white;
  }

  #pq-main-menu>li {
    width: 100%;
    border-bottom: 1px solid var(--bg-gray);
  }

  #pq-main-menu>li:last-child {
    border-bottom: none;
  }

  #pq-main-menu>li>a {
    padding: 15px 0;
    display: block;
  }

  .pq-bottom-header {
    position: relative;
  }
}

/* Fix inner page breadcrumb overlap due to new header height */
.pq-breadcrumb {
  padding-top: 220px !important;
  padding-bottom: 100px !important;
}