/* ============================================================
   AA & Stainless Hardware — Full Responsive Stylesheet
   Construction Industry Design | Mobile-First
   Colors: Steel Navy #1a3a5c | Industrial Orange #e87c1e
   Fonts: Teko (headlines) + Open Sans (body)
   ============================================================ */

/* === CSS Variables === */
:root {
    --primary: #1a3a5c;
    --primary-dark: #0f2640;
    --primary-light: #2a5a8c;
    --secondary: #e87c1e;
    --secondary-dark: #c46510;
    --secondary-light: #f5a623;
    --accent: #2ecc71;
    --accent-dark: #27ae60;
    --text-dark: #2c3e50;
    --text-body: #555;
    --text-light: #999;
    --text-muted: #b0b0b0;
    --bg-white: #fff;
    --bg-light: #f5f6fa;
    --bg-gray: #ecf0f1;
    --bg-dark: #1a1a2e;
    --border: #e0e0e0;
    --border-light: #f0f0f0;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --transition: all 0.3s ease;
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --nav-height: 70px;
    --topbar-height: 40px;
}

/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 600;
}
h1 { font-size: 48px; }
h2 { font-size: 40px; }
h3 { font-size: 32px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.skip-to-content { position: absolute; top: -100px; left: 0; background: var(--primary); color: #fff; padding: 8px 16px; z-index: 9999; }
.skip-to-content:focus { top: 0; }

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    min-height: 44px;
    min-width: 44px;
}
.btn-primary { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.btn-primary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(232,124,30,0.3); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--primary); }
.btn-dark { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-dark:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; transform: translateY(-2px); }
.btn-cta { background: var(--secondary); color: #fff; border-color: var(--secondary); font-size: 14px; padding: 10px 22px; }
.btn-cta:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); color: #fff; }
.btn-small { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 18px; }

/* === Top Bar === */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 0;
    height: var(--topbar-height);
    display: flex;
    align-items: center;
}
.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.top-bar-left { display: flex; align-items: center; gap: 4px; flex-wrap: nowrap; overflow: hidden; }
.top-bar-link { color: rgba(255,255,255,0.8); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.top-bar-link:hover { color: var(--secondary); }
.top-bar-link i { color: var(--secondary); font-size: 12px; }
.top-bar-sep { color: rgba(255,255,255,0.3); margin: 0 8px; }
.top-bar-right { display: flex; align-items: center; gap: 12px; }
.top-bar-social { color: rgba(255,255,255,0.7); font-size: 14px; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: var(--transition); }
.top-bar-social:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* === Navbar === */
.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.logo a { display: flex; align-items: center; text-decoration: none; line-height: 1; }
.logo-img { height: 55px; width: auto; display: block; }

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-btn { background: none; border: 1px solid var(--border); border-radius: var(--radius); padding: 6px 12px; cursor: pointer; font-size: 13px; font-weight: 600; color: var(--text-dark); display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.lang-btn:hover { border-color: var(--secondary); color: var(--secondary); }
.lang-code { font-size: 12px; }
.lang-dropdown { display: none; position: absolute; top: 100%; right: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 180px; z-index: 1100; margin-top: 6px; overflow: hidden; }
.lang-dropdown.open { display: block; }
.lang-option { display: flex; align-items: center; gap: 10px; padding: 10px 16px; text-decoration: none; color: var(--text-dark); font-size: 14px; transition: var(--transition); border-bottom: 1px solid var(--border-light); }
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: var(--bg-light); color: var(--secondary); }
.lang-option.active { background: var(--secondary); color: #fff; font-weight: 600; }
.lang-flag { font-size: 18px; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; min-width: 44px; min-height: 44px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--primary); margin: 5px 0; border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
.close-menu-btn { display: none; }

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu li { position: relative; }
.nav-menu a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
    min-height: 44px;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--secondary); }
.nav-menu a.active::after { content: ''; position: absolute; bottom: 0; left: 14px; right: 14px; height: 3px; background: var(--secondary); border-radius: 2px 2px 0 0; }

/* Dropdown */
.has-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius) var(--radius);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { padding: 10px 20px; font-size: 13px; font-family: var(--font-body); text-transform: none; letter-spacing: 0; }
.dropdown-menu a:hover { background: var(--bg-light); color: var(--secondary); }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-cart { position: relative; color: var(--text-dark); font-size: 18px; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
.nav-cart:hover { color: var(--secondary); }
.cart-count { position: absolute; top: 2px; right: 0; background: var(--secondary); color: #fff; font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.nav-auth a { color: var(--text-dark); font-size: 14px; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
.nav-auth a:hover { color: var(--secondary); }
.nav-quote-btn { font-size: 13px; padding: 8px 18px; }

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,58,92,0.85) 0%, rgba(26,58,92,0.6) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
}
.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.hero-content h2 span { color: var(--secondary); }
.hero-content p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 35px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === Section Titles === */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    position: relative;
}
.section-header .section-label::before,
.section-header .section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}
.section-header .section-label::before { right: calc(100% + 15px); }
.section-header .section-label::after { left: calc(100% + 15px); }
.section-header h2 { font-size: 42px; color: var(--primary); margin-bottom: 15px; }
.section-header p { color: var(--text-body); font-size: 16px; max-width: 600px; margin: 0 auto; }

/* === Welcome Section === */
.welcome-section { padding: 80px 0; background: var(--bg-white); }
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.welcome-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.welcome-img img { width: 100%; height: 450px; object-fit: cover; }
.welcome-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--secondary);
    color: #fff;
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.welcome-badge h3 { font-size: 48px; color: #fff; line-height: 1; margin-bottom: 2px; }
.welcome-badge p { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin: 0; }
.welcome-text h2 { font-size: 36px; color: var(--primary); margin-bottom: 15px; }
.welcome-text h3 { font-family: var(--font-body); font-size: 22px; color: var(--text-dark); font-weight: 400; margin-bottom: 20px; }
.welcome-text p { margin-bottom: 15px; line-height: 1.8; }

/* === Featured Products === */
.products-section { padding: 80px 0; background: var(--bg-light); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-card-img { position: relative; overflow: hidden; height: 240px; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}
.product-card-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px 15px 15px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateY(0); }
.product-card-actions .btn { flex: 1; font-size: 12px; padding: 8px 12px; }
.product-card-body { padding: 18px; }
.product-card-category { font-size: 11px; color: var(--secondary); text-transform: uppercase; font-weight: 600; letter-spacing: 1px; margin-bottom: 6px; }
.product-card-name { font-family: var(--font-heading); font-size: 20px; color: var(--text-dark); margin-bottom: 8px; line-height: 1.2; }
.product-card-price { font-family: var(--font-heading); font-size: 22px; color: var(--secondary); font-weight: 700; }
.product-card-price .old-price { font-size: 14px; color: var(--text-muted); text-decoration: line-through; margin-left: 8px; font-weight: 400; }

/* === Why Choose Us === */
.why-section { padding: 80px 0; background: var(--bg-white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.why-grid > div { display: flex; flex-direction: column; }
.why-features { display: grid; gap: 24px; flex: 1; align-content: center; }
.why-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}
.why-card:hover { background: var(--bg-light); border-color: var(--secondary); transform: translateX(5px); }
.why-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}
.why-card h4 { font-size: 20px; color: var(--text-dark); margin-bottom: 6px; }
.why-card p { font-size: 14px; color: var(--text-body); line-height: 1.6; margin: 0; }
.why-images { display: flex; flex-direction: column; gap: 16px; }
.why-images img { border-radius: var(--radius-lg); width: 100%; height: 400px; object-fit: cover; box-shadow: var(--shadow); }
.why-features-below { margin-top: 20px; display: grid; gap: 16px; }

/* === Stats Section === */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item h3 { font-size: 52px; color: var(--secondary); margin-bottom: 5px; line-height: 1; }
.stat-item p { font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.8; }

/* === Services Section === */
.services-section { padding: 80px 0; background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-bottom-color: var(--secondary); }
.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    transition: var(--transition);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); transform: scale(1.1); }
.service-card h4 { font-size: 22px; margin-bottom: 12px; }
.service-card p { font-size: 14px; line-height: 1.7; color: var(--text-body); }

/* === Team Section === */
.team-section { padding: 80px 0; background: var(--bg-white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* Team Slider */
.team-slider-wrapper { position: relative; overflow: hidden; margin: 0 -10px; padding: 0 10px; }
.team-slider { display: flex; transition: transform 0.5s ease; gap: 20px; }
.team-slider .team-card { flex: 0 0 calc(33.333% - 14px); min-width: calc(33.333% - 14px); }
.team-slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; border: none; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--transition); box-shadow: var(--shadow); }
.team-slider-btn:hover { background: var(--secondary); }
.team-prev { left: 5px; }
.team-next { right: 5px; }
.team-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.team-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); cursor: pointer; transition: var(--transition); border: none; }
.team-dot.active { background: var(--secondary); width: 24px; border-radius: 5px; }

@media (max-width: 1024px) {
    .team-slider .team-card { flex: 0 0 calc(33.333% - 14px); min-width: calc(33.333% - 14px); }
}
@media (max-width: 768px) {
    .team-slider .team-card { flex: 0 0 calc(50% - 10px); min-width: calc(50% - 10px); }
    .team-slider-btn { width: 36px; height: 36px; font-size: 14px; }
    .team-prev { left: 0; }
    .team-next { right: 0; }
}
@media (max-width: 480px) {
    .team-slider .team-card { flex: 0 0 calc(100% - 0px); min-width: calc(100% - 0px); }
    .team-slider { gap: 16px; }
}

/* Share Buttons */
.product-share { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding: 16px; background: var(--bg-light); border-radius: var(--radius); }
.share-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer; font-size: 16px; color: #fff; text-decoration: none; transition: var(--transition); }
.share-btn:hover { transform: scale(1.1); opacity: 0.9; }
.share-whatsapp { background: #25D366; }
.share-facebook { background: #1877F2; }
.share-tiktok { background: #000; }
.share-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.share-copy { background: var(--primary); }
.team-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); background: var(--bg-white); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.team-card img { width: 100%; height: 320px; object-fit: cover; }
.team-card-body { padding: 20px; text-align: center; }
.team-card h4 { font-size: 22px; color: var(--text-dark); margin-bottom: 4px; }
.team-card p { color: var(--secondary); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

/* === Reviews Section === */
.reviews-section { padding: 80px 0; background: var(--bg-light); }
.reviews-slider { overflow: hidden; margin-bottom: 30px; }
.reviews-track { display: flex; gap: 24px; animation: scrollReviews 20s linear infinite; }
@keyframes scrollReviews { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.review-card {
    min-width: 340px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary);
}
.review-stars { color: #f5a623; font-size: 16px; margin-bottom: 12px; }
.review-text { font-size: 14px; line-height: 1.7; color: var(--text-body); margin-bottom: 15px; font-style: italic; }
.review-author strong { display: block; color: var(--text-dark); font-size: 15px; }
.review-badge { font-size: 12px; color: var(--text-light); }
.review-date { font-size: 12px; color: var(--text-muted); display: block; margin-top: 4px; }
.reviews-actions { text-align: center; display: flex; gap: 16px; justify-content: center; }

/* === Google Reviews Testimonials (Marquee) === */
.testimonials-section { padding: 80px 0; background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%); }
.reviews-marquee-wrapper { position: relative; overflow: hidden; margin-top: 10px; }
.reviews-marquee-wrapper::before,
.reviews-marquee-wrapper::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.reviews-marquee-wrapper::before { left: 0; background: linear-gradient(to right, #f8fafc, transparent); }
.reviews-marquee-wrapper::after { right: 0; background: linear-gradient(to left, #eef2f7, transparent); }
.reviews-marquee { overflow: hidden; }
.review-track { display: flex; gap: 20px; animation: marqueeScroll 60s linear infinite; width: max-content; }
.review-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.g-review-card {
    flex: 0 0 320px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #e8ecf1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.g-review-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.g-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.g-review-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.g-review-header h5 { font-size: 15px; color: var(--text-dark); margin: 0; line-height: 1.3; }
.g-review-stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; margin-top: 2px; }
.g-review-card p { font-size: 14px; line-height: 1.65; color: var(--text-body); margin: 0 0 12px; min-height: 44px; }
.g-review-date { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 6px; }

/* === Blog Section === */
.blog-section { padding: 80px 0; background: var(--bg-white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); background: var(--bg-white); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-meta { font-size: 12px; color: var(--text-light); margin-bottom: 10px; display: flex; gap: 16px; }
.blog-card-meta i { color: var(--secondary); margin-right: 4px; }
.blog-card h3 { font-size: 22px; margin-bottom: 10px; line-height: 1.3; }
.blog-card h3 a { color: var(--text-dark); }
.blog-card h3 a:hover { color: var(--secondary); }
.blog-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 15px; }

/* === Newsletter Section === */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}
.newsletter-bar { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.newsletter-left { display: flex; align-items: center; gap: 20px; }
.newsletter-envelope { font-size: 40px; color: var(--secondary); }
.newsletter-left h3 { font-family: var(--font-heading); font-size: 28px; color: #fff; margin-bottom: 2px; }
.newsletter-left p { font-size: 14px; opacity: 0.8; }
.newsletter-inline { display: flex; gap: 0; }
.newsletter-inline input {
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 14px;
    width: 300px;
    font-family: var(--font-body);
    outline: none;
}
.newsletter-inline button {
    padding: 14px 28px;
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.newsletter-inline button:hover { background: var(--secondary-dark); }

/* === Location / Map Section === */
.location-section { padding: 80px 0; background: var(--bg-light); }
.location-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.location-map iframe { width: 100%; height: 400px; border: none; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.location-info { background: var(--bg-white); padding: 35px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.location-info h4 { font-size: 24px; color: var(--primary); margin-bottom: 20px; }
.location-info p { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 14px; }
.location-info p i { color: var(--secondary); width: 20px; text-align: center; font-size: 16px; }
.location-info a { color: var(--text-dark); }
.location-info a:hover { color: var(--secondary); }

/* === Projects / Gallery Sections === */
.projects-section { padding: 80px 0; background: var(--bg-white); }
.gallery-section { padding: 80px 0; background: var(--bg-light); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: rgba(26,58,92,0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* === Contact Section === */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-cards { display: grid; gap: 20px; }
.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.contact-info-card:hover { transform: translateX(5px); background: var(--bg-white); box-shadow: var(--shadow); }
.contact-info-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: var(--radius);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}
.contact-info-card h5 { font-size: 16px; color: var(--text-dark); margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: var(--text-body); margin: 0; }
.contact-info-card a { color: var(--text-dark); }
.contact-info-card a:hover { color: var(--secondary); }

/* Contact Form */
.contact-form { background: var(--bg-white); padding: 35px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font-body);
    transition: var(--transition);
    min-height: 44px;
    background: var(--bg-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,58,92,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* === Quote Request Page === */
.quote-hero { background: linear-gradient(135deg, rgba(26,58,92,0.9), rgba(15,38,64,0.9)), url('../images/hero-hardware.webp') center/cover; padding: 140px 20px 80px; text-align: center; color: #fff; }
.quote-hero h1 { font-size: 48px; color: #fff; margin-bottom: 15px; }
.quote-hero p { font-size: 18px; opacity: 0.9; max-width: 600px; margin: 0 auto; }

/* === About Page === */
.about-hero {
    background: linear-gradient(135deg, rgba(26,58,92,0.85), rgba(15,38,64,0.85)), url('../images/hero-hardware.webp') center/cover no-repeat;
    padding: 160px 20px 90px;
    text-align: center;
    color: #fff;
}
.about-hero h1 { font-family: var(--font-heading); font-size: 52px; margin-bottom: 15px; color: #fff; letter-spacing: 2px; }
.about-hero p { font-size: 18px; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.story-section { padding: 80px 20px; background: #fff; }
.story-section .container { max-width: 1000px; margin: 0 auto; }
.story-block { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 80px; }
.story-block:nth-child(even) .story-img { order: -1; }
.story-text h2 { font-family: var(--font-heading); font-size: 36px; color: var(--primary); margin-bottom: 8px; }
.story-text .accent { font-family: var(--font-body); font-weight: 300; font-style: italic; color: var(--secondary); font-size: 18px; display: block; margin-bottom: 20px; }
.story-text p { color: var(--text-body); font-size: 15px; line-height: 1.8; margin-bottom: 15px; }
.story-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.story-img img { width: 100%; height: 350px; object-fit: cover; display: block; }
.values-section { padding: 80px 20px; background: var(--bg-light); }
.values-section .container { max-width: 1100px; margin: 0 auto; text-align: center; }
.values-section h2 { font-family: var(--font-heading); font-size: 42px; color: var(--primary); margin-bottom: 40px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.val-card { background: #fff; border-radius: var(--radius-lg); padding: 30px 20px; box-shadow: var(--shadow); transition: var(--transition); text-align: center; }
.val-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.val-card i { font-size: 36px; color: var(--secondary); margin-bottom: 15px; }
.val-card h3 { font-family: var(--font-heading); font-size: 20px; color: var(--primary); margin-bottom: 10px; }
.val-card p { color: var(--text-body); font-size: 13px; line-height: 1.7; }

/* === Shop / Cart Pages === */
.shop-section { padding: 80px 0; }
.shop-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; flex-wrap: wrap; gap: 16px; }
.shop-filters { display: flex; gap: 12px; flex-wrap: wrap; }
.filter-btn {
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--bg-white);
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    min-height: 44px;
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1999; display: none; }
.cart-overlay.show { display: block; }
.cart-header { padding: 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-header h3 { font-size: 22px; }
.cart-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-dark); min-width: 44px; min-height: 44px; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border-light); }
.cart-item img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius); }
.cart-item-info { flex: 1; }
.cart-item-info h5 { font-size: 14px; margin-bottom: 4px; }
.cart-item-info .price { color: var(--secondary); font-weight: 600; }
.cart-footer { padding: 20px; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 18px; font-weight: 700; }

/* === Checkout Page === */
.checkout-section { padding: 60px 0 80px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.checkout-summary .card, .checkout-form .card { border-radius: 12px; box-shadow: var(--shadow); overflow: hidden; background: var(--bg-white); }
.checkout-summary .card-body table th, .checkout-summary .card-body table td { font-size: 14px; }
@media (max-width: 768px) {
    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-summary { order: 2; }
    .checkout-form { order: 1; }
}

/* === Legal Pages === */
.legal-section { padding: 80px 0; }
.legal-section .container { max-width: 800px; }
.legal-section h1 { font-size: 42px; color: var(--primary); margin-bottom: 30px; text-align: center; }
.legal-section h2 { font-size: 24px; color: var(--primary); margin-top: 40px; margin-bottom: 15px; }
.legal-section p { margin-bottom: 15px; line-height: 1.8; }

/* === Footer === */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo-img { height: 60px; width: auto; display: block; margin-bottom: 8px; filter: brightness(0) invert(1); }
.footer-logo p { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.footer-about { font-size: 13px; line-height: 1.7; margin: 15px 0; }
.footer .social-links { display: flex; gap: 10px; margin-top: 15px; }
.footer .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: var(--transition);
}
.footer .social-icon:hover { background: var(--secondary); color: #fff; transform: translateY(-3px); }
.footer-column h5 { font-family: var(--font-heading); font-size: 20px; color: #fff; margin-bottom: 20px; letter-spacing: 1px; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 8px; }
.footer-column ul a { color: rgba(255,255,255,0.6); font-size: 13px; transition: var(--transition); }
.footer-column ul a:hover { color: var(--secondary); padding-left: 5px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 13px; }
.footer-contact-list i { color: var(--secondary); margin-top: 3px; width: 16px; }
.footer-contact-list a { color: rgba(255,255,255,0.6); }
.footer-contact-list a:hover { color: var(--secondary); }
.footer-payment { margin-top: 20px; }
.footer-payment h6 { color: rgba(255,255,255,0.5); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.payment-methods { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badge { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); padding: 5px 12px; border-radius: 4px; font-size: 11px; display: inline-flex; align-items: center; gap: 5px; }
.footer-newsletter { border-top: 1px solid rgba(255,255,255,0.08); padding: 30px 0; }
.newsletter-content { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.newsletter-content h5 { color: #fff; font-size: 20px; margin-bottom: 4px; }
.newsletter-content h5 i { color: var(--secondary); margin-right: 8px; }
.newsletter-content p { font-size: 13px; color: rgba(255,255,255,0.5); }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input { padding: 12px 18px; border: none; border-radius: var(--radius) 0 0 var(--radius); font-size: 14px; width: 280px; font-family: var(--font-body); }
.newsletter-form button { padding: 12px 22px; background: var(--secondary); color: #fff; border: none; border-radius: 0 var(--radius) var(--radius) 0; font-family: var(--font-heading); font-size: 15px; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.newsletter-form button:hover { background: var(--secondary-dark); }
.footer-bottom { background: rgba(0,0,0,0.2); padding: 18px 0; margin-top: 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }
.footer-bottom a { color: var(--secondary); font-weight: 600; }
.footer-bottom a:hover { color: #fff; }
.footer-sep { color: rgba(255,255,255,0.2); }

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--secondary); transform: translateY(-3px); }

/* === Toast === */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text-dark);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-size: 14px;
    z-index: 9999;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* === Floating Buttons === */
.floating-buttons { position: fixed; bottom: 30px; left: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 998; }
.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    overflow: hidden;
    max-width: 48px;
    white-space: nowrap;
    min-height: 48px;
}
.floating-btn:hover { max-width: 280px; color: #fff; }
.floating-btn i { font-size: 20px; min-width: 20px; text-align: center; }
.float-label { opacity: 0; transition: opacity 0.3s ease 0.1s; font-size: 13px; }
.floating-btn:hover .float-label { opacity: 1; }
.phone-float { background: var(--primary); }
.phone-float:hover { background: var(--primary-dark); }
.whatsapp-float { background: #25D366; }
.whatsapp-float:hover { background: #1da851; }

/* === Cookie Banner === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: #fff;
    padding: 16px 20px;
    z-index: 9998;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cookie-content p { font-size: 13px; opacity: 0.8; flex: 1; margin: 0; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-btn { padding: 8px 20px; border-radius: var(--radius); font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); min-height: 44px; }
.cookie-btn.accept { background: var(--secondary); color: #fff; }
.cookie-btn.accept:hover { background: var(--secondary-dark); }
.cookie-btn.learn { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); text-decoration: none; display: inline-flex; align-items: center; }
.cookie-btn.learn:hover { color: #fff; border-color: #fff; }

/* === PWA Install Banner === */
.pwa-install-banner {
    position: fixed;
    bottom: 80px;
    left: 20px;
    right: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    z-index: 9997;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pwa-install-content { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 16px; }
.pwa-install-content p { font-size: 14px; color: var(--text-dark); margin: 0; }
.pwa-install-content p i { color: var(--secondary); margin-right: 8px; }
.pwa-install-actions { display: flex; gap: 8px; }

/* === Pagination === */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 40px; }
.pagination a, .pagination span {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination a:hover { background: var(--bg-light); border-color: var(--primary); }
.pagination .active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* === Lightbox === */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    border: none;
}

/* ============================================================
   RESPONSIVE: Tablet (768px)
   ============================================================ */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .team-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 30px; }
    .nav-quote-btn { display: none; }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 60px;
        --topbar-height: 0px;
    }
    h1 { font-size: 36px; }
    h2 { font-size: 32px; }
    .container { padding: 0 16px; }

    /* Hide topbar on mobile */
    .top-bar { display: none; }

    /* Mobile Nav */
    .hamburger { display: flex; flex-direction: column; justify-content: center; align-items: center; }
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 30px;
        box-shadow: 4px 0 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        gap: 0;
    }
    .nav-menu.open { left: 0; }
    .nav-menu li { width: 100%; }
    .nav-menu a { padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--border-light); width: 100%; }
    .nav-menu a::after { display: none; }
    .close-menu-btn {
        display: flex;
        position: fixed;
        top: 16px;
        left: calc(min(85%, 340px) - 50px);
        z-index: 1001;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--text-dark);
        cursor: pointer;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }
    .nav-menu.open ~ .close-menu-btn { opacity: 1; pointer-events: auto; }
    .has-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 0 16px;
        display: none;
    }
    .has-dropdown.open .dropdown-menu { display: block; }
    .nav-actions { gap: 6px; }
    .nav-quote-btn { display: none; }
    .lang-btn { padding: 5px 8px; font-size: 12px; }
    .lang-code { font-size: 11px; }
    .lang-dropdown { right: -20px; min-width: 160px; }
    .logo-img { height: 42px; }

    /* Hero */
    .hero { min-height: 450px; }
    .hero-content h2 { font-size: 36px; letter-spacing: 1px; }
    .hero-content p { font-size: 15px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; }

    /* Section headers */
    .section-header h2 { font-size: 32px; }
    .section-header .section-label::before,
    .section-header .section-label::after { width: 20px; }

    /* Welcome */
    .welcome-grid { grid-template-columns: 1fr; gap: 30px; }
    .welcome-img img { height: 300px; }
    .welcome-badge { bottom: 15px; right: 15px; padding: 14px; }
    .welcome-badge h3 { font-size: 36px; }

    /* Products */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .product-card-img { height: 180px; }

    /* Why Section */
    .why-grid { grid-template-columns: 1fr; gap: 30px; }
    .why-images { grid-template-columns: 1fr; }
    .why-images img { height: 200px; }

    /* Stats */
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .stat-item h3 { font-size: 40px; }

    /* Services */
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .service-card { padding: 24px 16px; }
    .service-card h4 { font-size: 18px; }
    .service-card p { font-size: 13px; }

    /* Share buttons */
    .product-share { padding: 12px; flex-direction: column; align-items: flex-start; }
    .share-btn { width: 36px; height: 36px; font-size: 14px; }

    /* Team */
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .team-card img { height: 320px; }
    .team-card h4 { font-size: 16px; }
    .team-card p { font-size: 12px; }
    .team-card-body { padding: 12px; }

    /* Reviews */
    .review-card { min-width: 280px; }

    /* Blog */
    .blog-grid { grid-template-columns: 1fr; }

    /* Newsletter */
    .newsletter-bar { flex-direction: column; text-align: center; gap: 20px; }
    .newsletter-left { flex-direction: column; }
    .newsletter-inline { flex-direction: column; width: 100%; }
    .newsletter-inline input { width: 100%; border-radius: var(--radius); }
    .newsletter-inline button { border-radius: var(--radius); }

    /* Location */
    .location-grid { grid-template-columns: 1fr; }
    .location-map iframe { height: 300px; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    /* About */
    .about-hero h1 { font-size: 36px; }
    .story-block { grid-template-columns: 1fr; gap: 30px; }
    .story-block:nth-child(even) .story-img { order: 0; }
    .story-img img { height: 260px; }
    .values-grid { grid-template-columns: 1fr 1fr; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
    .newsletter-content { flex-direction: column; text-align: center; }
    .newsletter-form { flex-direction: column; width: 100%; }
    .newsletter-form input { width: 100%; border-radius: var(--radius); }
    .newsletter-form button { border-radius: var(--radius); }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .footer-sep { display: none; }

    /* Cookie */
    .cookie-content { flex-direction: column; text-align: center; }

    /* Floating buttons */
    .floating-buttons { bottom: 20px; left: 12px; }
    .floating-btn { padding: 10px 14px; }

    /* Cart sidebar */
    .cart-sidebar { width: 100%; right: -100%; }

    /* Shop filters */
    .shop-header { flex-direction: column; align-items: flex-start; }
    .shop-filters { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; padding-bottom: 8px; }
}

/* ============================================================
   RESPONSIVE: Small Mobile (480px)
   ============================================================ */
@media (max-width: 480px) {
    h1 { font-size: 28px; }
    h2 { font-size: 26px; }
    .container { padding: 0 12px; }
    .hero { min-height: 360px; }
    .hero-content h2 { font-size: 26px; }
    .hero-content p { font-size: 13px; max-width: 100%; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-card-img { height: 160px; }
    .product-card-body { padding: 10px; }
    .product-card-name { font-size: 13px; }
    .product-card-price { font-size: 14px; }
    .product-card-category { font-size: 10px; }
    .product-card-actions .btn { font-size: 11px; padding: 6px 10px; }
    .services-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .team-card img { height: 320px; }
    .team-card h4 { font-size: 14px; }
    .team-card p { font-size: 11px; letter-spacing: 0.5px; }
    .team-card-body { padding: 10px; }
    .stats-grid { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
    .stat-item h3 { font-size: 28px; }
    .stat-item p { font-size: 12px; }
    .values-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .review-card { min-width: 260px; padding: 20px; }
    .section-header h2 { font-size: 24px; }
    .section-label { font-size: 12px; }
    .btn { padding: 10px 20px; font-size: 14px; }
    .btn-lg { padding: 12px 24px; font-size: 15px; }
    .why-card h4 { font-size: 16px; }
    .why-card p { font-size: 13px; }
    .location-info h4 { font-size: 18px; }
    .location-info p { font-size: 13px; }
    .blog-card-body h3 { font-size: 16px; }
    .blog-card-body p { font-size: 13px; }
    .logo-img { height: 38px; }
    .footer-logo-img { height: 45px; }
    .pwa-install-banner { flex-direction: column; }
    .pwa-install-content { flex-direction: column; text-align: center; }
    .lang-dropdown { right: -40px; }
}

/* ============================================================
   RESPONSIVE: Large Desktop (1440px+)
   ============================================================ */
@media (min-width: 1440px) {
    .container { max-width: 1320px; }
    .hero-content h2 { font-size: 72px; }
    .products-grid { grid-template-columns: repeat(4, 1fr); gap: 30px; }
}

/* === Utility Classes === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.hidden { display: none !important; }
.visible { display: block !important; }

/* === Animations === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }
