/* Global Styles */
:root {
    --bg-color: #F9F7F2;
    /* Slightly warmer, lighter beige */
    --text-color: #2D2D2D;
    /* Softer black */
    --accent-green: #2B5329;
    /* Deep, professional green */
    --light-green: #4CAF50;
    --gold: #D4AF37;
    /* Gold accent for luxury feel */
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Soft, consistent shadow */
    --transition: all 0.3s ease;
    --radius-lg: 20px;
    --radius-md: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Arabic Font Support */
html[lang="ar"] body {
    font-family: 'Cairo', sans-serif;
}

h1,
h2,
h3,
h4 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: var(--accent-green);
    /* Dark green headings for professionalism */
    margin-top: 0;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] .logo-text,
html[lang="ar"] .service-card h3 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    width: 100%;
    background-color: rgba(249, 247, 242, 0.95);
    /* Semi-transparent */
    backdrop-filter: blur(10px);
    /* Glassmorphism */
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--accent-green);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    align-items: center;
}

.nav-links a:hover {
    color: var(--light-green);
}

.lang-switch {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.85rem;
}

.lang-switch:hover {
    background-color: var(--white);
    border-color: var(--light-green);
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    /* Gradient for depth */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: 300;
    color: var(--white);
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Who we are */
.who-we-are {
    padding: 120px 0;
    position: relative;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.who-we-are h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.who-we-are h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--light-green);
}

html[dir="rtl"] .who-we-are h2::after {
    left: auto;
    right: 0;
}

.who-we-are p {
    margin-bottom: 24px;
    color: #555;
    font-size: 1.05rem;
}

.feature-logo {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    /* Only if logo is circular */
    /* If logo is transparent PNG and circular design, this might not be needed or might need adjustment */
    transition: transform 0.5s ease;
}

.feature-logo:hover {
    transform: scale(1.02);
}

.logo-slogan-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo-slogan {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-green);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
    font-family: 'Cairo', 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

/* Vision & Mission cards */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.vision-card, .mission-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--light-green);
    position: relative;
    overflow: hidden;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.vision-card h3, .mission-card h3 {
    font-size: 1.8rem;
    color: var(--accent-green);
    margin-bottom: 15px;
    font-family: 'Merriweather', serif;
}

.vision-card p, .mission-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

/* Values section */
.values-section {
    margin-top: 100px;
    text-align: center;
}

.subsection-title {
    font-size: 2.3rem;
    color: var(--accent-green);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--light-green);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.value-item:hover {
    transform: translateY(-5px);
    background-color: #f3f9f3;
}

.value-icon {
    font-size: 2rem;
    color: var(--light-green);
}

.value-item span {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color);
}

/* Why Choose Us */
.why-us-section {
    margin-top: 100px;
    text-align: center;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
    margin-top: 40px;
}

html[dir="rtl"] .why-us-grid {
    text-align: right;
}

.why-us-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 30px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
}

.why-us-item:hover {
    transform: translateX(5px);
    border-left: 4px solid var(--light-green);
}

html[dir="rtl"] .why-us-item:hover {
    transform: translateX(-5px);
    border-left: none;
    border-right: 4px solid var(--light-green);
}

.why-us-item i {
    font-size: 1.5rem;
    color: var(--light-green);
    margin-top: 3px;
    flex-shrink: 0;
}

.why-us-item p {
    margin: 0;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Responsive adjustment for new sections */
@media (max-width: 768px) {
    .vision-mission-grid, .why-us-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Services */
.services {
    padding: 100px 0 120px;
    background-color: var(--white);
    /* White section for contrast */
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 80px;
    color: var(--accent-green);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.service-card {
    background: var(--white);
    /* Should match section or be slightly different if needed. Actually let's make card white on off-white or vice versa? */
    /* Let's keep section white and make cards transparent or just styled by their content. */
    text-align: center;
    padding-bottom: 20px;
    transition: var(--transition);
    border-radius: 8px;
    overflow: hidden;
    /* For image hover zoom */
}

.service-card:hover {
    transform: translateY(-10px);
}

.image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .image-wrapper img {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--accent-green);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Merriweather', serif;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    padding: 0 15px;
}

/* Footer */
.footer {
    padding: 100px 0 60px;
    background-color: var(--bg-color);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-brand h2 {
    font-size: 2rem;
    color: var(--accent-green);
}

.footer-info {
    display: flex;
    gap: 80px;
}

.footer .info-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.footer .info-col p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 8px;
}

.footer a {
    color: var(--light-green);
    font-weight: 500;
}

.footer a:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

/* Products & Catalog Styles */
.products-overview {
    padding: 80px 0 120px;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.category-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-end;
    transition: var(--transition);
}

.category-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    z-index: 1;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.category-overlay h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.category-overlay .btn-text {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-overlay .btn-text i {
    transition: transform 0.3s ease;
}

/* =========================================
   Product Ticker Marquee
========================================= */
.ticker-section {
    background-color: #f9f9f9;
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
    overflow: hidden;
}

.ticker-header {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    direction: ltr; /* Ensure scrolling direction is consistent */
}

.ticker-content {
    display: inline-flex;
    gap: 30px;
    animation: marquee 20s linear infinite;
}

.ticker-wrapper:hover .ticker-content {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    width: 200px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.ticker-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.ticker-item img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 10px;
}

.ticker-item h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-color);
    text-align: center;
    white-space: normal; /* Allow text to wrap if it's long */
}

@keyframes marquee {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

.category-card:hover .btn-text i {
    transform: translateX(5px);
}

html[dir="rtl"] .category-overlay .btn-text i {
    transform: rotate(180deg);
}

/* Specific Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.product-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 24px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 0.9rem;
    color: #666;
}

/* Expert Support Page */
.support-container {
    padding: 100px 0;
    text-align: center;
}

.support-card {
    max-width: 800px;
    margin: 60px auto;
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.support-image-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--light-green);
    margin-bottom: 20px;
}

.support-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.2rem;
    color: var(--accent-green);
    font-weight: 600;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--light-green);
}

.page-header {
    background-color: var(--accent-green);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .who-we-are h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    html[dir="rtl"] .who-we-are h2::after {
        left: 50%;
        right: auto;
        transform: translateX(50%);
        /* Flip for RTL centering? Actually translate works same */
        transform: translateX(50%);
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
        gap: 40px;
    }
}

/* Filter Tabs Styling */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out;
}

.filter-btn {
    background-color: var(--white);
    color: var(--accent-green);
    border: 1px solid rgba(43, 83, 41, 0.2);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Cairo', 'Inter', sans-serif;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.filter-btn:hover {
    background-color: var(--accent-green);
    color: var(--white);
    border-color: var(--accent-green);
}

.filter-btn.active {
    background-color: var(--accent-green);
    color: var(--white);
    border-color: var(--accent-green);
    box-shadow: 0 4px 12px rgba(43, 83, 41, 0.25);
}

/* Contact Form Styling */
.contact-form {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

html[dir="rtl"] .contact-form {
    text-align: right;
}

.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
}

@media (max-width: 600px) {
    .form-group-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.form-group label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-green);
    font-family: 'Cairo', 'Inter', sans-serif;
}

.form-group input, .form-group textarea {
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: #fcfbfa;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--light-green);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15);
}

.submit-btn {
    background-color: var(--accent-green);
    color: var(--white);
    border: none;
    padding: 14px 35px;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Cairo', 'Inter', sans-serif;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(43, 83, 41, 0.2);
    align-self: center;
    margin-top: 15px;
}

.submit-btn:hover {
    background-color: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(76, 175, 80, 0.35);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Search Bar Styles */
.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.product-search-bar {
    width: 100%;
    padding: 15px 45px;
    font-size: 1.1rem;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.product-search-bar:focus {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

.search-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.2rem;
    pointer-events: none;
}

[dir="ltr"] .search-icon {
    right: auto;
    left: 20px;
}

/* =========================================
   Skeleton Loading
========================================= */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: #eee;
    background-image: linear-gradient(90deg, #eee 0px, #f5f5f5 40px, #eee 80px);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 4px;
}

.skeleton-img {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.skeleton-text {
    height: 20px;
    margin-bottom: 10px;
    width: 80%;
}

.skeleton-title {
    height: 24px;
    margin-bottom: 15px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   Toast Notifications
========================================= */
#toastContainer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

html[dir="rtl"] #toastContainer {
    right: auto;
    left: 20px;
}

.toast {
    background: var(--white);
    color: var(--text-color);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 250px;
    border-left: 5px solid var(--accent-green);
}

html[dir="rtl"] .toast {
    transform: translateX(-100%);
    border-left: none;
    border-right: 5px solid var(--accent-green);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.error { border-color: #f44336; }
.toast.success { border-color: #4CAF50; }
.toast.info { border-color: #2196F3; }

.toast i { font-size: 1.2rem; }
.toast.error i { color: #f44336; }
.toast.success i { color: #4CAF50; }
.toast.info i { color: #2196F3; }

/* =========================================
   Empty & Error States
========================================= */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    margin: 20px auto;
    max-width: 600px;
}

.empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 25px;
}

.empty-state .btn-retry {
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.empty-state .btn-retry:hover {
    background: var(--light-green);
}

/* =========================================
   Search Enhancements
========================================= */
.search-clear {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    padding: 5px;
}

html[dir="ltr"] .search-clear {
    left: auto;
    right: 20px;
}

.search-clear:hover { color: #666; }

.highlight {
    background-color: rgba(212, 175, 55, 0.3); /* Gold tint */
    border-radius: 2px;
    padding: 0 2px;
}

/* =========================================
   Image Fade-in & General Polish
========================================= */
img {
    transition: opacity 0.5s ease-in-out;
}
img.loading-lazy {
    opacity: 0;
}
img.loaded {
    opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
    .product-card:hover .product-image img {
        transform: scale(1.05);
    }
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
    .nav-links a {
        padding: 10px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}