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

:root {
    --primary-color: #2563eb;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Top Strip */
.top-strip {
    background: var(--text-dark);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.25rem;
    border-radius: 4px;
}

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

.contact-links {
    display: flex;
    gap: 1.5rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-btn.whatsapp:hover {
    color: #25d366;
}

.contact-btn.call:hover {
    color: var(--primary-color);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    height: 85px;
}

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

.logo__img {
    height: 70px !important;
    width: auto !important;
    max-width: 250px !important;
    object-fit: contain !important;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav__link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary-color);
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.btn--primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
}

.nav__toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 1px;
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Hero Section */
.hero-section {
    padding: 155px 0 4rem;
    background: var(--bg-light);
}

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

.hero-slider {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 100%;
}

.slider__btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider__btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.slider__btn.prev {
    left: 1rem;
}

.slider__btn.next {
    right: 1rem;
}

.slider__dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 4;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 2rem 1rem 1rem;
    text-align: center;
}

.hero-card__content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.hero-card__content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Our Clients Section */
.our-clients {
    padding: 4rem 0;
    background: var(--white);
}

.clients__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.client__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 120px;
    box-shadow: var(--shadow);
}

.client__logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.client__logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: var(--transition);
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: var(--bg-light);
}

.testimonials__wrapper {
    width: 100%;
    overflow: hidden;
}

.testimonials__slider {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
    cursor: grab;
    user-select: none;
}

.testimonials__slider::-webkit-scrollbar {
    display: none;
}

.testimonial__card {
    flex: 0 0 350px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid #e5e7eb;
}

.testimonial__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial__info h4 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial__stars {
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.testimonial__text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.testimonial__date {
    color: #9ca3af;
    font-size: 0.85rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: var(--bg-light);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--bg-light);
}

.faq-question:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Content Guide Section */
.content-guide {
    padding: 4rem 0;
    background: var(--white);
}

.guide-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.guide-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.guide-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
}

.guide-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 0.8rem;
}

.guide-content p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.guide-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.guide-content li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-highlight {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    font-weight: 600;
    color: var(--primary-color) !important;
    margin: 1.5rem 0;
}

/* Locations Page */
.locations-page {
    padding: 4rem 0;
}

.locations__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.location__card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.location__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-light);
}

.location__card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location__card p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.service-areas {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.service-areas h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-areas ul {
    list-style: none;
    padding: 0;
}

.service-areas li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid #e5e7eb;
}

.service-areas li:last-child {
    border-bottom: none;
}

/* Categories Section */
.categories {
    padding: 2rem 0 4rem;
    background: var(--white);
    overflow: hidden;
}

.categories__wrapper {
    width: 100%;
    overflow: hidden;
}

.categories__slider {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.category__card {
    flex: 1;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

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

.category__image {
    width: 160px;
    height: 160px;
    margin: 0 auto 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.category__card:hover .category__image {
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.2);
}

.category__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category__name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.category__price {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Best Sellers Section */
.best-sellers {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.section__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

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

.bestseller__card {
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

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

.bestseller__image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.bestseller__card:hover .bestseller__image {
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.2);
}

.bestseller__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bestseller__name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.bestseller__price {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Trending Sections */
.trending-events {
    padding: 4rem 0;
    background: var(--white);
}

.trending-wall-sticker {
    padding: 4rem 0;
    background: var(--bg-light);
}

.trending-signage {
    padding: 4rem 0;
    background: var(--white);
}

/* Services */
.services {
    background: var(--bg-light);
    padding: 4rem 0;
}

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

.service__card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service__card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Products */
.products {
    padding: 4rem 0;
}

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

.product__card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product__image {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.product__card:hover .product__image img {
    transform: scale(1.05);
}

.product__content {
    padding: 1.5rem 1.5rem 1rem;
}

.product__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product__actions {
    padding: 0 1.5rem 1.5rem;
}

.product__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product__category {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.product__description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About */
.about {
    background: var(--bg-light);
    padding: 4rem 0;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Contact */
.contact {
    padding: 4rem 0;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__form input,
.contact__form textarea {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition);
}

.contact__form input:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact__form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer__brand p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer__section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer__section ul {
    list-style: none;
}

.footer__section li {
    margin-bottom: 0.5rem;
}

.footer__section a {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer__section a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer__contact p {
    margin-bottom: 0.5rem;
    color: #d1d5db;
    font-size: 0.9rem;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer__social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    transition: var(--transition);
    font-size: 1rem;
}

.footer__social a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer__bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer__legal {
    display: flex;
    gap: 2rem;
}

.footer__legal a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer__legal a:hover {
    color: var(--white);
}

/* Page specific styles */
.main {
    margin-top: 125px;
}

.page-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.products-catalog {
    padding: 4rem 0;
}

.products__filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.contact-page {
    padding: 4rem 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__details {
    margin-top: 2rem;
}

.contact__item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.contact__item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact__item p {
    color: var(--text-light);
    line-height: 1.6;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

/* Responsive Design */
@media (min-width: 1200px) {
    .categories__slider {
        justify-content: space-between;
    }
}

@media (max-width: 1199px) {
    .categories__slider {
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 1rem;
    }
    
    .categories__slider::-webkit-scrollbar {
        display: none;
    }
    
    .category__card {
        flex: 0 0 180px;
    }
    
    .bestsellers__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bestseller__image {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-images {
        position: static;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .btn-large {
        flex: 1;
        min-width: 120px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-cards {
        flex-direction: row;
        gap: 1rem;
    }
    
    .hero-card {
        flex: 1;
    }
    
    .clients__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .client__logo {
        height: 100px;
    }
    
    .client__logo img {
        max-height: 60px;
    }
    
    .testimonial__card {
        flex: 0 0 280px;
        padding: 1.2rem;
    }
    
    .testimonial__text {
        font-size: 0.9rem;
    }
    
    .faq h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .guide-content h2 {
        font-size: 1.8rem;
    }
    
    .guide-content h3 {
        font-size: 1.5rem;
    }
    
    .guide-content h4 {
        font-size: 1.2rem;
    }
    
    .contact-highlight {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .locations__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location__card {
        padding: 1.5rem;
    }
    
    .service-areas {
        padding: 2rem;
    }
    
    .top-strip__content {
        flex-direction: row;
        gap: 0.5rem;
        font-size: 0.75rem;
    }
    
    .social-links {
        gap: 0.1rem;
    }
    
    .contact-links {
        gap: 0.1rem;
    }
    
    .contact-btn {
        font-size: 0.7rem;
    }
    
    .nav__menu {
        position: fixed;
        top: 85px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 85px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 0;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .nav__menu.active {
        right: 0;
    }
    
    .nav__menu li {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .nav__link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--bg-light);
        width: 100%;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__overlay.active {
        display: block;
    }
    
    .slide__content h1 {
        font-size: 2.5rem;
    }
    
    .slide__content p {
        font-size: 1.1rem;
    }
    

    
    .category__card {
        flex: 0 0 140px;
    }
    
    .bestsellers__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .bestseller__image {
        width: 140px;
        height: 140px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .contact__content,
    .contact__grid {
        grid-template-columns: 1fr;
    }
    
    .form__row {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .about__stats {
        grid-template-columns: 1fr;
    }
}

/* Single Product Page */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-images {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.main-image {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
}

.main-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.product-info h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

.price-section {
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.price-amount {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.product-highlights {
    margin-bottom: 2rem;
}

.product-highlights h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-highlights ul {
    list-style: none;
    padding: 0;
}

.product-highlights li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid #e5e7eb;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-call {
    background: #10b981;
    color: white;
}

.btn-call:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.delivery-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.info-item {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.info-item:last-child {
    margin-bottom: 0;
}

.product-description,
.product-specs {
    margin-bottom: 3rem;
}

.product-description h2,
.product-specs h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.description-content {
    line-height: 1.7;
    color: var(--text-light);
}

.description-content h3 {
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.description-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.specs-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.specs-table td:first-child {
    background: var(--bg-light);
    font-weight: 600;
    width: 200px;
}

.related-products h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.related-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.related-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-item h4 {
    padding: 1rem 1rem 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.related-item .price {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Location Pages */
.location-detail {
    padding: 4rem 0;
    background: var(--bg-light);
}

.location-info {
    text-align: center;
    margin-bottom: 2rem;
}

.location-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.location-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.location-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-info {
    flex: 1;
    text-align: left;
}

.contact-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: var(--text-dark);
    margin: 0;
    font-size: 0.95rem;
}

.contact-actions {
    display: flex;
    gap: 1rem;
}

.location-contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.location-call-btn {
    background: var(--primary-color);
    color: var(--white);
}

.location-call-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.location-whatsapp-btn {
    background: #25d366;
    color: var(--white);
}

.location-whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.services-grid {
    margin: 3rem 0;
}

.services-grid h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.btn--secondary {
    background: #25d366;
    color: var(--white);
}

.btn--secondary:hover {
    background: #128c7e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .location-contact {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .contact-actions .btn,
    .contact-actions .location-contact-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .location-info h2 {
        font-size: 2rem;
    }
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* Product Carousels */
.product-carousels {
    margin: 1.5rem 0;
}

.carousel-section {
    margin-bottom: 1.5rem;
    position: relative;
}

.carousel-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.carousel-wrapper {
    position: relative;
}

.product-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.product-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 2;
}

.carousel-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-nav.prev {
    left: -20px;
}

.carousel-nav.next {
    right: -20px;
}

@media (max-width: 768px) {
    .carousel-nav {
        display: none;
    }
}

.product-item {
    flex: 0 0 200px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-item img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    background: var(--bg-light);
}

.product-item h4 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.product-item p {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

/* Location Grid Styles */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem auto;
    max-width: 400px;
}

.grid-item {
    padding: 1rem;
    border-radius: 8px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.grid-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.grid-content p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.btn-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
}

.btn-grid.btn-call {
    background: var(--primary-color);
    color: white;
}

.btn-grid.btn-call:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-grid.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-grid.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .location-grid {
        gap: 0.5rem;
    }
    
    .grid-item {
        padding: 0.6rem;
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .grid-content {
        text-align: center;
    }
    
    .grid-content h4 {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .grid-content p {
        font-size: 0.75rem;
    }
    
    .btn-grid {
        padding: 0.6rem;
        font-size: 0.7rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .btn-grid span:first-child {
        font-size: 1.2rem;
    }
}

/* Location Info Improvements */
.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.detail-item .icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.detail-item span:last-child {
    font-weight: 500;
    color: var(--text-dark);
}

.location-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
    margin: 1rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
}

.btn-call {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-call:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .location-details {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .detail-item {
        padding: 0.75rem;
    }
    
    .detail-item .icon {
        font-size: 1.25rem;
        width: 30px;
    }
    
    .location-description {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-call,
    .btn-whatsapp {
        padding: 1rem;
        justify-content: center;
        font-size: 1.1rem;
    }
    
    .product-item {
        flex: 0 0 160px;
    }
    
    .product-item img {
        height: 120px;
    }
    
    .product-item h4 {
        font-size: 0.9rem;
        padding: 0.8rem 0.8rem 0.3rem;
    }
    
    .product-item p {
        padding: 0 0.8rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Carousel JavaScript functionality */
.carousel-section:hover .carousel-nav {
    opacity: 1;
}

.carousel-nav {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}