/* FinePro Design System & Global Styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --color-primary: #FFFFFF;
    --color-secondary: #000000;
    --color-accent: #D32F2F;
    --color-text-main: #111111;
    --color-text-light: #666666;
    --color-bg-light: #F9F9F9;
    --color-border: #EEEEEE;

    /* Spacing */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1rem;
    /* 16px */
    --spacing-md: 2rem;
    /* 32px */
    --spacing-lg: 4rem;
    /* 64px */
    --spacing-xl: 8rem;
    /* 128px */

    /* Typography */
    --font-family: 'Inter', sans-serif;
    --font-size-base: 16px;
    --font-size-h1: 3.5rem;
    --font-size-h2: 2.5rem;
    --font-size-h3: 1.5rem;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--color-text-main);
    background-color: var(--color-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: var(--font-size-h1);
    text-transform: uppercase;
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-light);
}

.text-accent {
    color: var(--color-accent);
}

.text-uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.text-center .feature-icon-wrapper {
    margin-left: auto;
    margin-right: auto;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-lg) 0;
}

.grid {
    display: grid;
    gap: var(--spacing-md);
}

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

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

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

.flex {
    display: flex;
    gap: var(--spacing-sm);
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Components */

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background-color: #b71c1c;
    border-color: #b71c1c;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: #000000 !important;
    border-bottom: 1px solid #333 !important;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #ffffff !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.logo {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    text-transform: lowercase;
}

.logo span {
    font-family: var(--font-family);
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 600px;
    background-color: #111;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Cards */
.card {
    background: white;
    border: 1px solid var(--color-border);
    padding: var(--spacing-md);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-icon {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--color-secondary);
    color: white;
    padding: var(--spacing-lg) 0;
}

footer p {
    color: #888;
}

footer h4 {
    color: white;
    margin-bottom: 1.5rem;
}

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

footer a:hover {
    color: var(--color-accent);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

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

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

    .nav-links {
        display: none;
        /* Mobile menu implementation usually goes here */
    }

    :root {
        --font-size-h1: 2.5rem;
    }
}

/* Industries We Serve Section */
.industries-section {
    background-color: #000000;
    color: #ffffff;
    padding: var(--spacing-lg) 0;
    overflow: hidden;
}

.text-white {
    color: #ffffff;
}

.section-subheading {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 800px;
    margin-bottom: 3rem;
}

.industries-slider-container {
    width: 100%;
    margin-bottom: 3rem;
}

.industries-slider {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    /* Space for scrollbar if visible */
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) #333;
    -webkit-overflow-scrolling: touch;
}

.industries-slider::-webkit-scrollbar {
    height: 8px;
}

.industries-slider::-webkit-scrollbar-track {
    background: #333;
    border-radius: 4px;
}

.industries-slider::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 4px;
}

.industry-card {
    min-width: 300px;
    height: 400px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6), transparent);
    transform: translateY(60px);
    /* Hide description initially */
    transition: all 0.4s ease;
}

.industry-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.industry-desc {
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    height: 0;
    overflow: hidden;
}

.industry-desc p {
    color: #dddddd;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Hover Effects */
.industry-card:hover {
    border-color: var(--color-accent);
}

.industry-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.industry-card:hover::after {
    opacity: 1;
}

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

.industry-card:hover .industry-content {
    transform: translateY(0);
    z-index: 2;
}

.industry-card:hover .industry-content h3 {
    transform: translateY(-5px);
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 5px;
}

.industry-card:hover .industry-desc {
    opacity: 1;
    height: auto;
}

.industry-cta {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .industries-slider {
        flex-direction: column;
        overflow-x: visible;
    }

    .industry-card {
        width: 100%;
        min-width: unset;
        height: 300px;
    }

    .industry-content {
        transform: translateY(0);
        /* Always show on mobile? Or keep hover effect? User said "Vertical swipe cards" which implies stack, but standard scroll is better UX usually. Sticking to stack as per request. */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
    }

    .industry-desc {
        opacity: 0;
        /* Keep hidden to save space, or show? Let's keep hover/tap behavior or maybe always show title. */
        height: 0;
    }

    .industry-card:active .industry-desc,
    .industry-card:focus .industry-desc {
        opacity: 1;
        height: auto;
    }
}

/* How It Works Section */
.how-it-works {
    background-color: #ffffff;
    color: #000000;
}

.how-it-works .step-number {
    font-size: 3rem;
    color: var(--color-accent);
    font-weight: 800;
    margin-bottom: 1rem;
}

.how-it-works h3 {
    color: #111;
}

.how-it-works p {
    color: #666;
}

/* Product Showcase Section */
.product-showcase {
    background-color: #ffffff;
    color: #111111;
    border-top: 1px solid #eee;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.product-text {
    flex: 0.8;
    /* Adjust width share */
}

.product-headline {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 800;
}

.product-subhead {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.product-desc {
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.product-grid-container {
    flex: 1.2;
    /* Larger share for images */
}

.product-grid {
    display: grid;
    gap: 1.5rem;
}

.product-item {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    text-align: center;
}

.product-img-wrapper {
    position: relative;
    padding: 1rem;
    height: 200px;
    /* Fixed height for consistency */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img-wrapper img {
    max-height: 100%;
    width: auto;
    transition: transform 0.3s ease;
}

.view-product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem;
    background-color: var(--color-accent);
    color: white;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-info {
    padding: 1rem;
    border-top: 1px solid #f0f0f0;
}

.product-info h4 {
    margin-bottom: 0;
    font-size: 1rem;
    color: #111;
}

/* Hover Effects */
.product-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.product-item:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-item:hover .view-product-overlay {
    transform: translateY(0);
}

/* Responsive Product Showcase */
@media (max-width: 900px) {
    .split-layout {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .product-text {
        order: -1;
        /* Ensure text is top on mobile */
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f9f9f9;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
    border: 1px solid #eee;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stars {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.quote-text {
    font-style: italic;
    color: #555;
    /* Updated to #555 as requested */
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.client-info {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.client-thumb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent);
}

.client-info cite {
    display: block;
    font-weight: 800;
    font-style: normal;
    color: #000000;
    /* Strict Black */
    margin-bottom: 0.1rem;
}

.client-role {
    font-size: 0.85rem;
    color: var(--color-accent);
    /* Red Accent */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Expertise Section (About Page) */
.expertise-section {
    background-color: #ffffff;
    padding: 80px 0;
    /* Wide padding as requested */
}

.expertise-layout {
    align-items: center;
    gap: 4rem;
}

.expertise-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #000000;
}

.expertise-desc {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.expertise-list {
    margin-bottom: 2rem;
}

.expertise-list li {
    display: flex;
    align-items: start;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333;
}

.bullet-icon {
    color: var(--color-accent);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.expertise-visuals {
    position: relative;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.expertise-img-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border: 1px solid #f0f0f0;
}

.expertise-img-card img {
    max-height: 80%;
    width: auto;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.expertise-img-card:hover {
    border-bottom: 3px solid var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.expertise-img-card:hover img {
    transform: scale(1.05);
}

/* Responsive Expertise */
@media (max-width: 900px) {
    .expertise-layout {
        gap: 3rem;
    }

    .expertise-content {
        order: -1;
    }
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background-color: #1ed760;
    border-color: #1ed760;
    color: white;
}

/* Timeline Slider Styles */
.timeline-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.timeline-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 2rem;
    padding: 2rem 1rem;
    scrollbar-width: none;
    /* Firefox */
}

.timeline-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.timeline-item {
    flex: 0 0 300px;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--color-accent);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(214, 0, 28, 0.15);
}

.timeline-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f0f0f0;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.timeline-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #000;
    position: relative;
    z-index: 2;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.timeline-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.timeline-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.timeline-btn:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

/* Feature Icons Enhancement */
.feature-card {
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #fdfdfd;
    border: 1px solid rgba(214, 0, 28, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.feature-icon-wrapper i {
    transition: transform 0.3s ease;
}

/* Hover effect for various layouts */
.card:hover .feature-icon-wrapper,
.timeline-item:hover .feature-icon-wrapper,
.why-choose-item:hover .feature-icon-wrapper,
.service-item:hover .feature-icon-wrapper {
    background: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.25);
}

.card:hover .feature-icon-wrapper i,
.timeline-item:hover .feature-icon-wrapper i,
.why-choose-item:hover .feature-icon-wrapper i,
.service-item:hover .feature-icon-wrapper i {
    transform: scale(1.1);
}

/* Industries Slider */
.industries-slider-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 2rem;
    padding: 2rem 1rem;
    scrollbar-width: none;
}

.industries-slider-container::-webkit-scrollbar {
    display: none;
}

.industry-card {
    flex: 0 0 320px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(214, 0, 28, 0.2);
}

.industry-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--color-accent), #ff1744);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
}

.industry-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.industry-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Shop Page Styles */

/* Shop Hero */
.shop-hero {
    position: relative;
    height: 400px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.shop-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.1;
}

.shop-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-hero-content {
    position: relative;
    z-index: 2;
}

.shop-hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #000;
}

.shop-hero p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
}

.text-accent-underline {
    position: relative;
    display: inline-block;
}

.text-accent-underline::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-accent);
    opacity: 0.8;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background-color: rgba(214, 0, 28, 0.05);
}

.filter-tools {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-box {
    position: relative;
    width: 250px;
}

.search-box input {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 2.2rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
}

.search-box i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    color: #333;
    cursor: pointer;
}

/* Category Cards */
.shop-categories {
    margin-bottom: 0;
}

.category-card {
    background: white;
    border: 1px solid #eee;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 4px;
    cursor: pointer;
}

.category-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #ddd;
}

.category-img {
    height: 200px;
    width: 100%;
    overflow: hidden;
    background: #fcfcfc;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-info {
    padding: 1.5rem;
    border-top: 2px solid transparent;
    transition: border-color 0.3s ease;
    position: relative;
}

.category-card:hover .category-info {
    border-color: var(--color-accent);
}

.category-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color: #111;
}

.category-link {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.category-card:hover .category-link {
    color: var(--color-accent);
}

/* Product Cards */
.shop-product-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-accent);
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.product-badge.new {
    background: #000;
}

.shop-product-card {
    background: white;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
    text-align: center;
}

.shop-product-img {
    height: 300px;
    background: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.shop-product-img img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.shop-product-card:hover .shop-product-img img {
    transform: scale(0.95);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.shop-product-info {
    padding: 1.5rem 1rem;
    text-align: center;
}

.product-cat {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.shop-product-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #000;
    font-weight: 700;
}

.product-price {
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1.1rem;
}

.price-val {
    font-size: 1.25rem;
}

/* Why Buy Grid */
.why-buy-grid {
    margin-top: 2rem;
}

.why-buy-item {
    padding: 1.5rem;
    background: #fff;
}

.why-buy-item .icon-box {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.why-buy-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.why-buy-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Mobile Responsiveness for Shop */
@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-tools {
        width: 100%;
        flex-direction: column;
    }

    .search-box {
        width: 100%;
    }

    .shop-hero {
        height: auto;
        padding: 4rem 0;
    }

    .shop-hero-bg {
        width: 100%;
        opacity: 0.05;
    }
}