/* PetSupply PH category landing pages */
:root {
    --primary-dark: #003d80;
    --primary: #004a99;
    --primary-light: #3391ff;
    --accent: #ff9800;
    --white: #ffffff;
    --bg-light: #f5f9ff;
    --bg-section: #f8fbff;
    --blue-soft: #eaf4ff;
    --text-dark: #2f3b4f;
    --text-body: #334155;
    --text-light: #64748b;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 4px rgba(13, 71, 161, .06);
    --shadow-md: 0 8px 24px rgba(13, 71, 161, .10);
    --shadow-lg: 0 20px 48px rgba(13, 71, 161, .14);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --container: 1180px;
    --header-h: 74px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: 0; cursor: pointer; font: inherit; }
.container { width: min(100% - 40px, var(--container)); margin: 0 auto; }
h1, h2, h3 { font-family: "Outfit", "Inter", sans-serif; color: var(--text-dark); line-height: 1.15; letter-spacing: 0; }
h1 { font-size: clamp(36px, 5.7vw, 68px); font-weight: 800; }
h2 { font-size: clamp(27px, 3.3vw, 40px); font-weight: 760; }
h3 { font-size: 21px; font-weight: 720; }
p { color: var(--text-body); }

.site-header {
    position: relative;
    z-index: 50;
    height: var(--header-h);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, .9);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.brand img { width: 52px; height: 52px; padding: 4px; border-radius: 50%; object-fit: contain; background: var(--white); box-shadow: var(--shadow-sm); }
.brand-text { display: grid; line-height: 1.1; }
.brand-text strong { font-family: "Outfit", "Inter", sans-serif; color: var(--primary); font-size: 21px; }
.brand-text span { color: var(--text-light); font-size: 12px; font-weight: 650; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
    padding: 9px 13px;
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-size: 14.5px;
    font-weight: 650;
}
.main-nav a:hover { color: var(--primary); background: var(--bg-light); }
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    color: var(--primary-dark);
    align-items: center;
    justify-content: center;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    position: relative;
}
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 750;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn-primary { background: var(--primary); color: var(--white); border: 2px solid var(--primary); box-shadow: 0 10px 26px rgba(0, 74, 153, .20); }
.btn-primary:hover { background: var(--primary-light); border-color: var(--primary-light); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--white); border: 2px solid var(--accent); box-shadow: 0 10px 24px rgba(255, 152, 0, .22); }
.btn-accent:hover { transform: translateY(-2px); }
.btn-outline { background: var(--white); color: var(--primary-dark); border: 1.5px solid rgba(0, 74, 153, .26); }
.btn-outline:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.hero {
    padding: 70px 0 70px;
    background:
        linear-gradient(90deg, rgba(245, 249, 255, .98), rgba(245, 249, 255, .88), rgba(245, 249, 255, .55)),
        url("images/hero-factory-bg.webp") center right / cover no-repeat,
        var(--bg-light);
}
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; color: var(--text-light); font-size: 13px; font-weight: 650; }
.breadcrumbs a { color: var(--primary); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, .78fr); gap: 48px; align-items: center; }
.eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 13px;
    border-radius: 999px;
    color: var(--primary-dark);
    background: rgba(234, 244, 255, .92);
    border: 1px solid rgba(51, 145, 255, .22);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.hero h1 span { color: var(--primary); }
.hero-lead { max-width: 660px; margin: 22px 0 30px; color: #43536b; font-size: clamp(17px, 2vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-card {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-lg);
}
.hero-card h2 { font-size: 24px; margin-bottom: 14px; }
.hero-card ul { display: grid; gap: 12px; }
.hero-card li { padding-left: 20px; position: relative; color: var(--text-body); font-size: 15px; }
.hero-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.section-pad { padding: 78px 0; }
.section-soft { background: var(--bg-section); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 810px; margin: 0 auto 38px; text-align: center; }
.section-head p { margin-top: 13px; color: var(--text-light); font-size: 17px; }
.kicker { display: inline-block; margin-bottom: 11px; color: #b86b00; font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.content-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.info-card, .product-card, .faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.info-card { padding: 24px; }
.info-card h3 { margin-bottom: 9px; font-size: 20px; }
.info-card p { color: var(--text-light); font-size: 14.8px; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.product-card { overflow: hidden; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(51, 145, 255, .34); }
.product-image { aspect-ratio: 4 / 3; background: var(--blue-soft); overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .28s ease; }
.product-image a { display: block; width: 100%; height: 100%; }
.product-card:hover .product-image img { transform: scale(1.04); }
.product-body { padding: 20px; }
.product-body h3 { margin-bottom: 9px; font-size: 20px; }
.product-body h3 a { color: inherit; transition: color .2s ease; }
.product-body h3 a:hover { color: var(--primary); }
.product-body p { color: var(--text-light); font-size: 14.5px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 15px 0 18px; }
.product-meta span { padding: 6px 9px; border-radius: 999px; background: var(--bg-light); color: var(--primary-dark); font-size: 12px; font-weight: 750; }
.product-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 38px; align-items: start; }
.copy-block p { margin-top: 14px; color: var(--text-light); }
.copy-list { display: grid; gap: 12px; margin-top: 20px; }
.copy-list li { padding: 14px 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-body); }
.city-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.city-card { padding: 22px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.city-card h3 { margin-bottom: 8px; font-size: 19px; }
.city-card p { color: var(--text-light); font-size: 14.5px; }
.city-card a { display: inline-flex; margin-top: 14px; color: var(--primary); font-weight: 800; }
.city-card a:hover { color: var(--primary-light); }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.faq-item { padding: 22px; }
.faq-item h3 { font-size: 18px; margin-bottom: 8px; }
.faq-item p { color: var(--text-light); font-size: 14.5px; }
.cta-band { background: var(--primary-dark); color: var(--white); padding: 58px 0; }
.cta-band h2, .cta-band p { color: var(--white); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-inner p { margin-top: 10px; opacity: .82; max-width: 760px; }

.site-footer { background: #062f63; color: rgba(255, 255, 255, .86); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr .8fr; gap: 32px; padding-bottom: 30px; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 42px; height: 42px; padding: 4px; border-radius: 50%; object-fit: contain; background: var(--white); }
.footer-brand strong, .footer-col h3 { color: var(--white); }
.footer-col h3 { margin-bottom: 14px; font-size: 17px; }
.footer-col p, .footer-col a { color: rgba(255, 255, 255, .74); font-size: 14px; }
.footer-col a:hover { color: var(--white); }
.footer-links { display: grid; gap: 9px; }
.social-icons { display: flex; gap: 10px; margin-top: 16px; }
.social-icons a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, .12); color: var(--white); font-weight: 800; }
.footer-bottom { padding-top: 22px; }
.footer-bottom p { color: rgba(255, 255, 255, .68); font-size: 13px; }

@media (max-width: 980px) {
    .hero-grid, .split { grid-template-columns: 1fr; }
    .content-grid, .product-grid, .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 740px) {
    .container { width: min(100% - 28px, var(--container)); }
    .site-header, .header-inner { height: 68px; }
    .brand img { width: 46px; height: 46px; padding: 3px; }
    .brand-text span { display: none; }
    .menu-toggle { display: inline-flex; }
    .main-nav {
        position: absolute;
        top: 68px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
    }
    body.menu-open .main-nav { display: flex; }
    .main-nav a { padding: 13px 14px; }
    .hero { padding-top: 48px; }
    .hero-actions .btn, .product-actions .btn, .cta-inner .btn { width: 100%; }
    .content-grid, .product-grid, .city-grid, .faq-grid, .footer-grid { grid-template-columns: 1fr; }
    .section-pad { padding: 62px 0; }
}
