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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ─── Header & Navigation ─────────────────────────────── */
header {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.header-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(45, 80, 22, 0.12);
    border-radius: 999px;
    padding: 0.55rem 0.85rem;
    min-width: min(280px, 100%);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.search-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.search-bar input {
    border: 0;
    outline: 0;
    background: transparent;
    color: #2d5016;
    font-size: 0.95rem;
    width: 100%;
}

.search-bar input::placeholder {
    color: #6b7d56;
}

.search-bar:focus-within {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.24), 0 8px 24px rgba(0, 0, 0, 0.14);
}

/* FIX: Single clean .nav-links definition — removed duplicate */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links a {
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: #90EE90;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
    display: block;
}

/* ─── Hero Section ────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%);
    background-color: #2d5016;
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-text-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-text-right p {
    font-size: 1.2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-text {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-text-left h1 {
        font-size: 2.1rem;
    }

    .hero-text-right p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem;
    }

    .hero-text-left h1 {
        font-size: 1.75rem;
    }

    .hero-text-right p {
        font-size: 0.95rem;
    }
}

/* FIX: Added position:relative so ::before/::after pseudo-elements work */
.cta-button {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: #2d5016;
    padding: 0.65rem 1.2rem;
    border: 1px solid rgba(45, 80, 22, 0.15);
    border-radius: 999px;
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    z-index: 0;
    min-width: 150px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.cta-button:hover::before {
    left: 150%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    background: #f7f7f7;
    color: #1a3009;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
}

/* ─── Features Section ────────────────────────────────── */
.features {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features h2 {
    margin-bottom: 3.5rem;
    font-size: 2.5rem;
    color: #2d5016;
    position: relative;
    display: inline-block;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-top: 3px solid #4a7c23;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.15);
}

.feature-card h3 {
    color: #2d5016;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* ─── Statistics Section ──────────────────────────────── */
.stats-section {
    padding: 3rem 1.25rem;
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
    text-align: center;
}

@media (min-width: 768px) {
    .stats-section {
        padding: 5rem 2rem;
    }
}

.stats-section h2 {
    color: #2d5016;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.stats-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%);
    border-radius: 2px;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* Always 2 columns on mobile, 4 on desktop */
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

/* 4 columns only when screen is wide enough */
@media (min-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2rem;
    }
}

.stat-card {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 900px) {
    .stat-card {
        padding: 2.5rem 2rem;
    }
}

.stat-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.2);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
    display: block;
}

@media (min-width: 900px) {
    .stat-icon {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2d5016;
    margin-bottom: 0.35rem;
    display: block;
    line-height: 1.1;
}

@media (min-width: 900px) {
    .stat-number {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }
}

.stat-label {
    font-size: 0.82rem;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
}

@media (min-width: 900px) {
    .stat-label {
        font-size: 1rem;
    }
}

/* ─── Products Section ────────────────────────────────── */
.products-section {
    padding: 5rem 2rem;
    background: white;
    text-align: center;
}

.products-section h2 {
    color: #2d5016;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.products-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%);
    border-radius: 2px;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.65rem 1.5rem;
    border: 2px solid #4a7c23;
    background: white;
    color: #4a7c23;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 124, 35, 0.3);
}

/* Products Grid */
.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.6rem;
    min-height: 100px;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 25px rgba(45, 80, 22, 0.16);
}

.product-card.hidden {
    display: none;
}

.product-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.82) 0%, rgba(74, 124, 35, 0.82) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-details-btn {
    background: white;
    color: #2d5016;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(16px);
    transition: transform 0.3s ease;
    font-size: 0.95rem;
}

.product-card:hover .view-details-btn {
    transform: translateY(0);
}

.product-info {
    padding: 1.35rem;
}

.product-category {
    font-size: 0.78rem;
    color: #4a7c23;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.product-name {
    font-size: 1.2rem;
    color: #222;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.product-description {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.55;
}

/* ─── Call-to-action strip ────────────────────────────── */
.product-action-section {
    padding: 3rem 2rem;
    background: #f5f9f1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-action-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.product-action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
}

.product-action-button {
    border: none;
    border-radius: 50px;
    padding: 0.95rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    letter-spacing: 0.5px;
    min-width: 150px;
}

.product-action-button.primary {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%);
    color: white;
    box-shadow: 0 10px 24px rgba(45, 80, 22, 0.2);
}

.product-action-button.secondary {
    background: white;
    color: #2d5016;
    border: 1px solid rgba(45, 80, 22, 0.2);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    gap: 0.5rem;
}

.call-icon {
    font-size: 1rem;
    line-height: 1;
}

.product-action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(45, 80, 22, 0.2);
}

@media (max-width: 600px) {
    .product-action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .product-action-button {
        width: 100%;
        min-width: unset;
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ─── Product Modal ───────────────────────────────────── */
.product-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.product-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.92);
    transition: transform 0.3s ease;
}

.product-modal.active .modal-content {
    transform: scale(1);
}

/* FIX: Changed to button for accessibility; reset button styles */
.close-modal {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 2rem;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    z-index: 10;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
}

.close-modal:hover {
    color: #2d5016;
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image {
    background: #f5f9f0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    min-height: 300px;
}

.modal-image img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 10px;
}

.modal-details {
    padding: 2.5rem;
}

.modal-details h2 {
    color: #2d5016;
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
}

.modal-category {
    color: #4a7c23;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.modal-description {
    color: #555;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-size: 0.97rem;
}

.modal-features {
    margin-bottom: 2rem;
}

.modal-features h3 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.modal-features ul {
    list-style: none;
}

.modal-features ul li {
    padding: 0.4rem 0 0.4rem 1.6rem;
    color: #555;
    position: relative;
    font-size: 0.95rem;
}

.modal-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a7c23;
    font-weight: bold;
}

.modal-action-btn {
    width: 100%;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.4px;
}

.modal-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 80, 22, 0.3);
}

/* ─── Footer ──────────────────────────────────────────── */
footer {
    background: #1a3009;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-section h3 {
    color: #90EE90;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    color: #ffffff;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: #ffffff;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: #ffffff;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #90EE90;
}

.contact-item {
    margin-bottom: 0.65rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    flex-wrap: wrap;
    word-break: break-word;
}

.contact-link {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
    line-height: 1.5;
}

.contact-link:hover {
    color: #90EE90;
    transform: translateX(3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ─── Scroll Animations ───────────────────────────────── */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-zoom {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-zoom.visible {
    opacity: 1;
    transform: scale(1);
}

/* ─── Hero entry animations ───────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
}

/* Staggered delays */
.delay-100 {
    animation-delay: 0.1s;
    transition-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
    transition-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
    transition-delay: 0.6s;
}

/* ─── Responsive: Tablet ──────────────────────────────── */
@media (max-width: 768px) {

    nav {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .search-bar {
        order: 3;
        width: 100%;
        min-width: 0;
        
    }

    /* FIX: Nav uses header height dynamically via JS; fallback 72px */
    .nav-links {
        position: fixed;
        right: -100%;
        top: 72px;
        flex-direction: column;
        background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%);
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        gap: 1.5rem;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 4rem 1.5rem;
    }

    .hero-text h1 {
        font-size: 2.1rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image {
        min-height: 220px;
    }

    .modal-details {
        padding: 1.5rem;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }
}

/* ─── Responsive: Mobile ──────────────────────────────── */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo .header-logo {
        width: 40px;
        height: 40px;
    }

    nav {
        padding: 0 1rem;
    }

    .modal-details h2 {
        font-size: 1.4rem;
    }
}

/* ─── Accessibility: Reduced Motion ──────────────────── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ─── Smooth Scrolling ────────────────────────────────── */
html {
    scroll-behavior: smooth;
}