@import './theme.css';

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#landing-section {
    padding: 0;
    max-width: none;
    margin: 0;
    width: 100%;
}

.card {
    background: var(--grey-light);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--grey-dark);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: none;
    border-bottom: 2px solid transparent;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.4);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-color);
}

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

.nav-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-text {
    color: var(--primary-color);
}

.logo-accent {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(220, 20, 60, 0.15);
}

/* Hero Section Styles */
.hero-container {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 2rem 2rem 2rem;
    margin: 0;
    background: url("/public/assets/images/landing_page.webp") center/cover no-repeat;
    overflow: hidden;
}

/* Dark overlay */
.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* Dark overlay - adjust opacity as needed */
    z-index: 1;
}

/* Pattern overlay (optional - keep if you want the diagonal lines) */
.hero-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            var(--primary-color) 100px,
            var(--primary-color) 102px
    );
    opacity: 0.05; /* Reduced opacity since we have dark overlay */
    pointer-events: none;
    z-index: 1;
}

.hero-wrapper {
    max-width: 900px; /* Reduced from 1400px since we removed the image */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center; /* Changed from left to center */
    animation: fadeInUp 1s ease-out;
    width: 100%;
}

.hero-title {
    margin-bottom: 1rem;
}

.brand-name {
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* Slightly larger since it's centered */
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    letter-spacing: -2px;
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.3);
}

.hero-content .brand-logo {
    height: 250px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(23%) sepia(98%) saturate(5493%) hue-rotate(352deg) brightness(95%) contrast(113%);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem); /* Slightly larger */
    font-weight: 600;
    color: var(--secondary-color);
    min-height: 4rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the animated text */
    gap: 0.3rem;
}

.animated-text {
    color: var(--white);
}

.whatsapp-notice {
    display: flex;
    align-items: center;
    justify-content: center; /* Center the notice */
    gap: 0.75rem;
    background: rgba(220, 20, 60, 0.15); /* Slightly more visible on dark background */
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 0 auto 2rem auto; /* Center the notice */
    max-width: 600px;
    color: var(--text-light);
    font-size: 1rem;
}

.whatsapp-notice svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.cursor {
    color: var(--primary-color);
    font-weight: 300;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    margin: 0 auto 2.5rem auto; /* Center the description */
    max-width: 600px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center; /* Center the buttons */
}

/* Remove the hero-image styles completely or comment them out */
.hero-image {
    display: none; /* Hide if it still exists in some legacy code */
}

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        min-height: auto;
        padding: 5rem 1.5rem 3rem 1.5rem;
    }

    .hero-wrapper {
        max-width: 100%;
    }

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

    .hero-subtitle {
        min-height: 5rem;
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand-name {
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .hero-container::before {
        background: rgba(0, 0, 0, 0.7); /* Darker overlay on mobile for better text readability */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--black);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(220, 20, 60, 0.3);
        padding: 2rem 0;
        gap: 0;
        border-top: 2px solid var(--primary-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-link {
        display: block;
        width: 100%;
    }

    .nav-cta {
        display: inline-block;
        margin-top: 1rem;
    }

    .hero-container {
        min-height: auto;
        padding: 5rem 1.5rem 2rem 1.5rem;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-subtitle {
        min-height: 5rem;
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* About Section Styles */
.about-section {
    padding: 4rem 2rem;
    background: var(--black);
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

.about-address {
    font-size: 1rem;
    color: var(--primary-color);
    margin-top: 1rem;
    font-weight: 500;
}

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

.about-card {
    background: var(--grey-light);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--grey-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.about-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-icon svg {
    width: 48px;
    height: 48px;
}

.about-card-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.about-card-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    text-align: center;
}

.about-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: var(--white);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    width: 100%;
    justify-content: center;
}

.about-whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }
}

/* Awards Container Styles */
.awards-container {
    margin-top: 4rem;
    text-align: center;
}

.awards-text {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 600;
}

.awards-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.award-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    border: 2px solid var(--grey-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.award-image:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

@media (max-width: 768px) {
    .awards-container {
        margin-top: 3rem;
    }

    .awards-text {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .awards-images {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .award-image {
        max-width: 100%;
    }
}

/* Community Support Section Styles */
.community-container {
    margin-top: 4rem;
    text-align: center;
}

.community-heading {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 700;
}

.community-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.community-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    border: 2px solid var(--grey-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.community-image:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.community-caption {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    font-weight: 500;
}

@media (max-width: 768px) {
    .community-container {
        margin-top: 3rem;
    }

    .community-heading {
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    .community-image {
        max-width: 100%;
    }

    .community-caption {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Footer Styles */
.main-footer {
    background: var(--grey-light);
    border-top: 3px solid var(--primary-color);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

.footer-section {
    color: var(--text-color);
}

.footer-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-text {
    color: var(--text-light);
    line-height: 1.8;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    color: var(--text-light);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--grey-dark);
    font-weight: 500;
}

.footer-list li:last-child {
    border-bottom: none;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.footer-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--grey-dark);
    color: var(--text-light);
    position: relative;
}

.footer-stripe {
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-whatsapp {
        display: flex;
        justify-content: center;
    }
}

/* Products Section Styles */
.products-section {
    padding: 4rem 2rem;
    background: var(--black);
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.products-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.products-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

/* Brands Carousel Styles */
.brands-carousel {
    width: 100%;
    overflow: hidden;
    background: var(--grey-light);
    padding: 2rem 0;
    margin: 3rem 0;
    border-radius: 12px;
    position: relative;
}

.brands-carousel::before,
.brands-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--grey-light), transparent);
}

.brands-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--grey-light), transparent);
}

.brands-track {
    display: flex;
    gap: 4rem;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
}

.brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo-item:hover .brand-logo {
    filter: grayscale(0%) brightness(1) invert(0);
    opacity: 1;
    transform: scale(1.1);
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.category-tab {
    background: var(--grey-light);
    color: var(--white);
    border: 2px solid var(--grey-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.category-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.categories-container {
    position: relative;
}

.product-category {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.product-category.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.category-header {
    margin-bottom: 2rem;
    text-align: center;
}

.category-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.category-line {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: var(--grey-light);
    border: 1px solid var(--grey-dark);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.product-image-container {
    width: 100%;
    height: 200px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 2.5rem;
    flex-grow: 1;
}

.product-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.product-order-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

@media (max-width: 768px) {
    .products-section {
        padding: 3rem 1rem;
    }

    .brands-carousel {
        margin: 2rem 0;
        padding: 1.5rem 0;
    }

    .brands-carousel::before,
    .brands-carousel::after {
        width: 50px;
    }

    .brand-logo {
        height: 40px;
    }

    .brands-track {
        gap: 2rem;
    }

    .category-tabs {
        gap: 0.5rem;
    }

    .category-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Logo Styles - Add this to your src/styles/main.css file */

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
        max-width: 120px;
    }
}
