/* KHUZAMA INTL — Main Stylesheet */
:root {
  --green-dark: #0D3B2E;
  --green-primary: #1B7A4E;
  --green-forest: #145A3A;
  --green-fresh: #1B7A4E;
  --teal: #14B8A6;
  --teal-light: #CCFBF1;
  --green-accent: #14B8A6;
  --green-light: #ECFDF5;
  --white: #FFFFFF;
  --off-white: #FFFFFF;
  --text-dark: #0D3B2E;
  --text-muted: #3D6B58;
  --border: rgba(27, 122, 78, 0.12);
  --shadow-sm: none;
  --shadow-md: 0 4px 20px rgba(13, 59, 46, 0.08);
  --shadow-lg: 0 8px 32px rgba(13, 59, 46, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1440px;
  --content-width: 1280px;
  --section-pad: clamp(65px, 8vw, 140px);
  --header-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--text-dark); background: var(--white); overflow-x: hidden; }
body.no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.container { width: 100%; max-width: var(--content-width); margin: 0 auto; padding: 0 24px; }
.container-wide { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.heading-xl { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; letter-spacing: -0.03em; }
.heading-lg { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; }
.heading-md { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
.heading-sm { font-size: clamp(1.125rem, 2vw, 1.5rem); font-weight: 600; }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--green-accent); }
.text-white { color: var(--white); }

.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--teal); }
.section-header { margin-bottom: clamp(40px, 5vw, 64px); }
.section-header.center { text-align: center; }
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-label::before { display: none; }
.section-subtitle { font-size: clamp(1rem, 1.5vw, 1.125rem); color: var(--text-muted); max-width: 600px; margin-top: 16px; }
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 28px; font-family: var(--font-heading); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; border-radius: var(--radius-sm); transition: all var(--transition); white-space: nowrap; }
.btn-primary { background: var(--green-primary); color: var(--white); border: none; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: none; }
.btn-outline { background: var(--white); color: var(--green-dark); border: 2px solid var(--green-primary); }
.btn-outline:hover { background: var(--green-primary); color: var(--white); }
.btn-accent { background: var(--teal); color: var(--white); }
.btn-accent:hover { background: var(--green-primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--green-dark); }
.btn-white:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.8125rem; }
.btn-lg { padding: 18px 36px; font-size: 0.9375rem; }
.btn .btn-arrow { transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-group { display: flex; flex-wrap: wrap; gap: 16px; }

.page-loader { position: fixed; inset: 0; z-index: 10000; background: var(--green-dark); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 24px; }
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.6s ease, visibility 0.6s ease; }
.loader-logo { font-family: var(--font-heading); font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 800; color: var(--white); letter-spacing: 0.2em; }
.loader-bar { width: 120px; height: 2px; background: rgba(255,255,255,0.2); border-radius: 2px; overflow: hidden; }
.loader-bar-fill { width: 0%; height: 100%; background: var(--green-accent); border-radius: 2px; }

.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-height); transition: all var(--transition); }
.header.scrolled { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); box-shadow: 0 1px 0 var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-height); max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.logo { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; letter-spacing: 0.08em; color: var(--green-dark); z-index: 1001; }
.logo span { color: var(--green-accent); }
.nav-desktop { display: flex; align-items: center; gap: 8px; }
.nav-link { position: relative; padding: 8px 16px; font-size: 0.875rem; font-weight: 500; color: var(--text-dark); transition: color var(--transition); }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 16px; right: 16px; height: 2px; background: var(--green-accent); transform: scaleX(0); transition: transform var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--green-fresh); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-item { position: relative; }
.nav-item.has-mega:hover .mega-menu, .nav-item.has-mega.mega-open .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(12px); width: 720px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border: 1px solid var(--border); padding: 32px; opacity: 0; visibility: hidden; transition: all var(--transition); display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.mega-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-fresh); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.mega-col a { display: block; padding: 8px 0; font-size: 0.875rem; color: var(--text-muted); transition: all var(--transition); }
.mega-col a:hover { color: var(--green-dark); padding-left: 8px; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.menu-toggle { display: none; flex-direction: column; gap: 6px; width: 32px; z-index: 1001; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--green-dark); transition: all var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-menu { position: fixed; inset: 0; z-index: 999; background: var(--white); padding: calc(var(--header-height) + 32px) 24px 32px; transform: translateX(100%); transition: transform var(--transition); overflow-y: auto; }
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-link { display: block; padding: 16px 0; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--text-dark); border-bottom: 1px solid var(--border); }
.mobile-submenu { padding: 8px 0 16px 16px; }
.mobile-submenu a { display: block; padding: 10px 0; font-size: 0.9375rem; color: var(--text-muted); }
.mobile-submenu-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-fresh); padding: 16px 0 8px; }
.mobile-menu .btn { width: 100%; margin-top: 24px; }

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: var(--header-height); overflow: hidden; background: var(--white); }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: var(--section-pad) 0; width: 100%; max-width: var(--content-width); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.hero-text { max-width: 600px; }
.hero-title { font-size: clamp(2.75rem, 6vw, 5rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: var(--green-dark); margin-bottom: 24px; }
.hero-title .line { display: block; overflow: hidden; }
.hero-desc { font-size: clamp(1rem, 1.5vw, 1.125rem); color: var(--text-muted); margin-bottom: 32px; max-width: 480px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: var(--white); border: 1px solid var(--border); border-radius: 100px; font-size: 0.8125rem; font-weight: 500; box-shadow: var(--shadow-sm); }
.hero-badge i { color: var(--green-accent); font-size: 0.75rem; }
.hero-image-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-badge { position: absolute; bottom: 24px; left: -24px; background: var(--green-dark); color: var(--white); padding: 16px 24px; border-radius: var(--radius-md); font-size: 0.8125rem; font-weight: 600; box-shadow: var(--shadow-lg); z-index: 3; }

.stats-strip { background: var(--green-dark); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; color: var(--white); }
.stat-number { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1; margin-bottom: 8px; color: var(--teal); }
.stat-label { font-size: 0.875rem; font-weight: 500; opacity: 0.85; }

.section { padding: var(--section-pad) 0; }
.section-tight { padding: 40px 0; }
.section-off-white { background: var(--green-light); }
.section-green { background: var(--green-dark); color: var(--white); }
.section-light-green { background: var(--teal-light); }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  background: var(--green-forest);
  isolation: isolate;
}
.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(18,55,42,0.92) 0%, rgba(18,55,42,0.25) 40%, rgba(18,55,42,0.05) 100%);
  transition: background var(--transition);
  pointer-events: none;
}
.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(18,55,42,0.95) 0%, rgba(18,55,42,0.35) 50%, rgba(18,55,42,0.1) 100%);
}
.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.category-card-title { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--white); }
.category-card-arrow { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; color: var(--white); transition: transform var(--transition); flex-shrink: 0; }
.category-card:hover .category-card-arrow { transform: translate(4px, -4px); }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
  display: flex;
  flex-direction: column;
  opacity: 1 !important;
}
.product-card:hover { border-color: var(--teal); transform: none; box-shadow: none; }
.product-card-image {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--green-light);
}
.product-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
  opacity: 1 !important;
}
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 12px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
}
.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; background: var(--white); }
.product-card-category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.product-card-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.35;
  color: var(--green-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-code { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 12px; }
.product-card .btn { width: 100%; margin-top: auto; padding: 11px 16px; font-size: 0.75rem; background: var(--green-primary); }
.product-card .btn:hover { background: var(--green-dark); }

.manufacturing-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.manufacturing-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.manufacturing-image img { width: 100%; height: 100%; object-fit: cover; }
.process-steps { position: relative; padding-left: 40px; }
.process-steps::before { content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px; background: var(--border); }
.process-step { position: relative; padding: 16px 0; }
.process-step::before { content: ''; position: absolute; left: -40px; top: 22px; width: 12px; height: 12px; border-radius: 50%; background: var(--green-accent); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--green-accent); z-index: 1; }
.process-step-number { font-size: 0.75rem; font-weight: 700; color: var(--green-accent); letter-spacing: 0.05em; margin-bottom: 4px; }
.process-step-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; }

.custom-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.custom-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md); padding: 24px; text-align: center; transition: all var(--transition); }
.custom-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.custom-card i { font-size: 1.5rem; color: var(--green-accent); margin-bottom: 12px; }
.custom-card span { font-size: 0.875rem; font-weight: 500; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px; transition: all var(--transition); }
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-accent); }
.feature-card-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--green-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--green-fresh); font-size: 1.25rem; }
.feature-card h3 { font-size: 1.125rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.9375rem; color: var(--text-muted); }

.timeline-horizontal { display: flex; align-items: flex-start; justify-content: space-between; position: relative; padding: 40px 0; }
.timeline-line { position: absolute; top: 56px; left: 0; right: 0; height: 2px; background: var(--border); }
.timeline-line-fill { height: 100%; background: var(--green-accent); width: 0%; transition: width 1s ease; }
.timeline-step { position: relative; z-index: 1; text-align: center; flex: 1; }
.timeline-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--white); border: 3px solid var(--green-accent); margin: 0 auto 16px; }
.timeline-step span { font-size: 0.8125rem; font-weight: 600; }

.fabric-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.fabric-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; transition: all var(--transition); }
.fabric-card:hover { border-color: var(--green-accent); box-shadow: var(--shadow-sm); }
.fabric-card h4 { font-size: 0.9375rem; margin-bottom: 8px; color: var(--green-dark); }
.fabric-card p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; }

.technique-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.technique-card { border-radius: var(--radius-md); overflow: hidden; position: relative; aspect-ratio: 16/10; }
.technique-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.technique-card:hover img { transform: scale(1.05); }
.technique-card-content { position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,55,42,0.9) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: var(--white); }
.technique-card h4 { font-size: 1.25rem; margin-bottom: 4px; }
.technique-card p { font-size: 0.8125rem; opacity: 0.85; }

.cta-section { background: var(--green-dark); border-radius: var(--radius-xl); padding: clamp(48px, 6vw, 80px); text-align: center; max-width: calc(var(--content-width) + 48px); margin-left: auto; margin-right: auto; }
.cta-section .heading-lg { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 32px; font-size: 1.0625rem; }
.cta-section .btn-group { justify-content: center; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px; }
.testimonial-stars { color: var(--green-accent); margin-bottom: 16px; font-size: 0.875rem; }
.testimonial-text { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; font-style: italic; }
.testimonial-author { font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 600; }
.testimonial-role { font-size: 0.8125rem; color: var(--text-muted); }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 24px 0; font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 600; text-align: left; color: var(--text-dark); transition: color var(--transition); }
.faq-question:hover { color: var(--green-fresh); }
.faq-question i { transition: transform var(--transition); color: var(--green-accent); }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 24px; }
.faq-answer p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }

.instagram-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.insta-item { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius-sm); }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.insta-item:hover img { transform: scale(1.08); }
.insta-overlay { position: absolute; inset: 0; background: rgba(18,55,42,0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--transition); color: var(--white); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.05em; }
.insta-item:hover .insta-overlay { opacity: 1; }

.footer { background: var(--green-dark); color: var(--white); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 48px; margin-bottom: 64px; }
.footer-brand .logo { color: var(--white); font-size: 1.5rem; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.9375rem; opacity: 0.7; line-height: 1.7; max-width: 320px; }
.footer-col h4 { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; color: var(--green-accent); }
.footer-col a { display: block; padding: 6px 0; font-size: 0.9375rem; opacity: 0.7; transition: all var(--transition); }
.footer-col a:hover { opacity: 1; padding-left: 4px; color: var(--green-accent); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; opacity: 1; padding: 0; transition: all var(--transition); }
.footer-social a:hover { background: var(--teal); border-color: var(--teal); color: var(--white); padding-left: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; display: flex; align-items: center; justify-content: space-between; font-size: 0.8125rem; opacity: 0.6; }

.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 900; display: flex; align-items: center; gap: 12px; }
.whatsapp-btn { width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); transition: all var(--transition); animation: pulse-wa 2s infinite; }
.whatsapp-btn:hover { transform: scale(1.08); }
.whatsapp-label { background: var(--white); padding: 8px 16px; border-radius: var(--radius-sm); font-size: 0.8125rem; font-weight: 600; box-shadow: var(--shadow-md); opacity: 0; transform: translateX(8px); transition: all var(--transition); pointer-events: none; white-space: nowrap; }
.whatsapp-float:hover .whatsapp-label { opacity: 1; transform: translateX(0); }
@keyframes pulse-wa { 0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); } 50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6); } }

.page-hero { padding-top: calc(var(--header-height) + 60px); padding-bottom: 60px; background: var(--off-white); text-align: center; }
.page-hero .heading-lg { color: var(--green-dark); margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--green-fresh); }

.products-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { padding: 8px 20px; font-size: 0.8125rem; font-weight: 500; border-radius: 100px; border: 1px solid var(--border); color: var(--text-muted); transition: all var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--green-primary); color: var(--white); border-color: var(--green-primary); }
.search-box { position: relative; min-width: 280px; }
.search-box input { width: 100%; padding: 12px 16px 12px 44px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.9375rem; transition: all var(--transition); background: var(--white); }
.search-box input:focus { outline: none; border-color: var(--green-accent); box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15); }
.search-box i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.products-count { font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); margin-bottom: 16px; }
.no-results { text-align: center; padding: 64px 24px; color: var(--text-muted); }

.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.product-gallery-main { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1/1; background: var(--off-white); margin-bottom: 16px; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.product-gallery-thumbs img { aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-sm); cursor: pointer; border: 2px solid transparent; transition: border-color var(--transition); width: 100%; }
.product-gallery-thumbs img.active, .product-gallery-thumbs img:hover { border-color: var(--green-accent); }
.product-info-category { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-fresh); margin-bottom: 12px; }
.product-info-title { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 8px; }
.product-info-code { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 24px; }
.product-info-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.specs-table { width: 100%; margin-bottom: 32px; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table td { padding: 12px 0; font-size: 0.9375rem; }
.specs-table td:first-child { font-weight: 600; width: 40%; }
.specs-table td:last-child { color: var(--text-muted); }
.product-detail-section { padding: var(--section-pad) 0; border-top: 1px solid var(--border); }
.product-detail-section h3 { font-size: 1.5rem; margin-bottom: 24px; }
.features-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.features-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9375rem; color: var(--text-muted); }
.features-list li i { color: var(--green-accent); font-size: 0.75rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 32px; }
.contact-info-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--green-light); display: flex; align-items: center; justify-content: center; color: var(--green-fresh); flex-shrink: 0; }
.contact-info-item h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.9375rem; color: var(--text-muted); }
.quote-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8125rem; font-weight: 600; margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.9375rem; transition: all var(--transition); background: var(--off-white); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--green-accent); box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15); background: var(--white); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-success { display: none; text-align: center; padding: 48px; }
.form-success.show { display: block; }
.form-success i { font-size: 3rem; color: var(--green-accent); margin-bottom: 16px; }
.quote-form.hidden { display: none; }

.content-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: var(--section-pad); }
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-block-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.content-block-image img { width: 100%; height: 100%; object-fit: cover; }
.content-block-text h2 { margin-bottom: 16px; }
.content-block-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
.value-item { padding: 24px; background: var(--green-light); border-radius: var(--radius-md); border: 1px solid var(--border); }
.value-item h4 { font-size: 1rem; margin-bottom: 8px; color: var(--green-dark); }
.value-item p { font-size: 0.875rem; color: var(--text-muted); }

.quality-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quality-card { text-align: center; padding: 40px 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); transition: all var(--transition); }
.quality-card:hover { border-color: var(--green-accent); box-shadow: var(--shadow-md); }
.quality-card-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; color: var(--green-fresh); }
.quality-card h4 { margin-bottom: 8px; }
.quality-card p { font-size: 0.875rem; color: var(--text-muted); }

.mfg-timeline { position: relative; max-width: 800px; margin: 0 auto; padding-left: 48px; }
.mfg-timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.mfg-step { position: relative; padding: 24px 0 24px 32px; }
.mfg-step::before { content: attr(data-step); position: absolute; left: -48px; top: 24px; width: 32px; height: 32px; border-radius: 50%; background: var(--green-dark); color: var(--white); font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.mfg-step h4 { font-size: 1.125rem; margin-bottom: 8px; }
.mfg-step p { font-size: 0.9375rem; color: var(--text-muted); }

.pl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pl-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px; transition: all var(--transition); }
.pl-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pl-card i { font-size: 1.5rem; color: var(--green-accent); margin-bottom: 16px; }
.pl-card h4 { margin-bottom: 8px; font-size: 1.0625rem; }
.pl-card p { font-size: 0.875rem; color: var(--text-muted); }

.fade-up { will-change: transform, opacity; }

/* Page Banners — sportswear hero backgrounds */
.page-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  overflow: hidden;
  text-align: center;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,59,46,0.92) 0%, rgba(27,122,78,0.75) 100%);
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.page-banner .heading-lg,
.page-banner .heading-xl {
  color: var(--white);
  margin-bottom: 16px;
}

.page-banner p,
.page-banner .breadcrumb {
  color: rgba(255,255,255,0.85);
}

.page-banner .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-banner .breadcrumb a:hover { color: var(--green-accent); }

.hero-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.92) 40%, rgba(236,253,245,0.85) 100%);
  z-index: 1;
}

.hero-banner .hero-content {
  position: relative;
  z-index: 2;
}
