/* ============================================
   SupCares — Premium Dark Theme Stylesheet
   Mobile-First | Glassmorphism | Micro-animations
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Design Tokens ── */
:root {
    --bg-primary: #060608;
    --bg-secondary: #0E0E12;
    --bg-card: rgba(20, 20, 28, 0.65);
    --bg-card-hover: rgba(30, 30, 42, 0.8);
    --bg-nav: rgba(6, 6, 8, 0.85);
    --accent: #00A3E0;
    --accent-glow: rgba(0, 163, 224, 0.25);
    --accent-dark: #0077A8;
    --text-primary: #F0F0F5;
    --text-secondary: #9999AA;
    --text-muted: #66667A;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(0, 163, 224, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(0, 163, 224, 0.15);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: var(--font);
    border: none;
}

ul {
    list-style: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-dark);
    border-radius: 3px;
}

/* ── Navigation ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-nav);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(6, 6, 8, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
    color: var(--accent);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 6, 8, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--accent);
    background: rgba(0, 163, 224, 0.08);
}

/* ── Hero Section ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.45);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(6, 6, 8, 0.3) 0%,
            rgba(6, 6, 8, 0.5) 50%,
            rgba(6, 6, 8, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 163, 224, 0.1);
    border: 1px solid rgba(0, 163, 224, 0.25);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #4DD0FF 50%, #00A3E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 163, 224, 0.3);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 163, 224, 0.45);
}

.hero-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(3px);
}

/* ── Stats Bar ── */
.stats-bar {
    padding: 40px 20px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 16px;
}

.stat-number {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* ── Section Common ── */
.section {
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 163, 224, 0.1);
    border: 1px solid rgba(0, 163, 224, 0.2);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ── Search Bar ── */
.search-wrapper {
    max-width: 520px;
    margin: 0 auto 28px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 13px 20px 13px 46px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-family: var(--font);
    outline: none;
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(0, 163, 224, 0.1);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    pointer-events: none;
}

/* ── Category Tabs (NOT pills like Shinroe) ── */
.category-filter {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding: 0;
    margin-bottom: 36px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    border-bottom: 1px solid var(--border);
}

.category-filter::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    flex-shrink: 0;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}

.cat-pill:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.cat-pill.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: transparent;
    box-shadow: none;
}

.cat-pill .pill-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    font-size: 0.65rem;
    margin-left: 6px;
    font-weight: 600;
}

.cat-pill.active .pill-count {
    background: rgba(0, 163, 224, 0.15);
    color: var(--accent);
}

/* ── Products Container ── */
.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ── Product Grid ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

/* ── Product Card — Unique design ── */
.product-card {
    background: var(--bg-primary);
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-accent, var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: none;
    box-shadow: none;
    z-index: 1;
}

.product-card .card-image {
    position: relative;
    padding: 20px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
}

.product-card .card-image img {
    max-height: 85%;
    max-width: 85%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.08);
}

/* Hover overlay with CTA */
.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 6, 8, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.product-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay .overlay-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--accent);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 4px;
    transform: translateY(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.product-card:hover .card-overlay .overlay-btn {
    transform: translateY(0);
}

.card-overlay .overlay-btn:hover {
    box-shadow: 0 4px 20px rgba(0, 163, 224, 0.4);
}

.card-overlay .overlay-btn svg {
    width: 14px;
    height: 14px;
}

.card-category-tag {
    display: none;
}

.card-body {
    padding: 14px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--border);
}

.card-cat-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--card-accent, var(--accent));
}

.card-title {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.buy-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.buy-link:hover {
    color: #4DD0FF;
}

.buy-link svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
}

.buy-link:hover svg {
    transform: translateX(2px);
}

.amazon-icon {
    width: 18px;
    height: 18px;
    opacity: 0.3;
}

/* ── No Results ── */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    background: var(--bg-primary);
}

.no-results svg {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    opacity: 0.4;
}

.no-results h3 {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* ── Load More ── */
.load-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    letter-spacing: 0.03em;
}

.load-more-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 163, 224, 0.05);
}

.load-more-btn.hidden {
    display: none;
}

.product-count-info {
    text-align: center;
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ── Brand Story ── */
.brand-section {
    padding: 80px 20px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.brand-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.brand-logo {
    width: 80px;
    margin: 0 auto 24px;
}

.brand-container h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.brand-container p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.brand-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.brand-feature {
    padding: 24px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.brand-feature:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.brand-feature-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    background: rgba(0, 163, 224, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.brand-feature-icon svg {
    width: 22px;
    height: 22px;
}

.brand-feature h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.brand-feature p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ── Contact Section ── */
.contact-section {
    padding: 80px 20px;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    max-width: 500px;
    height: 80vw;
    max-height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.3;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 28px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-color: transparent;
}

.contact-btn.whatsapp:hover {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.contact-btn.email {
    background: var(--bg-card);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.contact-btn.email:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
}

.contact-btn svg {
    width: 22px;
    height: 22px;
}

/* ── Footer ── */
.footer {
    padding: 40px 20px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-logo {
    height: 32px;
    margin: 0 auto 16px;
}

.footer-amazon-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 153, 0, 0.1);
    border: 1px solid rgba(255, 153, 0, 0.2);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #FF9900;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
}

.footer-links a {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

/* ── Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card entry animation */
.product-card {
    opacity: 0;
    animation: cardFadeIn 0.4s ease forwards;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 163, 224, 0.4);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 163, 224, 0.5);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ── Responsive: Tablet ── */
@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .brand-features {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-actions {
        flex-direction: row;
        justify-content: center;
    }

    .contact-btn {
        flex: 1;
        max-width: 280px;
    }
}

/* ── Responsive: Desktop ── */
@media (min-width: 1024px) {
    .nav-container {
        height: 72px;
        padding: 0 40px;
    }

    .nav-logo img {
        height: 40px;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .section {
        padding: 80px 40px;
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero {
        min-height: 100vh;
        padding: 100px 40px 80px;
    }

    .brand-section {
        padding: 100px 40px;
    }

    .contact-section {
        padding: 100px 40px;
    }
}

/* ── Responsive: Large Desktop ── */
@media (min-width: 1440px) {
    .product-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ── Mobile: Show hamburger ── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .nav-container {
        padding: 0 16px;
    }

    .hero {
        min-height: 90vh;
        padding: 80px 16px 50px;
    }

    .section {
        padding: 50px 16px;
    }

    .stats-bar {
        padding: 30px 16px;
    }

    .brand-section {
        padding: 60px 16px;
    }

    .contact-section {
        padding: 60px 16px;
    }

    .footer {
        padding: 30px 16px;
    }

    .product-grid {
        gap: 1px;
    }

    .card-body {
        padding: 10px 12px 14px;
    }

    .card-title {
        font-size: 0.7rem;
    }

    .card-cat-label {
        font-size: 0.55rem;
    }

    .buy-link {
        font-size: 0.65rem;
    }

    .card-overlay .overlay-btn {
        padding: 8px 16px;
        font-size: 0.72rem;
    }

    .product-card .card-image {
        padding: 12px;
    }
}

/* ── SEO: Contact Phone Text ── */
.contact-phone-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 16px;
    margin-bottom: 8px;
}

.contact-phone-text a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.contact-phone-text a:hover {
    color: #4DD0FF;
    text-decoration: underline;
}

/* ── Footer Contact ── */
.footer-contact {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 8px;
    margin-bottom: 4px;
}

.footer-contact a {
    color: var(--accent);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* ── SEO: Hidden product nav for crawlers ── */
.seo-product-nav {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}