/* ============================================================
   居家厨房用品官网 - 前台样式 (front.css)
   风格：温馨暖色系 · 米白奶油底 · 原木棕 · 暖橙点缀
   ============================================================ */

:root {
    --primary: #d97b3d;          /* 暖橙（主色） */
    --primary-dark: #b85f28;     /* 暖橙深 */
    --primary-light: #fdf0e3;    /* 暖橙浅 */
    --accent: #b98a2f;           /* 芥末金（点缀） */
    --accent-light: #f6ead2;
    --olive: #7a8a4d;            /* 橄榄绿（辅助） */
    --text: #4a3626;             /* 暖棕深灰 */
    --text-muted: #8a7463;       /* 暖棕灰 */
    --border: #ecdfce;           /* 米色边框 */
    --bg-light: #faf4ea;         /* 米白奶油底 */
    --bg-white: #fffdf8;         /* 卡片白 */
    --footer-bg: #3c2b1d;        /* 页脚深棕 */
    --success: #4c9a6a;
    --danger: #d9534f;
    --shadow-sm: 0 1px 3px rgba(120, 80, 40, .08);
    --shadow-md: 0 6px 18px rgba(120, 80, 40, .10);
    --shadow-lg: 0 14px 36px rgba(120, 80, 40, .14);
    --radius: 14px;
    --font: "PingFang SC", "Microsoft YaHei", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
code { background: var(--bg-light); padding: 2px 6px; border-radius: 4px; font-size: .85em; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---------- Top Bar ---------- */
.topbar {
    background: var(--footer-bg);
    color: #e8d9c6;
    font-size: .82rem;
    padding: 6px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #f3e2cc; }
.topbar a:hover { color: #fff; }
.topbar-info { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 5px; }
.topbar-info .icon { opacity: .8; }

/* ---------- Header / Nav ---------- */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 20px;
    min-height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 42px; width: auto; }
.logo-text { font-size: 1.12rem; font-weight: 700; color: var(--primary-dark); line-height: 1.2; }
.logo-text small { display: block; font-size: .66rem; font-weight: 400; color: var(--text-muted); letter-spacing: .5px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: .95rem;
    color: var(--text);
}
.nav a:hover { color: var(--primary-dark); background: var(--primary-light); }
.nav a.active { color: var(--primary-dark); font-weight: 600; background: var(--primary-light); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: #fff; }
.lang-switch a { padding: 6px 12px; font-size: .85rem; color: var(--text-muted); }
.lang-switch a.active { background: var(--primary); color: #fff; }
.btn-inquiry {
    background: var(--primary);
    color: #fff;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    border: none;
    display: inline-block;
}
.btn-inquiry:hover { background: var(--primary-dark); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--text);
    line-height: 1;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 11px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .95rem;
    border: none;
    transition: all .2s;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.15); }
.btn-outline-dark { background: transparent; color: var(--primary-dark); border: 1.5px solid var(--primary); }
.btn-outline-dark:hover { background: var(--primary-light); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { filter: brightness(.95); }
.btn-block { width: 100%; text-align: center; }

/* ---------- Hero Slider ---------- */
.hero { position: relative; min-height: 520px; overflow: hidden; background: #3c2b1d; }
.hero-slide { position: relative; }
.hero-slide img { width: 100%; height: 560px; object-fit: cover; opacity: .5; }
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}
.hero-content-inner { max-width: 780px; margin: 0 auto; padding: 0 20px; }
.hero-content h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; line-height: 1.25; margin-bottom: 18px; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.hero-content p { font-size: clamp(1rem, 1.6vw, 1.2rem); opacity: .95; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-dots {
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.hero-dots button {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.4);
    transition: all .2s;
}
.hero-dots button.active { background: #f6c28a; width: 24px; border-radius: 5px; }
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.16);
    border: none;
    color: #fff;
    width: 46px; height: 46px;
    border-radius: 50%;
    font-size: 1.4rem;
    transition: background .2s;
    z-index: 5;
}
.hero-arrow:hover { background: rgba(255,255,255,.32); }
.hero-arrow.prev { left: 18px; }
.hero-arrow.next { right: 18px; }

/* ---------- Sections ---------- */
.section { padding: 70px 0; }
.section-light { background: var(--bg-light); }
.section-title { text-align: center; margin-bottom: 44px; }
.section-title h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; color: var(--text); }
.section-title p { color: var(--text-muted); margin-top: 10px; max-width: 620px; margin-left: auto; margin-right: auto; }
.section-title .bar { width: 52px; height: 4px; background: var(--accent); border-radius: 2px; margin: 14px auto 0; }

/* ---------- Category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.cat-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 16px;
    text-align: center;
    transition: all .25s;
    display: block;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.cat-card .cat-icon { width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cat-card .cat-icon img { width: 40px; height: 40px; object-fit: contain; }
.cat-card h3 { font-size: 1rem; margin-bottom: 4px; }
.cat-card span { font-size: .82rem; color: var(--text-muted); }

/* ---------- Product grid ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.prod-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .25s;
    display: flex;
    flex-direction: column;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.prod-card .thumb { aspect-ratio: 1; overflow: hidden; background: var(--bg-light); position: relative; }
.prod-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.prod-card:hover .thumb img { transform: scale(1.05); }
.prod-card .badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--accent);
    color: #fff;
    font-size: .72rem;
    padding: 3px 9px;
    border-radius: 20px;
    font-weight: 600;
}
.prod-card .body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.prod-card .body h3 { font-size: 1.02rem; margin-bottom: 6px; line-height: 1.35; }
.prod-card .body h3 a:hover { color: var(--primary-dark); }
.prod-card .body p { font-size: .86rem; color: var(--text-muted); flex: 1; }
.prod-card .meta { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; }
.prod-card .price { color: var(--primary-dark); font-weight: 700; font-size: .95rem; }
.prod-card .price small { font-weight: 400; color: var(--text-muted); font-size: .78rem; }
.prod-card .link { font-size: .85rem; font-weight: 600; color: var(--primary-dark); }

/* ---------- News grid ---------- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.news-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .25s;
    display: flex;
    flex-direction: column;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.news-card .news-thumb { aspect-ratio: 3/2; overflow: hidden; background: var(--bg-light); }
.news-card .news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.news-card:hover .news-thumb img { transform: scale(1.05); }
.news-card .news-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.news-card .news-date { font-size: .78rem; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.news-card h3 { font-size: 1.02rem; line-height: 1.4; margin-bottom: 8px; flex: 1; }
.news-card .news-body p { font-size: .86rem; color: var(--text-muted); margin-bottom: 12px; }
.news-more { font-size: .85rem; font-weight: 600; color: var(--primary-dark); }

/* ---------- Certifications ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.cert-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    text-align: center;
    transition: all .25s;
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cert-card .cert-img {
    aspect-ratio: 3/4;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-light);
    border: 1px solid var(--border);
    margin-bottom: 14px;
}
.cert-card .cert-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.cert-card h3 { font-size: .98rem; margin-bottom: 6px; }
.cert-card p { font-size: .8rem; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}
.faq-icon {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: transform .25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 20px 18px; color: var(--text-muted); font-size: .93rem; }

/* ---------- About / Features ---------- */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-wrap .about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-wrap h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: 16px; }
.about-wrap h2 .accent { color: var(--primary); }
.about-wrap p { color: var(--text-muted); margin-bottom: 12px; }
.about-points { margin-top: 18px; display: grid; gap: 12px; }
.about-points li { display: flex; gap: 10px; align-items: flex-start; }
.about-points .tick { color: var(--olive); font-weight: 700; font-size: 1.1rem; line-height: 1.4; }

/* ---------- Stats ---------- */
.stats { background: var(--footer-bg); color: #f1e4d2; padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item .num { font-size: 2.4rem; font-weight: 800; color: #f6c28a; }
.stat-item .label { opacity: .85; font-size: .95rem; }

/* ---------- Why choose us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.why-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all .25s;
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.why-card .icon {
    width: 54px; height: 54px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: .88rem; color: var(--text-muted); }

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(120deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.cta-band h2 { font-size: 1.8rem; margin-bottom: 10px; }
.cta-band p { opacity: .92; margin-bottom: 26px; }

/* ---------- Page header (inner pages) ---------- */
.page-header {
    background: linear-gradient(120deg, var(--footer-bg), var(--primary-dark));
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.page-header h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; }
.page-header p { opacity: .85; margin-top: 10px; }
.breadcrumb { font-size: .85rem; margin-top: 14px; color: #e2cdb2; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { margin: 0 8px; opacity: .6; }

/* ---------- Article content ---------- */
.article-content { font-size: 1rem; line-height: 1.9; color: var(--text); }
.article-content p { margin-bottom: 14px; }

/* ---------- Filter bar ---------- */
.filter-bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chips a {
    padding: 7px 16px;
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: .88rem;
    color: var(--text-muted);
    background: #fff;
}
.filter-chips a:hover { border-color: var(--primary); color: var(--primary-dark); }
.filter-chips a.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.search-box { display: flex; gap: 0; align-items: stretch; }
.search-box input {
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 8px 0 0 8px;
    outline: none;
    font-family: inherit;
    width: 240px;
}
.search-box button {
    padding: 9px 18px;
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: 0 8px 8px 0;
}

/* ---------- Product detail ---------- */
.pd-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.pd-gallery .main-img {
    aspect-ratio: 1;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-light);
    margin-bottom: 12px;
}
.pd-gallery .main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.pd-thumbs button {
    aspect-ratio: 1;
    border: 2px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    background: var(--bg-light);
}
.pd-thumbs button.active { border-color: var(--primary); }
.pd-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pd-info h1 { font-size: 1.7rem; font-weight: 800; margin-bottom: 10px; }
.pd-info .cat-link { color: var(--primary-dark); font-size: .9rem; margin-bottom: 14px; display: inline-block; }
.pd-summary { color: var(--text-muted); margin-bottom: 20px; }
.pd-specs { display: grid; gap: 0; margin-bottom: 22px; }
.pd-specs .row { display: flex; padding: 10px 0; border-bottom: 1px dashed var(--border); }
.pd-specs .row .k { width: 140px; color: var(--text-muted); font-size: .9rem; }
.pd-specs .row .v { flex: 1; font-weight: 500; font-size: .95rem; }
.pd-price { font-size: 1.3rem; color: var(--primary-dark); font-weight: 800; margin-bottom: 20px; }
.pd-price small { font-weight: 400; font-size: .85rem; color: var(--text-muted); }

.detail-tabs { margin-top: 60px; }
.tabs-nav { display: flex; gap: 4px; border-bottom: 2px solid var(--border); margin-bottom: 26px; }
.tabs-nav button {
    padding: 12px 22px;
    border: none;
    background: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}
.tabs-nav button.active { color: var(--primary-dark); border-bottom-color: var(--primary); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel p { margin-bottom: 12px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .88rem; font-weight: 600; }
.form-group label .req { color: var(--danger); }
.form-group input,
.form-group textarea,
.form-group select {
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: .95rem;
    outline: none;
    transition: border .2s;
    background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(217,123,61,.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error { color: var(--danger); font-size: .82rem; }
.form-success {
    background: #ecf7ef;
    border: 1px solid #bfe3cd;
    color: #2f6b47;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: .92rem;
}

.inquiry-panel {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start; }
.contact-info-card { background: var(--footer-bg); color: #f1e4d2; border-radius: var(--radius); padding: 30px; }
.contact-info-card h3 { font-size: 1.2rem; margin-bottom: 20px; color: #fff; }
.contact-info-card ul { display: grid; gap: 18px; }
.contact-info-card li { display: flex; gap: 14px; }
.contact-info-card .ci { font-size: 1.3rem; }
.contact-info-card .k { font-size: .8rem; opacity: .7; }
.contact-info-card .v { font-size: .95rem; }
.contact-info-card .socials { display: flex; gap: 10px; margin-top: 24px; }
.contact-info-card .socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.contact-info-card .socials a:hover { background: var(--primary); }

/* ---------- Footer ---------- */
.footer { background: var(--footer-bg); color: #cfbb9f; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer h4 { color: #f6e8d4; font-size: 1rem; margin-bottom: 18px; }
.footer .f-about p { font-size: .9rem; line-height: 1.8; }
.footer .f-about .logo { color: #fff; margin-bottom: 14px; }
.footer .f-links li { margin-bottom: 10px; }
.footer .f-links a:hover { color: #f6c28a; }
.footer .f-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .9rem; }
.footer .f-news p { font-size: .9rem; margin-bottom: 14px; }
.footer .news-form { display: flex; }
.footer .news-form input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: #fff;
    border-radius: 8px 0 0 8px;
    outline: none;
}
.footer .news-form button {
    padding: 10px 16px;
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; text-align: center; font-size: .85rem; }
.footer-bottom a { color: #e2cdb2; }
.footer-bottom a:hover { color: #f6c28a; }

/* ---------- Floating buttons ---------- */
.float-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 54px; height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    box-shadow: var(--shadow-lg);
    z-index: 90;
    transition: transform .2s;
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-top {
    position: fixed;
    right: 20px;
    bottom: 86px;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    z-index: 90;
    display: none;
}
.float-top.show { display: block; }

/* ---------- Pagination ---------- */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span {
    min-width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: .9rem;
    color: var(--text);
    background: #fff;
}
.pagination .active { background: var(--primary); border-color: var(--primary); color: #fff; }
.pagination .disabled { opacity: .4; pointer-events: none; }

/* ---------- Misc ---------- */
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state .icon { font-size: 3rem; margin-bottom: 14px; opacity: .4; }
.text-center { text-align: center; }
.mt-2 { margin-top: 20px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .nav {
        position: fixed;
        top: 0; right: -280px;
        width: 260px; height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        box-shadow: var(--shadow-lg);
        transition: right .3s;
        gap: 8px;
    }
    .nav.open { right: 0; }
    .nav a { width: 100%; }
    .nav-toggle { display: block; }
    .header-actions .btn-inquiry { display: none; }
    .about-wrap, .pd-wrap, .contact-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero, .hero-slide img { min-height: 420px; height: 420px; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .topbar-info span:nth-child(2) { display: none; }
    .search-box input { width: 160px; }
}
