:root {
    --bg: #fffaf5;
    --surface: #ffffff;
    --surface-soft: #fff1e6;
    --text: #263238;
    --muted: #68737a;
    --primary: #ff7a59;
    --primary-dark: #e95f3d;
    --secondary: #2fb8ac;
    --accent: #ffd166;
    --border: rgba(38, 50, 56, .11);
    --shadow: 0 20px 60px rgba(54, 39, 27, .12);
    --shadow-hover: 0 28px 80px rgba(54, 39, 27, .18);
}

[data-theme="dark"] {
    --bg: #111827;
    --surface: #182333;
    --surface-soft: #223145;
    --text: #f8fafc;
    --muted: #d2d9e3;
    --border: rgba(255, 255, 255, .18);
    --shadow: 0 18px 50px rgba(0, 0, 0, .3);
}

[data-theme="dark"] body::before {
    opacity: .12;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background:
        radial-gradient(circle at 8% 6%, rgba(255, 122, 89, .10), transparent 24rem),
        radial-gradient(circle at 92% 18%, rgba(47, 184, 172, .10), transparent 22rem),
        radial-gradient(circle at 18% 88%, rgba(255, 209, 102, .14), transparent 26rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    position: relative;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.text-muted { color: var(--muted) !important; }

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232D7A3A' fill-opacity='0.075'%3E%3Cellipse cx='15' cy='12' rx='5' ry='6'/%3E%3Cellipse cx='30' cy='8' rx='5' ry='6'/%3E%3Cellipse cx='45' cy='12' rx='5' ry='6'/%3E%3Cellipse cx='8' cy='26' rx='4' ry='5'/%3E%3Cellipse cx='30' cy='38' rx='14' ry='16'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
    background-position: 0 0;
}

body::after {
    content: "";
    position: fixed;
    top: 96px;
    right: -120px;
    width: 320px;
    height: 320px;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 184, 172, .18), transparent 68%);
    filter: blur(4px);
}

main > section {
    position: relative;
}

main > section:nth-of-type(even)::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .34), transparent 42%),
        radial-gradient(circle at 94% 12%, rgba(255, 122, 89, .08), transparent 18rem);
}

[data-theme="dark"] .bg-body-tertiary {
    background-color: #121c2b !important;
    color: var(--text);
}

[data-theme="dark"] .lead,
[data-theme="dark"] p,
[data-theme="dark"] small,
[data-theme="dark"] td,
[data-theme="dark"] th,
[data-theme="dark"] label,
[data-theme="dark"] .form-text {
    color: var(--muted);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="dark"] strong {
    color: var(--text);
}

.glass-nav {
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding-top: 0;
    padding-bottom: 0;
    min-height: 68px;
    overflow: visible;
}
.brand-mark {
    color: var(--primary);
    padding-top: 0;
    padding-bottom: 0;
    height: 68px;
    display: flex;
    align-items: center;
    overflow: visible;
}
.site-logo {
    width: 172px !important;
    height: 118px !important;
    max-width: none;
    display: block;
    object-fit: contain;
    margin-top: -25px;
    margin-bottom: -25px;
}
.nav-link {
    color: var(--text);
    font-weight: 600;
    padding-top: 6px;
    padding-bottom: 6px;
}
.nav-link:hover { color: var(--primary); }
.theme-toggle {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface);
    color: var(--text);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ff9f68);
    border: 0;
    box-shadow: 0 12px 24px rgba(255, 122, 89, .25);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); transform: translateY(-1px); }
.btn-outline-primary { color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); border-color: var(--primary); }
.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #14b85a);
    border: 0;
    color: #fff;
    box-shadow: 0 14px 28px rgba(37, 211, 102, .26);
}
.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1fb857, #0fa34e);
    color: #fff;
    transform: translateY(-2px);
}
.section-pad { padding: 86px 0; }
.section-title { max-width: 680px; margin-bottom: 34px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--secondary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .78rem;
}

.eyebrow:not(.text-white)::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(255, 209, 102, .18);
}

.hero {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, .76), rgba(17, 24, 39, .15)),
        var(--hero-image, url("https://images.unsplash.com/photo-1601758124510-52d02ddb7cbd?auto=format&fit=crop&w=1800&q=80")) center/cover;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(transparent, var(--bg));
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 26%, rgba(255, 209, 102, .18), transparent 20rem),
        linear-gradient(180deg, transparent 64%, rgba(255, 250, 245, .22));
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.45rem, 7vw, 5.6rem); line-height: .95; font-weight: 900; max-width: 790px; }
.hero p { max-width: 620px; color: rgba(255,255,255,.88); font-size: 1.12rem; }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 620px;
}
.stat-pill, .soft-card, .pet-card, .product-card, .price-card, .auth-card, .dashboard-panel {
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

[data-theme="dark"] .stat-pill,
[data-theme="dark"] .soft-card,
[data-theme="dark"] .pet-card,
[data-theme="dark"] .product-card,
[data-theme="dark"] .price-card,
[data-theme="dark"] .auth-card,
[data-theme="dark"] .dashboard-panel,
[data-theme="dark"] .search-shell,
[data-theme="dark"] .visit-card,
[data-theme="dark"] .modal-content {
    background: #182333;
    color: var(--text);
    border-color: var(--border);
}
.stat-pill { padding: 16px; color: var(--text); }
.stat-pill strong { display: block; font-size: 1.35rem; color: var(--primary); }
.stat-pill {
    backdrop-filter: blur(10px);
    transition: .25s ease;
}
.stat-pill:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.soft-card { padding: 24px; height: 100%; transition: .25s ease; }
.soft-card:hover, .pet-card:hover, .product-card:hover, .price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: color-mix(in srgb, var(--primary) 34%, var(--border));
}
.icon-badge {
    width: 52px;
    height: 52px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--primary);
    font-size: 1.35rem;
}

.pet-card, .product-card, .price-card { position: relative; overflow: hidden; transition: .25s ease; height: 100%; }
.pet-card img, .product-card img, .blog-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.pet-card img,
.product-card img,
.blog-card img,
.intro-image img {
    filter: saturate(1.06) contrast(1.02);
}
.card-body-pad { padding: 20px; }
.product-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}
.old-price {
    color: var(--muted);
    font-weight: 700;
    text-decoration: line-through;
}
.product-price strong {
    color: var(--primary);
    font-size: 1.1rem;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--text);
    font-size: .8rem;
    font-weight: 700;
}
.search-shell {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
}

.disclaimer-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 900px;
    padding: 14px 16px;
    border: 1px solid color-mix(in srgb, var(--primary) 28%, var(--border));
    border-radius: 8px;
    background: color-mix(in srgb, var(--primary) 8%, var(--surface));
    color: var(--text);
    font-weight: 650;
}

.disclaimer-note i {
    color: var(--primary);
    margin-top: 2px;
}

.intro-copy .container {
    max-width: 1140px;
}

.intro-image {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: var(--surface-soft);
}

.intro-image img {
    width: 100%;
    aspect-ratio: 5 / 4;
    display: block;
    object-fit: cover;
}

.home-services {
    position: relative;
    background:
        radial-gradient(circle at 8% 18%, rgba(47, 184, 172, .10), transparent 28%),
        radial-gradient(circle at 92% 10%, rgba(255, 122, 89, .10), transparent 26%),
        var(--bg);
}

.home-services-title {
    max-width: 760px;
    margin-bottom: 44px;
}

.home-services-title h2 {
    margin-bottom: 14px;
}

.home-services-title p {
    font-size: 1.08rem;
}

.service-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--primary) 12%, transparent);
    color: var(--primary);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.home-service-card {
    position: relative;
    height: 100%;
    padding: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.home-service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .8), transparent);
    opacity: .8;
}

.home-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: color-mix(in srgb, var(--primary) 42%, var(--border));
}

.home-service-green { background: #ecfdf3; border-color: #bfe8cf; }
.home-service-blue { background: #eff6ff; border-color: #bfdbfe; }
.home-service-amber { background: #fffbeb; border-color: #fde68a; }
.home-service-pink { background: #fff1f2; border-color: #fecdd3; }
.home-service-lilac { background: #f5f3ff; border-color: #ddd6fe; }

.home-service-image {
    position: relative;
    height: 176px;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--surface-soft);
}

.home-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.home-service-card:hover .home-service-image img {
    transform: scale(1.05);
}

.home-service-icon {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    color: var(--primary);
    font-size: 1.25rem;
    backdrop-filter: blur(8px);
}

.home-service-card h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
    font-weight: 800;
}

.home-service-card p {
    min-height: 112px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: .93rem;
    line-height: 1.55;
}

.home-service-card .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 800;
}

[data-theme="dark"] .home-services {
    background:
        radial-gradient(circle at 8% 18%, rgba(47, 184, 172, .12), transparent 28%),
        radial-gradient(circle at 92% 10%, rgba(255, 122, 89, .12), transparent 26%),
        var(--bg);
}

[data-theme="dark"] .home-service-card {
    background: #182333;
    border-color: var(--border);
}

.find-pets-section {
    background:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232D7A3A' fill-opacity='0.045'%3E%3Cellipse cx='15' cy='12' rx='5' ry='6'/%3E%3Cellipse cx='30' cy='8' rx='5' ry='6'/%3E%3Cellipse cx='45' cy='12' rx='5' ry='6'/%3E%3Cellipse cx='8' cy='26' rx='4' ry='5'/%3E%3Cellipse cx='30' cy='38' rx='14' ry='16'/%3E%3C/g%3E%3C/svg%3E"),
        radial-gradient(circle at 10% 20%, rgba(47, 184, 172, .08), transparent 28%),
        radial-gradient(circle at 90% 0%, rgba(255, 122, 89, .08), transparent 24%),
        var(--bg);
    background-size: 60px 60px, auto, auto, auto;
}

.pet-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 38px;
}

.pet-toggle {
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    border-radius: 8px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
}

.pet-toggle button {
    min-height: 44px;
    padding: 10px 22px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--muted);
    font-weight: 800;
    transition: .2s ease;
}

.pet-toggle button.active,
.pet-toggle button:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 22px rgba(255, 122, 89, .22);
}

.find-pets-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.find-pets-grid [data-pet-card][hidden] {
    display: none;
}

.find-pets-section .pet-card {
    border-radius: 8px;
}

.find-pets-section .pet-card img {
    height: 224px;
    aspect-ratio: auto;
    transition: transform .45s ease;
}

.find-pets-section .pet-card,
.shop-product-card,
.review-card,
.home-service-card {
    isolation: isolate;
}

.find-pets-section .pet-card::after,
.shop-product-card::after,
.review-card::after,
.home-service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    background: linear-gradient(135deg, rgba(255, 122, 89, .12), rgba(47, 184, 172, .10));
    transition: opacity .25s ease;
}

.find-pets-section .pet-card:hover::after,
.shop-product-card:hover::after,
.review-card:hover::after,
.home-service-card:hover::after {
    opacity: 1;
}

.find-pets-section .pet-card:hover img {
    transform: scale(1.05);
}

.find-pets-section .card-body-pad h5 {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.find-pets-section .card-body-pad .btn {
    min-height: 44px;
    width: auto !important;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 8px;
    font-size: .86rem;
    font-weight: 800;
}

.find-pets-disclaimer {
    display: inline-flex;
    text-align: left;
}

.shop-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent) 24%, transparent);
    color: #9a6400;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-shop-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.shop-product-card {
    border-radius: 8px;
    position: relative;
}

.shop-product-image {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: var(--surface-soft);
}

.shop-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.shop-product-card:hover .shop-product-image img {
    transform: scale(1.05);
}

.shop-product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    padding: 4px 9px;
    border: 1px solid #fde68a;
    border-radius: 999px;
    background: #fef3c7;
    color: #92400e;
    font-size: .72rem;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shop-product-card .card-body-pad {
    padding: 16px;
}

.shop-product-card h5 {
    min-height: 40px;
    margin-bottom: 8px;
    font-size: .95rem;
    line-height: 1.3;
}

.shop-product-card p {
    min-height: 42px;
    margin-bottom: 12px;
    font-size: .82rem;
    line-height: 1.45;
}

.shop-product-card .product-price {
    margin-bottom: 2px;
}

.shop-product-card .btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 800;
}

.local-trust {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.faq-accordion {
    max-width: 880px;
    margin: 0 auto;
}

.faq-accordion .accordion-item {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 12px 36px rgba(54, 39, 27, .08);
}

.faq-accordion .accordion-item + .accordion-item {
    margin-top: 14px;
}

.faq-accordion .accordion-button {
    background: var(--surface);
    color: var(--text);
    font-weight: 800;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--surface-soft);
    color: var(--primary);
}

.faq-accordion .accordion-body {
    background: var(--surface);
}

.testimonial-controls {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.testimonial-controls button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface);
    color: var(--primary);
    box-shadow: 0 10px 26px rgba(54, 39, 27, .10);
    transition: .2s ease;
}

.testimonial-controls button:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.testimonial-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 48px) / 3);
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 2px 14px;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-height: 210px;
    padding: 24px;
    scroll-snap-align: start;
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--primary) 45%, var(--border));
    box-shadow: 0 24px 70px rgba(54, 39, 27, .18);
}

.testimonial-card p {
    color: var(--text);
    line-height: 1.65;
}

.reviews-section {
    background: var(--bg);
}

.review-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 209, 102, .22);
    color: #b7791f;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.reviews-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 72px) / 4);
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 2px 16px;
}

.reviews-grid::-webkit-scrollbar {
    display: none;
}

.review-card {
    position: relative;
    height: 100%;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 209, 102, .75);
    box-shadow: 0 24px 70px rgba(54, 39, 27, .18);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #f59e0b;
}

.review-card p {
    min-height: 112px;
    color: var(--text);
    font-size: .98rem;
    line-height: 1.65;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.review-avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--primary);
    font-weight: 900;
}

.review-author strong,
.review-author span {
    display: block;
}

.review-author span {
    color: var(--muted);
    font-size: .86rem;
}

[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .testimonial-controls button {
    background: #182333;
    color: var(--text);
    border-color: var(--border);
}

[data-theme="dark"] .review-card {
    background: #182333;
    color: var(--text);
    border-color: var(--border);
}

[data-theme="dark"] .faq-accordion .accordion-item,
[data-theme="dark"] .faq-accordion .accordion-button,
[data-theme="dark"] .faq-accordion .accordion-body {
    background: #182333;
    color: var(--text);
}

[data-theme="dark"] .faq-accordion .accordion-button:not(.collapsed) {
    background: #223145;
    color: var(--primary);
}

.service-area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-area-list span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--text);
    font-size: .86rem;
    font-weight: 700;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-card h2 {
    margin-bottom: 10px;
    font-size: 1.15rem;
    font-weight: 800;
}

.contact-section {
    padding-bottom: 96px;
}
.visit-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-map {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: var(--surface);
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.process-step {
    position: relative;
    padding-left: 54px;
}
.process-step span {
    position: absolute;
    left: 0;
    top: 0;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
}

.gallery-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: end;
    padding: 96px 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, .84), rgba(17, 24, 39, .28)),
        url("https://images.unsplash.com/photo-1601758123927-196d5f2a143b?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
}
.gallery-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(transparent, var(--bg));
}
.gallery-hero .container {
    position: relative;
    z-index: 1;
}
.gallery-hero-content {
    max-width: 760px;
}
.gallery-hero h1 {
    margin: 14px 0 16px;
    max-width: 720px;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: .98;
    font-weight: 900;
}
.gallery-hero p {
    max-width: 620px;
    color: rgba(255,255,255,.88);
    font-size: 1.08rem;
}
.gallery-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.gallery-stats span,
.gallery-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    color: #fff;
    font-weight: 700;
}
.gallery-stats strong {
    color: var(--accent);
}
.gallery-count {
    border-color: var(--border);
    background: var(--surface);
    color: var(--text);
    box-shadow: var(--shadow);
}
.gallery-showcase {
    padding-top: 36px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
    cursor: zoom-in;
    break-inside: avoid;
    transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 70px rgba(54, 39, 27, .18);
}
.gallery-item img {
    width: 100%;
    height: 280px;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    inset: auto 0 0;
    display: grid;
    gap: 6px;
    padding: 56px 18px 18px;
    background: linear-gradient(transparent, rgba(17, 24, 39, .88));
    color: #fff;
    text-align: left;
}
.gallery-overlay span,
.gallery-caption span {
    color: var(--accent);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.gallery-overlay strong {
    font-size: 1.08rem;
}
.gallery-video {
    cursor: default;
}
.gallery-video .ratio {
    height: 280px;
}
.gallery-video iframe {
    border: 0;
}
.gallery-caption {
    padding: 16px 18px 18px;
}
.gallery-caption h3 {
    margin: 6px 0 0;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 800;
}
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(0,0,0,.82);
    z-index: 2000;
}
.lightbox.active { display: grid; }
.lightbox figure {
    position: relative;
    max-width: min(92vw, 1040px);
    margin: 0;
}
.lightbox img {
    max-width: 100%;
    max-height: 82vh;
    display: block;
    border-radius: 8px;
    box-shadow: 0 28px 90px rgba(0,0,0,.45);
}
.lightbox figcaption {
    margin-top: 12px;
    color: #fff;
    text-align: center;
    font-weight: 700;
}
.lightbox-close {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: #fff;
    z-index: 1;
}

.form-control, .form-select {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border);
    border-radius: 8px;
    min-height: 46px;
}

.form-control::placeholder {
    color: var(--muted);
    opacity: 1;
}

[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
    background-color: #101827;
    color: var(--text);
    border-color: var(--border);
}

[data-theme="dark"] .form-control::placeholder {
    color: #aeb9c7;
}

[data-theme="dark"] .form-select option {
    background-color: #101827;
    color: var(--text);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(255,122,89,.18);
}

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 241, 230, .96), rgba(232, 245, 233, .94)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232D7A3A' fill-opacity='0.055'%3E%3Cellipse cx='15' cy='12' rx='5' ry='6'/%3E%3Cellipse cx='30' cy='8' rx='5' ry='6'/%3E%3Cellipse cx='45' cy='12' rx='5' ry='6'/%3E%3Cellipse cx='8' cy='26' rx='4' ry='5'/%3E%3Cellipse cx='30' cy='38' rx='14' ry='16'/%3E%3C/g%3E%3C/svg%3E");
    border-top: 1px solid var(--border);
}
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary), var(--primary));
}
.site-footer::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -130px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 89, .18), transparent 68%);
    pointer-events: none;
}
.site-footer .container {
    position: relative;
    z-index: 1;
}
.site-footer h5,
.site-footer h6 {
    color: var(--text);
}
.site-footer h6 {
    margin-bottom: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .78rem;
}
.site-footer a {
    display: block;
    color: var(--muted);
    margin-bottom: 9px;
    font-weight: 650;
    transition: .2s ease;
}
.site-footer a:hover {
    color: var(--primary);
    transform: translateX(4px);
}
.socials { display: flex; gap: 10px; }
.socials a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 0;
    background: #fff;
    color: var(--primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(54, 39, 27, .10);
}
.socials a:hover {
    transform: translateY(-3px);
    background: var(--primary);
    color: #fff;
}
.footer-bottom {
    margin-top: 24px;
    padding: 18px 20px 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
    text-align: center;
    font-size: .92rem;
}
.footer-disclaimer {
    padding: 14px 16px;
    border: 1px solid rgba(255, 122, 89, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
    color: var(--text);
    font-size: .95rem;
    font-weight: 650;
    box-shadow: 0 12px 32px rgba(54, 39, 27, .08);
    backdrop-filter: blur(10px);
}
.live-chat {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: var(--shadow);
    z-index: 1000;
    font-size: 1.45rem;
}
.live-chat:hover {
    background: #1fb857;
    color: #fff;
    transform: translateY(-1px);
}

.admin-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar { background: #101828; color: #fff; padding: 24px; }
.admin-sidebar a { display: block; color: rgba(255,255,255,.78); padding: 10px 0; }
.admin-sidebar a:hover { color: #fff; }
.admin-main { padding: 28px; background: var(--bg); }
.table { color: var(--text); }

[data-theme="dark"] .table {
    --bs-table-bg: transparent;
    --bs-table-color: var(--text);
    --bs-table-border-color: var(--border);
    --bs-table-hover-bg: #223145;
    --bs-table-hover-color: var(--text);
    color: var(--text);
}

[data-theme="dark"] .btn-light {
    background: #f8fafc;
    color: #111827;
    border-color: #f8fafc;
}

[data-theme="dark"] .btn-outline-secondary {
    color: var(--muted);
    border-color: var(--border);
}
.logo-preview {
    min-height: 140px;
    display: grid;
    place-items: center;
    padding: 24px;
    border: 1px dashed var(--border);
    border-radius: 8px;
    background: var(--surface);
}
.logo-preview img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}
.logo-preview span {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
}
.banner-preview {
    min-height: 220px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
}
.banner-preview img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: block;
    object-fit: cover;
}

[data-animate] { opacity: 0; transform: translateY(24px); transition: .7s ease; }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) {
    .home-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .find-pets-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .testimonial-slider { grid-auto-columns: calc((100% - 24px) / 2); }
    .reviews-grid { grid-auto-columns: calc((100% - 24px) / 2); }
    .hero { min-height: 760px; }
    .hero-stats { grid-template-columns: 1fr; }
    .gallery-hero { min-height: 460px; padding: 72px 0; }
    .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .section-pad { padding: 64px 0; }
    .contact-section { padding-bottom: 76px; }
    .contact-map { height: 320px; }
    .admin-shell { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
    .home-services-grid { grid-template-columns: 1fr; }
    .find-pets-grid { grid-template-columns: 1fr; }
    .home-shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .testimonial-slider { grid-auto-columns: 100%; }
    .reviews-grid { grid-auto-columns: 100%; }
    .testimonial-controls { display: none; }
    .shop-product-image { height: 150px; }
    .shop-product-card .card-body-pad { padding: 12px; }
    .shop-product-card h5 { min-height: 36px; font-size: .84rem; }
    .shop-product-card p { min-height: 54px; font-size: .76rem; }
    .shop-product-card .btn { min-height: 40px; font-size: .74rem; }
    .pet-toggle { width: 100%; }
    .pet-toggle button { flex: 1; padding-left: 12px; padding-right: 12px; }
    .hero { min-height: 700px; }
    .hero h1 { font-size: 2.55rem; }
    .gallery-hero { min-height: 420px; padding: 58px 0; }
    .gallery-hero h1 { font-size: 2.45rem; }
    .gallery-stats span, .gallery-count { width: 100%; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item img,
    .gallery-video .ratio { height: 230px; }
    .contact-map { height: 280px; }
    .btn { width: 100%; }
    .d-flex.cta-row { flex-direction: column; }
}
