/* =================================================
| MILLIGANS FEEDS - ADDITIONS                       |
| New sections for multi-page site                  |
================================================== */

/* =================================================
| DROPDOWN NAVIGATION                               |
================================================== */
.nav-item { position: relative; }
.nav-dropdown {
    position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
    background: var(--white); border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    min-width: 220px; padding: 0.5rem 0; opacity: 0; visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    transform: translateX(-50%) translateY(8px); z-index: 999;
    border: 1px solid var(--border-color);
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a {
    display: block; padding: 0.6rem 1.2rem; color: var(--text-dark); font-size: 14px;
    font-family: var(--font-primary); font-weight: 500; white-space: nowrap;
    transition: all 0.15s ease;
}
.nav-dropdown a:hover { background: var(--background-card); color: var(--primary-red); }
.nav-dropdown .dropdown-divider { height: 1px; background: var(--border-color); margin: 0.4rem 0; }
.nav-link-arrow::after { content: " \25BE"; font-size: 10px; opacity: 0.7; }

/* =================================================
| PAGE HERO (inner pages)                           |
================================================== */
.page-hero {
    padding: 140px 0 80px; background: var(--text-dark);
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(125,35,35,0.72) 0%, rgba(26,26,26,0.88) 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(32px, 5vw, 56px); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0; }
.page-hero .label-txt { color: rgba(255,255,255,0.7); }
.page-hero .label-indicator { background: var(--primary-red); }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.page-hero h1,
.page-hero p,
.page-hero .label-txt { text-shadow: 0 2px 12px rgba(0,0,0,0.28); }

/* =================================================
| PRODUCT LISTING PAGE                              |
================================================== */
.products-section-heading {
    border-bottom: 2px solid var(--border-color); padding-bottom: 1.5rem; margin-bottom: 3rem;
}
.products-section-heading h2 { margin-bottom: 0.5rem; }
.product-comparison-chart {
    margin: 0 0 2.5rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--white);
}
.product-comparison-chart img {
    display: block;
    width: 100%;
    height: auto;
}
.products-listing-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem; margin-bottom: 5rem;
}
.products-listing-grid > * { min-width: 0; }
.product-listing-card {
    background: var(--white); border: 1px solid var(--border-color); border-radius: 12px;
    overflow: hidden; display: flex; flex-direction: column;
    transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.product-listing-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); border-color: var(--primary-red); }
.product-listing-card .card-img { height: 200px; background: #f7f7f7; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.product-listing-card .card-img img { max-height: 100%; max-width: 100%; object-fit: contain; }
.product-listing-card .card-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.product-listing-card .card-badge {
    display: inline-block; background: var(--primary-red); color: var(--white);
    font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 3px 10px; border-radius: 50px; margin-bottom: 0.75rem;
}
.product-listing-card h3 { font-size: 1.15rem; color: var(--dark-red); margin-bottom: 0.5rem; }
.product-listing-card p { font-size: 0.9rem; color: var(--text-light); flex-grow: 1; max-width: 100%; margin-bottom: 1rem; }
.product-listing-card .card-footer-row { display: flex; gap: 0.75rem; align-items: center; margin-top: auto; flex-wrap: wrap; min-width: 0; }
.product-listing-card .card-footer-row .container-btn-main { font-size: 13px; padding: 8px 18px; }
.card-spec-tag { font-size: 12px; color: var(--text-light); background: var(--background-card); padding: 4px 10px; border-radius: 4px; white-space: nowrap; }

/* =================================================
| INDIVIDUAL PRODUCT PAGE                           |
================================================== */
.product-page-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.product-page-image-col { position: sticky; top: 120px; }
.product-image-box { background: #f7f7f7; border-radius: 12px; padding: 3rem; display: flex; align-items: center; justify-content: center; aspect-ratio: 1; }
.product-image-box img { max-width: 100%; max-height: 350px; object-fit: contain; }
.product-page-content h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 0.5rem; }
.product-tagline { font-size: 1.1rem; color: var(--text-light); font-style: italic; margin-bottom: 1.5rem; }
.product-description p { max-width: 100%; margin-bottom: 1rem; }
.spec-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.spec-table tr { border-bottom: 1px solid var(--border-color); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 0.75rem 0; font-size: 15px; }
.spec-table td:first-child { font-weight: 600; color: var(--dark-red); width: 45%; font-family: var(--font-primary); }
.spec-table td:last-child { color: var(--text-light); }
.how-to-use-box { background: var(--background-card); border-left: 4px solid var(--primary-red); border-radius: 0 8px 8px 0; padding: 1.5rem 2rem; margin: 2rem 0; }
.how-to-use-box h3 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--dark-red); }
.how-to-use-box p { max-width: 100%; margin: 0; font-size: 0.95rem; }
.product-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.related-products-section { margin-top: 5rem; padding-top: 3rem; border-top: 1px solid var(--border-color); }
.related-products-section h2 { margin-bottom: 2rem; font-size: 1.5rem; }

/* =================================================
| DOWNLOAD CARDS                                    |
================================================== */
.downloads-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.download-card {
    display: flex; align-items: center; gap: 1rem; background: var(--white);
    border: 1px solid var(--border-color); border-radius: 8px; padding: 1.25rem 1.5rem;
    transition: all 0.25s ease; text-decoration: none; color: inherit;
}
.download-card:hover { border-color: var(--primary-red); background: var(--background-card); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.download-card .dl-icon { font-size: 2rem; color: var(--primary-red); flex-shrink: 0; }
.download-card .dl-info h4 { font-size: 0.95rem; color: var(--dark-red); margin: 0 0 0.25rem; }
.download-card .dl-info p { font-size: 0.8rem; color: var(--text-light); margin: 0; max-width: 100%; }
.download-card .dl-arrow { margin-left: auto; color: var(--text-light); font-size: 0.9rem; }
.download-card:hover .dl-arrow { color: var(--primary-red); }

/* =================================================
| ADVICE HUB — LANDING                              |
================================================== */
.animal-cards-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; margin: 3rem 0; }
.animal-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    min-height: 240px;
    overflow: hidden;
    isolation: isolate;
    text-align: left;
    background: var(--dark-red);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 1.4rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.animal-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(18,18,18,0.12) 0%, rgba(18,18,18,0.3) 42%, rgba(18,18,18,0.78) 100%);
}
.animal-card:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-4px); box-shadow: 0 14px 34px rgba(18,18,18,0.2); }
.animal-card .animal-emoji { display: none; }
.animal-card-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.62) saturate(0.9) contrast(1.05);
    transition: transform 0.35s ease, filter 0.35s ease;
}
.animal-card:hover .animal-card-image { transform: scale(1.04); filter: brightness(0.68) saturate(0.95) contrast(1.05); }
.animal-card h3,
.animal-card p {
    position: relative;
    z-index: 2;
    max-width: 100%;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.animal-card h3 { font-size: 1.15rem; color: var(--white); margin: 0 0 0.35rem; }
.animal-card p { font-size: 0.86rem; color: rgba(255,255,255,0.9); margin: 0; }
.faq-section { max-width: 860px; }
.faq-group { margin-bottom: 3rem; }
.faq-group h3 { font-size: 1.4rem; color: var(--dark-red); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--border-color); }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question {
    width: 100%; background: none; border: none; text-align: left; cursor: pointer;
    padding: 1.2rem 0; font-size: 1rem; font-weight: 600; color: var(--text-dark);
    font-family: var(--font-primary); display: flex; justify-content: space-between;
    align-items: center; gap: 1rem;
}
.faq-question:hover { color: var(--primary-red); }
.faq-icon { font-size: 1.4rem; color: var(--primary-red); transition: transform 0.3s; flex-shrink: 0; line-height: 1; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer.open { max-height: 600px; padding-bottom: 1.2rem; }
.faq-answer p { max-width: 100%; margin: 0 0 0.5rem; font-size: 0.95rem; color: var(--text-light); }

/* =================================================
| ADVICE HUB — ANIMAL PAGES                         |
================================================== */
.advice-layout { display: grid; grid-template-columns: 240px 1fr; gap: 4rem; align-items: start; }
.advice-layout > * { min-width: 0; }
.advice-sidebar { position: sticky; top: 120px; }
.sidebar-section-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light); font-weight: 600; font-family: var(--font-primary); padding: 0 0.75rem 0.5rem; margin-top: 1.5rem; }
.sidebar-section-title:first-child { margin-top: 0; }
.advice-sidebar nav ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.advice-sidebar nav li { margin-bottom: 0.15rem; }
.advice-sidebar nav a {
    display: block; padding: 0.55rem 0.75rem; border-radius: 6px; color: var(--text-dark);
    font-family: var(--font-primary); font-size: 0.88rem; font-weight: 500;
    transition: all 0.2s; border-left: 3px solid transparent;
}
.advice-sidebar nav a:hover, .advice-sidebar nav a.active-anchor { background: var(--background-card); color: var(--primary-red); border-left-color: var(--primary-red); }
.advice-content h2 { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--border-color); font-size: clamp(22px, 3vw, 30px); }
.advice-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.advice-content p, .advice-content li { max-width: 100%; overflow-wrap: anywhere; }
.tip-box { background: var(--background-card); border-radius: 8px; padding: 1.5rem 2rem; margin: 1.5rem 0; }
.tip-box h4 { color: var(--primary-red); margin-bottom: 0.5rem; font-size: 1rem; }
.tip-box p, .tip-box li { max-width: 100%; font-size: 0.9rem; color: var(--text-light); }
.tip-box ul, .tip-box ol { padding-left: 1.2rem; margin: 0; }
.tip-box li { margin-bottom: 0.4rem; }
.warning-box { background: #fff5f5; border: 1px solid #f0b0b0; border-radius: 8px; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.warning-box p { color: var(--text-dark); font-size: 0.9rem; max-width: 100%; margin: 0; }
.warning-box strong { color: var(--primary-red); }
.feeding-table-wrap { overflow-x: auto; overflow-y: hidden; margin: 1.5rem 0; border-radius: 8px; border: 1px solid var(--border-color); -webkit-overflow-scrolling: touch; }
.feeding-table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 0.9rem; }
.feeding-table th { background: var(--dark-red); color: var(--white); padding: 0.75rem 1rem; text-align: left; font-family: var(--font-primary); }
.feeding-table td { padding: 0.65rem 1rem; border-bottom: 1px solid var(--border-color); color: var(--text-light); background: var(--white); }
.feeding-table tr:nth-child(even) td { background: var(--background-card); }
.numbered-tips { counter-reset: tip-counter; list-style: none; padding: 0; margin: 0; }
.numbered-tips li {
    counter-increment: tip-counter; display: flex; gap: 1rem; padding: 1rem 0;
    border-bottom: 1px solid var(--border-color); align-items: flex-start;
}
.numbered-tips li:last-child { border-bottom: none; }
.numbered-tips li::before {
    content: counter(tip-counter); background: var(--primary-red); color: var(--white);
    font-family: var(--font-primary); font-weight: 700; font-size: 0.85rem;
    width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.health-issue { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border-color); }
.health-issue:last-child { border-bottom: none; }
.health-issue h4 { font-size: 1.1rem; color: var(--dark-red); margin-bottom: 0.5rem; }
.health-issue p { max-width: 100%; font-size: 0.9rem; }
.recommended-products-sidebar { background: var(--background-card); border-radius: 8px; padding: 1.5rem; margin-bottom: 2rem; }
.recommended-products-sidebar h4 { color: var(--dark-red); margin-bottom: 1rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-primary); }
.rec-product-link { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border-color); text-decoration: none; }
.rec-product-link:last-child { border-bottom: none; padding-bottom: 0; }
.rec-product-link img { width: 40px; height: 40px; object-fit: contain; background: var(--white); border-radius: 4px; padding: 4px; }
.rec-product-link span { font-size: 0.82rem; font-weight: 600; color: var(--dark-red); font-family: var(--font-primary); }
.rec-product-link:hover span { color: var(--primary-red); }

/* =================================================
| CALCULATOR PAGE                                   |
================================================== */
.calculator-wrapper { max-width: 860px; margin: 0 auto; }
.calc-card { background: var(--background-card); border-radius: 12px; padding: 2rem; margin-bottom: 2rem; border: 1px solid var(--border-color); }
.calc-card h3 { margin-bottom: 1.5rem; color: var(--dark-red); }
.calc-form-intro { color: var(--text-light); margin-bottom: 1.75rem; max-width: 100%; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.calc-group { display: flex; flex-direction: column; }
.calc-group label { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.5rem; font-family: var(--font-primary); }
.calc-group input, .calc-group select {
    width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border-color); border-radius: 6px;
    background: var(--white); font-size: 1rem; font-family: inherit; color: var(--text-dark);
    transition: border-color 0.2s;
}
.calc-group input:focus, .calc-group select:focus { outline: none; border-color: var(--primary-red); box-shadow: 0 0 0 2px rgba(203,8,43,0.15); }
.calc-group small { font-size: 0.8rem; color: var(--text-light); margin-top: 0.3rem; }
.calc-input-wrap { position: relative; display: flex; align-items: center; }
.calc-input-prefix { position: absolute; left: 1rem; color: var(--text-light); font-weight: 600; pointer-events: none; }
.calc-input-wrap input { padding-left: 2rem; }
.calc-group-output { grid-column: 1 / -1; }
.calc-group-output label { color: var(--dark-red); }
.calc-group-output input {
    background: rgba(203,8,43,0.06);
    border-color: rgba(203,8,43,0.2);
    color: var(--dark-red);
    font-weight: 700;
}
.calc-group-output input[readonly] { opacity: 1; }
.calc-section-divider {
    grid-column: 1 / -1;
    height: 1px;
    margin: 0.25rem 0;
    background: linear-gradient(90deg, rgba(203,8,43,0), rgba(203,8,43,0.35), rgba(203,8,43,0));
}
.calc-results { background: var(--dark-red); color: var(--white); border-radius: 12px; padding: 2.5rem; margin-top: 2rem; }
.calc-results h3 { color: var(--white); margin-bottom: 2rem; }
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; }
.result-item { text-align: center; background: rgba(255,255,255,0.1); border-radius: 8px; padding: 1.25rem; }
.result-number { font-family: var(--font-primary); font-size: 2.5rem; font-weight: 700; color: var(--white); line-height: 1; }
.result-label { font-size: 0.82rem; color: rgba(255,255,255,0.72); margin-top: 0.4rem; }
.calc-note { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 1.5rem; font-style: italic; }
.calc-note-light { color: var(--text-light); }
.calc-action-row { display: flex; justify-content: center; margin-top: 1.5rem; }
.calc-action-row-left { justify-content: flex-start; }
.calc-reset-btn { background: transparent; border: 2px solid var(--white); color: var(--white); padding: 10px 24px; border-radius: 50px; cursor: pointer; font-family: var(--font-primary); font-weight: 600; font-size: 0.9rem; transition: all 0.25s; }
.calc-reset-btn:hover { background: var(--white); color: var(--primary-red); }
.calc-reset-btn-light { border-color: var(--primary-red); color: var(--primary-red); }
.calc-reset-btn-light:hover { background: var(--primary-red); color: var(--white); }

/* =================================================
| ABOUT PAGE                                        |
================================================== */
.about-section-shell {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-section-shell .container-label {
    justify-content: center;
}
.about-section-shell > h2,
.about-section-shell > p,
.about-section-shell > h3 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.about-section-shell > p {
    max-width: 860px;
}
.about-copy-section {
    max-width: 980px;
}
.about-section-action {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}
.about-story-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2.75rem;
}
.about-story-text {
    max-width: 860px;
    text-align: center;
}
.about-story-text .container-label {
    justify-content: center;
}
.about-story-text p {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.about-story-video {
    width: 100%;
    max-width: 920px;
}
.about-story-video .about-video-box {
    aspect-ratio: 16 / 9;
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.about-team-section .team-grid {
    width: 100%;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}
.team-card { background: var(--white); border: 1px solid var(--border-color); border-radius: 10px; padding: 2rem; }
.team-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(203,8,43,0.08);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
.team-card .team-avatar { width: 64px; height: 64px; background: var(--background-card); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 1rem; color: var(--taupe); }
.team-card h4 { color: var(--dark-red); margin-bottom: 0.2rem; font-size: 1.1rem; }
.team-card .team-role { font-size: 0.82rem; color: var(--primary-red); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 0.75rem; font-family: var(--font-primary); text-transform: uppercase; }
.team-card-title {
    display: block;
    font-size: 0.82rem;
    color: var(--primary-red);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    font-family: var(--font-primary);
    text-transform: uppercase;
}
.team-card p { font-size: 0.88rem; max-width: 100%; margin: 0; }
.about-team-subheading {
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}
.community-download-grid {
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: minmax(0, 1fr);
}
.timeline { padding: 0; margin: 0; }
.timeline-item { display: flex; gap: 1.5rem; padding-bottom: 2.5rem; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: 18px; top: 36px; bottom: 0; width: 2px; background: var(--border-color); }
.timeline-item:last-child::before { display: none; }
.timeline-dot { flex-shrink: 0; width: 38px; height: 38px; background: var(--primary-red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-primary); font-weight: 700; font-size: 0.68rem; text-align: center; line-height: 1.15; padding: 4px; }
.timeline-body h4 { color: var(--dark-red); font-size: 1rem; margin-bottom: 0.35rem; }
.timeline-body p { font-size: 0.88rem; max-width: 100%; margin: 0; }
.facility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.facility-item { background: var(--background-card); border-radius: 8px; padding: 1.5rem; }
.facility-item i { font-size: 1.8rem; color: var(--primary-red); margin-bottom: 1rem; display: block; }
.facility-item h4 { color: var(--dark-red); margin-bottom: 0.5rem; }
.facility-item p { font-size: 0.88rem; max-width: 100%; margin: 0; }
.quality-assurance-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* =================================================
| STOCKISTS PAGE                                    |
================================================== */
.stockists-intro { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; margin-bottom: 4rem; }
.stockist-list { list-style: none; padding: 0; margin: 1rem 0; }
.stockist-list li { display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 0; border-bottom: 1px solid var(--border-color); font-size: 1rem; color: var(--text-dark); font-weight: 500; }
.stockist-list li:last-child { border-bottom: none; }
.stockist-list li i { color: var(--primary-red); font-size: 1.1rem; flex-shrink: 0; }
.map-full-wrap { border-radius: 8px; overflow: hidden; border: 1px solid var(--border-color); }

/* =================================================
| RESPONSIVE ADDITIONS                              |
================================================== */
@media (max-width: 1024px) {
    .advice-layout { grid-template-columns: 1fr; }
    .advice-sidebar { position: static; }
    .product-page-layout { grid-template-columns: 1fr; }
    .product-page-image-col { position: static; }
    .product-image-box { max-width: 360px; margin: 0 auto; }
    .facility-grid { grid-template-columns: 1fr; }
    .quality-assurance-grid { grid-template-columns: 1fr 1fr; }
    .about-team-section .team-grid { max-width: 100%; }
    .about-story-video { max-width: 100%; }
}
@media (max-width: 768px) {
    .calc-grid { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr 1fr; }
    .stockists-intro { grid-template-columns: 1fr; }
    .animal-cards-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
    .animal-card { min-height: 180px; padding: 1rem; }
    .animal-card h3 { font-size: 1rem; }
    .animal-card p { font-size: 0.78rem; }
    .products-listing-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .container-btn-main { max-width: 100%; white-space: normal; text-align: center; }
    .product-listing-card .card-footer-row { flex-direction: column; align-items: stretch; }
    .product-listing-card .card-footer-row .container-btn-main,
    #custom-blends .container-btn-main { width: 100%; }
    .tip-box,
    .warning-box,
    .how-to-use-box { padding: 1.25rem 1rem; }
    .about-story-layout { gap: 2rem; }
    .about-team-section .team-grid,
    .community-download-grid { grid-template-columns: 1fr; }
    .quality-assurance-grid { grid-template-columns: 1fr; }
}
