:root {
    --brand: #d97706;
    --brand-dark: #b45309;
    --accent: #0f766e;
    --bg: #fffbf5;
    --bg-alt: #fff4e3;
    --text: #1f2937;
    --muted: #6b7280;
    --card: #ffffff;
    --border: #f0e0c4;
    --shadow: 0 6px 24px rgba(180, 83, 9, 0.08);
    --shadow-lg: 0 16px 40px rgba(180, 83, 9, 0.15);
    --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.container.narrow { max-width: 820px; }

.center { text-align: center; }
.center-flex { justify-content: center; }
.mt-32 { margin-top: 32px; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 251, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.nav-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 22px;
    color: var(--brand-dark);
    text-decoration: none;
}

.logo-img {
    height: 76px;
    width: auto;
    display: block;
}

.logo-img-footer {
    height: 84px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* ---------- Hamburger menu ---------- */
.nav-toggle-checkbox { display: none; }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: white;
    cursor: pointer;
    box-sizing: border-box;
    transition: background 0.15s;
}

.hamburger:hover {
    background: var(--bg-alt);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.main-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.main-nav a {
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s;
    position: relative;
    padding: 4px 0;
}

.main-nav a:hover { color: var(--brand); }

.main-nav a.active {
    color: var(--brand-dark);
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
}

.nav-cta { white-space: nowrap; }

/* ---------- Dropdown nav ---------- */
.nav-item.has-dropdown {
    position: relative;
}

.nav-dropdown-trigger::after {
    content: " \25BE";
    font-size: 0.8em;
    opacity: 0.7;
    margin-left: 2px;
}

/* hover bridge so cursor can travel from trigger to menu without closing */
.nav-item.has-dropdown::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -16px;
    right: -16px;
    height: 14px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 16px 20px;
    margin-top: 14px;
    min-width: 560px;
    column-count: 3;
    column-gap: 24px;
    z-index: 100;
}

.dropdown-menu a {
    display: block;
    padding: 6px 4px;
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
}

.dropdown-menu a:hover {
    color: var(--brand);
    text-decoration: none;
}

@media (min-width: 901px) {
    .nav-item.has-dropdown:hover .dropdown-menu,
    .nav-item.has-dropdown:focus-within .dropdown-menu {
        display: block;
    }
}

/* Mobile-only toggle controls — hidden on desktop */
.dropdown-toggle-checkbox { display: none; }
.dropdown-mobile-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    font-family: inherit;
}

.btn-primary {
    background: var(--brand);
    color: white;
}

.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: white;
    color: var(--brand-dark);
    border-color: var(--brand);
}

.btn-outline:hover {
    background: var(--bg-alt);
}

.btn-block { display: block; width: 100%; text-align: center; }

.link-arrow {
    display: inline-block;
    margin-top: 8px;
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 14px;
}

.link-arrow:hover { color: var(--brand); }

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(135deg, var(--bg-alt) 0%, #ffe6c2 100%);
    padding: 72px 0 88px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
}

.eyebrow {
    color: var(--brand-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    color: #1f2937;
    margin-bottom: 18px;
    font-weight: 800;
}

.hero-sub {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 28px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-badges {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.hero-image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 18px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--border);
}

.hero-image-badge strong {
    display: block;
    font-size: 28px;
    color: var(--brand);
    line-height: 1;
}

.hero-image-badge span {
    font-size: 13px;
    color: var(--muted);
}

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--bg-alt) 0%, #ffe6c2 100%);
    padding: 72px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 14px;
    font-weight: 800;
}

.page-hero-sub {
    color: var(--muted);
    font-size: 18px;
    max-width: 680px;
    margin: 0 auto;
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; }

.section-alt { background: var(--bg-alt); }

.section-title {
    font-size: clamp(28px, 3vw, 36px);
    text-align: center;
    margin-bottom: 12px;
    font-weight: 800;
}

.section-lead {
    text-align: center;
    color: var(--muted);
    font-size: 17px;
    max-width: 720px;
    margin: 0 auto 48px;
}

/* ---------- Grids ---------- */
.grid-2, .grid-3, .grid-4 {
    display: grid;
    gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.feature-card, .why-card {
    background: var(--card);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover, .why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.feature-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.why-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--brand-dark);
}

.feature-card p, .why-card p {
    color: var(--muted);
    font-size: 15px;
}

/* ---------- Split sections ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.split.reverse .split-image { order: 2; }

.split-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.split-text h2 {
    font-size: clamp(26px, 3vw, 34px);
    margin-bottom: 16px;
    font-weight: 800;
}

.split-text p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 14px;
}

.steps {
    margin-top: 16px;
    padding-left: 20px;
    color: var(--muted);
}

.steps li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.steps strong {
    color: var(--text);
}

/* ---------- Service blocks (services page) ---------- */
.services-list { gap: 32px; }

.service-block {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-block img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.service-block-body {
    padding: 24px 26px 28px;
}

.service-block-body h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.service-block-body p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 8px;
}

/* ---------- Breeds ---------- */
.breed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.breed-card {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.15s;
    box-shadow: var(--shadow);
    color: inherit;
    text-decoration: none !important;
    display: block;
}

.breed-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: var(--shadow-lg);
}

.breed-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--bg-alt);
}

.breed-card-body {
    padding: 16px 18px 18px;
}

.breed-card h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--text);
}

.breed-card .price {
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 6px;
}

.breed-note {
    text-align: center;
    margin-top: 32px;
    color: var(--muted);
}

/* ---------- Area tags ---------- */
.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.area-tags span {
    background: white;
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    box-shadow: var(--shadow);
}

/* ---------- FAQ ---------- */
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-bottom: 14px;
    box-shadow: var(--shadow);
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    font-size: 17px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "+";
    font-size: 24px;
    color: var(--brand);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.7;
}

/* ---------- Single breed page ---------- */
.breed-hero {
    background: linear-gradient(135deg, var(--bg-alt) 0%, #ffe6c2 100%);
    padding: 64px 0;
}

.breed-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.breed-hero-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.breed-hero h1 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.1;
}

.breed-price-tag {
    display: inline-block;
    background: white;
    color: var(--brand-dark);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.breed-hero p {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.breadcrumb {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--muted);
}

.breadcrumb a:hover {
    color: var(--brand-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.stat-card {
    background: var(--card);
    padding: 22px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
}

.stat-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.stat-card h4 {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-card p {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.trait-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.trait {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-dark);
}

.care-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.care-list li {
    padding: 16px 18px 16px 50px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    position: relative;
    color: var(--muted);
}

.care-list li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 14px;
    width: 24px;
    height: 24px;
    background: var(--brand);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.care-list li strong {
    color: var(--text);
}

.related-breeds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .breed-hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .related-breeds { grid-template-columns: 1fr; }
}

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: white;
    padding: 64px 0;
}

.cta-band h2 {
    color: white;
    font-size: clamp(26px, 3vw, 34px);
    margin-bottom: 12px;
    font-weight: 800;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-size: 17px;
}

.cta-band .btn-primary {
    background: white;
    color: var(--brand-dark);
}

.cta-band .btn-primary:hover {
    background: var(--bg-alt);
}

.cta-band .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-band .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-item p, .contact-item a {
    color: var(--muted);
    font-size: 15px;
}

.contact-item a {
    color: var(--brand-dark);
    font-weight: 600;
}

.contact-image {
    margin-top: 12px;
}

.contact-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    aspect-ratio: 12 / 7;
    object-fit: cover;
}

.contact-form {
    background: var(--card);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 14px;
    gap: 6px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font: inherit;
    background: var(--bg);
    transition: border-color 0.15s;
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand);
}

.form-success {
    background: #d1fae5;
    color: #065f46;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-top: 8px;
}

.form-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-top: 8px;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #1f2937;
    color: #e5e7eb;
    padding: 56px 0 0;
    margin-top: 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.8fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
}

.footer-breeds ul {
    column-count: 2;
    column-gap: 24px;
}

.footer-breeds ul li {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
}

.logo-light { color: white; }

.site-footer h4 {
    margin-bottom: 14px;
    font-size: 16px;
    color: white;
}

.site-footer ul {
    list-style: none;
}

.site-footer ul li {
    margin-bottom: 8px;
}

.site-footer a {
    color: #d1d5db;
}

.site-footer a:hover { color: white; }

.site-footer p {
    margin-top: 12px;
    color: #9ca3af;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 20px 0;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hamburger { display: flex; order: 3; }

    .nav-cta { order: 2; }

    .main-nav {
        display: none;
        order: 99;
        flex-basis: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-top: 12px;
        margin-top: 12px;
        border-top: 1px solid var(--border);
    }

    .nav-toggle-checkbox:checked ~ .main-nav {
        display: flex;
    }

    .main-nav a {
        padding: 14px 4px;
        font-size: 16px;
        border-bottom: 1px solid var(--border);
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .main-nav a.active::after {
        display: none;
    }

    .nav-item.has-dropdown { width: 100%; }
    .nav-item.has-dropdown > .nav-dropdown-trigger {
        display: block;
        padding-right: 56px; /* room for the toggle button */
    }
    .nav-item.has-dropdown::before { display: none; }
    .nav-dropdown-trigger::after { content: ""; } /* toggle button supplies the caret */

    /* Tap-target on the right of the trigger row that toggles the breed list */
    .dropdown-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        right: 0;
        width: 52px;
        height: 50px;
        cursor: pointer;
        color: var(--text);
        user-select: none;
        transition: transform 0.2s;
    }
    .dropdown-mobile-toggle::before {
        content: "\25BE";
        font-size: 18px;
        line-height: 1;
    }
    .dropdown-toggle-checkbox:checked ~ .dropdown-mobile-toggle {
        transform: rotate(180deg);
    }

    /* Hidden by default on mobile — revealed only when the toggle is checked */
    .dropdown-menu {
        display: none;
        position: static;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        column-count: 1;
        min-width: 0;
        z-index: auto;
    }
    .dropdown-toggle-checkbox:checked ~ .dropdown-menu {
        display: block;
    }
    .main-nav .dropdown-menu a {
        padding: 10px 4px 10px 20px;
        font-size: 14px;
        color: var(--muted);
    }
    .main-nav .dropdown-menu a:hover { color: var(--brand); }
    .main-nav .dropdown-menu a:last-child {
        border-bottom: 1px solid var(--border);
    }

    .footer-breeds ul { column-count: 1; }

    .nav-toggle-checkbox:checked ~ .hamburger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle-checkbox:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle-checkbox:checked ~ .hamburger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-inner { grid-template-columns: 1fr; }
    .hero-image-badge { left: 12px; bottom: -16px; padding: 14px 18px; }
    .hero-image-badge strong { font-size: 22px; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; gap: 32px; }
    .split.reverse .split-image { order: 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 560px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .hero { padding: 48px 0 64px; }
    .page-hero { padding: 56px 0; }
    .nav-cta { padding: 10px 16px; font-size: 14px; }
    .logo-img { height: 56px; }
    .logo-img-footer { height: 64px; }
    .breed-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}
