/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800;900&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #A8CF45;
    --primary-dark: #00AFC4;
    --primary-mid: #A8CF45;
    --accent: green;
    --accent2: #08AFC1;
    --white: #ffffff;
    --light-bg: #f5f7fa;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --text: #1f2937;
    --border: #e2e8f0;
    --shadow: 0 2px 16px rgba(0,51,102,0.09);
    --shadow-hover: 0 8px 32px rgba(0,51,102,0.18);
    --nav-height: 74px;
    --top-bar-height: 36px;
    --radius: 6px;
    --radius-lg: 12px;
}

/* ===== RESET ===== */

html { scroll-behavior: smooth; }
body { font-family: 'Source Sans 3', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; font-size: 15px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block;}
h1,h2,h3,h4,h5 { font-family: 'Raleway', sans-serif; line-height: 1.25; }
p { line-height: 1.8; color: var(--gray); }

/* ===== CONTAINER ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.top-bar {
    background: #08AFC1;
    color: #A8CF3A;
    font-size: 12.5px;
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.top-bar a { color: #aec8e8; transition: color 0.2s; }
.top-bar a:hover { color: #fff; }
.top-bar .contact-info { display: flex; gap: 20px; }
.top-bar .contact-info span { display: flex; align-items: center; gap: 5px; }
.top-bar .tb-right { display: flex; align-items: center; gap: 16px; }
.top-bar .tb-right a { font-weight: 600; letter-spacing: 0.3px; }

/* ===== NAVBAR ===== */
.site-logo{
    height:100px;
    width:auto;
    display:block;
}

.navbar-brand{
    display:flex;
    align-items:center;
}
.navbar {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,51,102,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,51,102,0.18); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }

/* Brand */
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 21px; font-weight: 900;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.brand-text .brand-name {
  font-family: 'Raleway', sans-serif;
  font-size: 20px; font-weight: 900;
  color: var(--primary); line-height: 1.1;
  letter-spacing: 1px; text-transform: uppercase;
}
.brand-text .brand-tagline {
  font-size: 9px; color: var(--accent); font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
}

/* Nav Menu */
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: block; padding: 10px 14px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--text); letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
    .nav-link:hover, .nav-link.active {
        color: #08AFC1;
    }


/* Dropdown */
.dropdown-toggle::after { content: ' ▾'; font-size: 10px; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; min-width: 210px;
  box-shadow: 0 8px 30px rgba(0,51,102,0.14);
  
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 6px 0; z-index: 200;
}
.nav-item:hover .dropdown-menu { display: block; }
.dropdown-item {
  display: block; padding: 10px 20px;
  font-size: 13px; color: var(--text); font-weight: 500;
  transition: all 0.18s; border-left: 3px solid transparent;
}
    .dropdown-item:hover {
        background: #A8CF3A;
        border-left-color: #08AFC1;
        padding-left: 24px;
    }
        .dropdown-item:hover,
        .dropdown-item:hover a {
            color: white;
        }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 26px; height: 2px; background: var(--primary); border-radius: 2px; transition: all 0.3s; display: block; }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    padding: 11px 28px;
    background: #08AFC1;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: #08AFC1;
    transition: all 0.25s;
    cursor: pointer;
}
.btn-primary:hover { background: transparent; color: var(--accent); }
.btn-outline {
  display: inline-block; padding: 11px 28px;
  background: transparent; color: var(--primary);
  font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  border-radius: var(--radius); border: 2px solid var(--primary);
  transition: all 0.25s; cursor: pointer;
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-white {
  display: inline-block; padding: 11px 28px;
  background: transparent; color: #fff;
  font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  border-radius: var(--radius); border: 2px solid rgba(255,255,255,0.7);
  transition: all 0.25s; cursor: pointer;
}
.btn-outline-white:hover { background: #fff; color: var(--primary); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
  padding: 52px 0 44px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") repeat;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 36px; font-weight: 900;
  color: #fff; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px;
}
.breadcrumb { display: flex; align-items: center; gap: 8px; }
.breadcrumb a {  font-size: 13px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: #aec8e8; }
    .breadcrumb span {
 
        font-size: 13px;
        font-weight: 600;
    }

/* ===== SECTION PADDING ===== */
.section-padding { padding: 72px 0; }
.section-alt { background: var(--light-bg); }

/* Section Header */
.section-header { text-align: center; margin-bottom: 48px; }
    .section-header h2 {
        font-size: 32px;
        font-weight: 900;
        color: #08AFC1;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 14px;
    }
.section-header p { color: var(--gray); font-size: 15px; max-width: 600px; margin: 0 auto; }
.section-divider { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 0 auto 16px; width: fit-content; }
.section-divider span { height: 3px; border-radius: 3px; }
.section-divider span:nth-child(1) { width: 36px; background: var(--accent); }
.section-divider span:nth-child(2) { width: 12px; background: var(--primary); }
.section-divider span:nth-child(3) { width: 36px; background: var(--accent); }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; height: 560px; overflow: hidden; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.7s ease;
}
.slide.active { opacity: 1; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,20,50,0.82) 0%, rgba(0,30,68,0.5) 60%, rgba(0,0,0,0.2) 100%);
}
.slide-content {
  position: relative; z-index: 1;
  height: 100%; display: flex; flex-direction: column;
  justify-content: center; padding: 0 80px;
  max-width: 780px;
}
.slide-content h2 {
  font-size: 38px; font-weight: 900; color: #fff;
  line-height: 1.2; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px;
}
.slide-content p { color: #c8ddf4; font-size: 15px; margin-bottom: 28px; max-width: 520px; }
.slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.3);
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; z-index: 10;
}
.slider-btn:hover { background: var(--accent); border-color: var(--accent); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 28px; height: 4px; background: rgba(255,255,255,0.35); border-radius: 4px; cursor: pointer; transition: all 0.3s; }
.dot.active { background: var(--accent); width: 44px; }

/* ===== STATS STRIP ===== */
.stats-strip { background: var(--primary); padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Raleway', sans-serif; font-size: 40px; font-weight: 900; color: #fff; display: flex; align-items: center; justify-content: center; gap: 2px; line-height: 1; }
.stat-suffix { font-size: 28px; color: var(--accent2); }
.stat-label { color: #aec8e8; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; }

/* ===== ABOUT GRID ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
    .about-img-wrap img {
        width: 200%;
        height: 400px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-hover);
    }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--accent); color: #fff; padding: 18px 22px;
  border-radius: var(--radius-lg); text-align: center; box-shadow: 0 6px 24px rgba(200,16,46,0.35);
}
.about-badge .years { display: block; font-family: 'Raleway', sans-serif; font-size: 38px; font-weight: 900; line-height: 1; }
.about-badge .years-text { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.about-content h2 { font-size: 28px; font-weight: 900; color: ; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.5px; }
.about-content p { margin-bottom: 14px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0 26px; }
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-bg);
    padding: 10px 14px;
    border-radius: var(--radius);
    border-left: #08AFC1;
}
.feature-icon { font-size: 20px; }
.feature-text { font-size: 13px; font-weight: 600; color: var(--primary); }

/* ===== CATEGORY CARDS ===== */
.categories-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.cat-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.28s; }
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.cat-img { width: 100%; height: 160px; object-fit: cover; transition: transform 0.4s; }
.cat-card:hover .cat-img { transform: scale(1.06); }
.cat-body { padding: 16px; background: #fff; display: flex; align-items: center; justify-content: space-between; }
.cat-name { font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 0.3px; }
.cat-btn {
    padding: 6px 14px;
    background: #08AFC1;
    color: #fff;
    border-radius: var(--radius);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.2s;
}
.cat-btn:hover { background: var(--accent); }

/* ===== FORM ===== */
.form-card { background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.form-card h3 { font-family: 'Raleway', sans-serif; font-size: 20px; font-weight: 800; color: var(--primary); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif; font-size: 14px; color: var(--text);
  transition: border-color 0.2s; background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary-mid);
  box-shadow: 0 0 0 3px rgba(0,64,128,0.1);
}
.form-group textarea { min-height: 110px; resize: vertical; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 36px; align-items: start; }
.contact-info-box {
    background-color: #00A099; border-radius: var(--radius-lg);
    padding: 36px;
    color: #fff;
}
.contact-info-box h3 { font-family: 'Raleway', sans-serif; font-size: 22px; font-weight: 900; margin-bottom: 26px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-item-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-item-text { font-size: 13.5px; color: #c8ddf4; line-height: 1.7; }
.contact-item-text strong { display: block; color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 3px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; transition: background 0.2s; }
.social-btn:hover { background: var(--accent); }

/* ===== VISION MISSION ===== */
.vision-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vm-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    border-top: #08AFC1;
}
.vm-icon { font-size: 40px; margin-bottom: 14px; }
.vm-card h3 { font-family: 'Raleway', sans-serif; font-size: 18px; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.vm-card p { font-size: 14px; }

/* ===== FOOTER ===== */
.footer {
    background-color: black;
    padding: 56px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.brand-name-f { font-family: 'Raleway', sans-serif; font-size: 18px; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.footer-brand p {
    font-size: 13.5px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
}
.footer-col h4 { font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid rgba(255,255,255,0.1); }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
    font-size: 13px;
    color: #ffffff;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent2); padding-left: 4px; }
.footer-bottom { background: rgba(0,0,0,0.25); padding: 16px 0; text-align: center; font-size: 12.5px; color: #5a82a8; margin-top: 0; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 52px; height: 52px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.25s;
}
.whatsapp-float:hover { transform: scale(1.12); }

/* ===== PRODUCTS PAGE ===== */
.cat-filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.cat-filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--border);
  background: #fff; color: var(--text);
  font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 700;
  border-radius: 30px; cursor: pointer; transition: all 0.22s;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.cat-filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.cat-filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.cat-select-mobile { display: none; width: 100%; padding: 11px 14px; border: 2px solid var(--primary); border-radius: var(--radius); font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 700; color: var(--primary); background: #fff; margin-bottom: 24px; cursor: pointer; }

/* Product grid */
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.prod-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.28s; display: flex; flex-direction: column; }
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.prod-img-wrap { position: relative; height: 180px; overflow: hidden; background: #eef2f8; display: flex; align-items: center; justify-content: center; }
.prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.prod-card:hover .prod-img-wrap img { transform: scale(1.06); }
.prod-tag { position: absolute; top: 10px; left: 10px; background: var(--accent); color: #fff; font-family: 'Raleway', sans-serif; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 20px; }
.prod-body { padding: 18px 18px 12px; flex: 1; display: flex; flex-direction: column; }
.prod-name { font-family: 'Raleway', sans-serif; font-size: 16px; font-weight: 900; color: var(--primary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.3px; }
.prod-composition { font-size: 12.5px; color: var(--gray); line-height: 1.6; margin-bottom: 10px; flex: 1; }
.prod-composition strong { color: var(--primary); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 4px; font-family: 'Raleway', sans-serif; }
.prod-detail-toggle { display: flex; align-items: center; justify-content: space-between; padding: 10px 18px; background: var(--light-bg); border: none; width: 100%; cursor: pointer; font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; transition: background 0.2s; border-top: 1px solid var(--border); }
.prod-detail-toggle:hover { background: #dce8f8; }
.toggle-arrow { font-size: 12px; transition: transform 0.3s; display: inline-block; }
.prod-detail-toggle.open .toggle-arrow { transform: rotate(180deg); }
.prod-detail-panel { display: none; padding: 16px 18px; background: #fafcff; border-top: 1px solid var(--border); }
.prod-detail-panel.open { display: block; }
.detail-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.detail-table th { background: var(--primary); color: #fff; padding: 8px 12px; font-family: 'Raleway', sans-serif; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; text-align: left; }
.detail-table td { padding: 9px 12px; color: var(--text); line-height: 1.6; border-bottom: 1px solid var(--border); vertical-align: top; }
.detail-table tr:last-child td { border-bottom: none; }
.detail-table tr:nth-child(even) td { background: #f0f5fb; }
.prod-actions { display: flex; gap: 8px; padding: 12px 18px 16px; border-top: 1px solid var(--border); }
.prod-enquire { flex: 1; text-align: center; padding: 9px 0; background: var(--primary); color: #fff; font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 700; border-radius: var(--radius); text-transform: uppercase; letter-spacing: 0.5px; transition: background 0.2s; text-decoration: none; display: block; }
.prod-enquire:hover { background: var(--accent); color: #fff; }
.no-results { grid-column: 1/-1; text-align: center; padding: 60px 20px; color: var(--gray); font-size: 15px; }

/* CTA Band */
.cta-band { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%); padding: 52px 0; text-align: center; color: #fff; }
.cta-band h2 { font-family: 'Raleway', sans-serif; font-size: 30px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.cta-band p { color: #aec8e8; font-size: 15px; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.detail-inner p {
    white-space: normal;
    word-break: break-word;
}

@media (max-width: 9px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 900px) {
  .about-grid, .contact-grid, .vision-mission-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); row-gap: 24px; }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .slide-content { padding: 0 36px; }
  .slide-content h2 { font-size: 28px; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: var(--nav-height); left: 0; right: 0; background: #fff; box-shadow: var(--shadow-hover); padding: 16px 0; gap: 0; align-items: stretch; }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 12px 24px; }
  .nav-link.active { border-bottom: none; border-left: 3px solid var(--accent); }
  .dropdown-menu { position: static; box-shadow: none; border-top: none; border-left: 3px solid var(--light-bg); margin-left: 24px; display: none; border-radius: 0; }
  .nav-item.open .dropdown-menu { display: block; }
  .categories-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .about-badge { right: 0; bottom: -16px; }
  .hero-slider { height: 420px; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar .tb-right { display: none; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .cat-filter-bar { display: none; }
  .cat-select-mobile { display: block; }
  .page-hero h1 { font-size: 26px; }
  .section-header h2 { font-size: 24px; }
  .slide-content h2 { font-size: 22px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
