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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #ffffff;
    overflow-x: hidden !important;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Utility Classes */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-accent {
    color: #dc2626;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Marquee Banner */
.marquee-banner {
    width: 100%;
    background-color: #db251b;
    color: #ffffff;
    overflow: hidden;
    padding: 0;
}
.marquee-banner .header-content {
    background: #db251b;
}
.marquee-banner .header-container {
    height: auto;
    column-gap: 10px;
}
.marquee-banner .social-links {
    gap: 10px;
}
.marquee-banner .social-links .social-link {
    background: transparent;
    width: 1.5rem;
    height: 1.5rem;
}
.marquee-banner .social-links .social-link img {
    width: 100%;
    height: 100%;
    object-fit:contain;
}

.marquee-banner marquee {
    white-space: nowrap;
    padding: 0.3rem 0;
}
@media (max-width:600px) {
    .marquee-banner .social-links {
        gap:2px;
    }
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 40;
    width: 100%;
    transition: all 0.3s ease;
}

.header-content {
    width: 100%;
    padding: 0 1rem;
    border-bottom: 1px solid #db251b;
    background: linear-gradient(to bottom, #ffffff 0%, #ffcf6a 100%);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled .header-content {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 207, 106, 0.8) 100%);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    /*height: 7rem;*/
    height: 5.6rem;
    align-items: center;
    justify-content: space-between;
}

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

.logo {
    width: 288px;
    height: 144px;
    object-fit: contain;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #111827;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #dc2626;
}

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

.icon-btn {
    color: #6b7280;
    transition: color 0.2s ease;
    padding: 0.5rem;
}

.icon-btn:hover {
    color: #dc2626;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 300px;
    z-index: 150;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    background-color: #ffffff;
    height: 100%;
    box-shadow: -4px 0 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 50;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.mobile-brand {
    font-weight: 700;
    color: #111827;
}

.mobile-menu-close {
    padding: 0.5rem;
}

.mobile-nav {
    padding: 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    color: #111827;
    transition: color 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-nav-link:hover {
    color: #dc2626;
}

/* Hero Slideshow */
.hero-slideshow {
    position: relative;
    height: 800px;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

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

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: #111827;
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
}

.slide-btn:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

.slide-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.2s ease;
}

.indicator.active {
    background-color: #ffffff;
}

/* Hero Content Overlay */
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    pointer-events: none;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.hero-text {
    max-width: 50rem;
    padding: 30px;
    background: rgb(0 0 0 / 20%);
    backdrop-filter: blur(2px);
    border-radius: 15px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    text-align: left;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 37.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    text-align: left;
}

.hero-actions {
    margin-top: 2rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    padding: 0 2rem;
    background-color: #fbbf24;
    color: #7c2d12;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    pointer-events: auto;
}

.hero-btn:hover {
    background-color: #f59e0b;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hero-btn-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

/* Responsive Hero Content */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        margin-top: 1.5rem;
    }
}

.clients-section {
    margin-bottom: 3rem;
}

/* Sections */
.categories-section {
    background-color: #f9fafb;
    padding: 2rem 0 3rem;
}

.brand-showcase {
    background-color: #ffffff;
    padding: 2rem 0 3rem;
    overflow: hidden;
}

.featured-products {
    background-color: #111827;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.featured-products .section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

.featured-products .section-description {
    color: #d1d5db;
    text-align: center;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 1rem;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 600px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.category-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1;
    group: true;
}

.category-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #fecaca;
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.category-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    z-index: 1;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.category-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #ffffff;
    transition: color 0.3s ease;
}
@media (max-width:600px){
    .category-content .category-title {
        font-size: 13px;
        line-height: 15px;
    }
}

.category-card:hover .category-title {
    color: #fbbf24;
}

.category-description {
    color: #e5e7eb;
    font-size: 0.875rem;
    line-height: 1.4;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width:600px){
    .category-content .category-description {
        font-size: 12px;
        line-height: 14px;
    }
}

.category-card:hover .category-description {
    opacity: 1;
}

.category-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(220, 38, 38, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.category-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
}

.category-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(0.5rem);
    transition: all 0.3s ease;
    z-index: 3;
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

.category-arrow svg {
    width: 1rem;
    height: 1rem;
    color: #ffffff;
}

.category-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%) skewX(-12deg);
    transition: transform 1s ease;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
}

.category-card:hover .category-shimmer {
    opacity: 1;
    transform: translateX(100%) skewX(-12deg);
}

.show-more-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
    padding: 0.5rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.show-more-btn:hover {
    background-color: #fef2f2;
    transform: scale(1.05);
}

.show-more-btn .plus-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.show-more-btn:hover .plus-icon {
    transform: rotate(90deg);
}

.show-more-btn .category-count {
    background-color: #fef2f2;
    color: #b91c1c;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.show-less-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: transparent;
    color: #6b7280;
    border: 2px solid #9ca3af;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.show-less-btn:hover {
    background-color: #f9fafb;
}

.show-less-btn .chevron-icon {
    width: 1rem;
    height: 1rem;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.show-less-btn:hover .chevron-icon {
    transform: rotate(180deg);
}

.category-stats {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.category-stats-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.category-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-stat-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.category-stat-dot.red {
    background-color: #dc2626;
}

.category-stat-dot.amber {
    background-color: #f59e0b;
}

/* Brand Showcase */
.brand-showcase {
    padding: 3rem 0 4rem;
    background-color: #ffffff;
}

.brand-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.brand-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-stat-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
}

.brand-stat-dot.red {
    background-color: #dc2626;
}

.brand-stat-dot.amber {
    background-color: #f59e0b;
}

.brand-rows-container {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.brand-row {
    overflow: hidden;
    position: relative;
}

/* Hide third row on desktop by default */
.brand-row-mobile {
    display: none;
}

.brand-scroll-left {
    display: flex;
    gap: 1.5rem;
    animation: scroll-left 30s linear infinite;
}

.brand-scroll-right {
    display: flex;
    gap: 1.5rem;
    animation: scroll-right 35s linear infinite;
}

.brand-item {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((100% - 6rem) / 4.5);
    min-width: 200px;
    height: 6rem;
    flex-shrink: 0;
    transition: all 0.5s ease-out;
    cursor: pointer;
    overflow: hidden;
}

.brand-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #fca5a5;
    box-shadow: 0 20px 25px -5px rgba(239, 68, 68, 0.1);
}

.brand-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fef2f2 0%, #fef3c7 100%);
    border-radius: 0.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.brand-item:hover::before {
    opacity: 0;
}

.brand-item::after {
    content: '';
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #f87171;
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 30;
}

.brand-item:hover::after {
    opacity: 1;
}

.brand-logo {
    max-width: 5rem;
    max-height: 3.125rem;
    object-fit: contain;
    position: relative;
    z-index: 10;
    transition: all 0.5s ease;
}

.brand-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 0.25rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 20;
}

.brand-item:hover .brand-name {
    transform: translateY(0);
}

.brand-name p {
    font-size: 0.75rem;
    font-weight: 500;
    color: #374151;
    text-align: center;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

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

/* Products Scroll Container */
.products-scroll-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    padding: 2rem 0;
}

/* Gradient Overlays */
.products-gradient-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6rem;
    background: linear-gradient(to right, rgba(17, 24, 39, 0.5), rgba(17, 24, 39, 0));
    z-index: 10;
    pointer-events: none;
}

.products-gradient-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 6rem;
    background: linear-gradient(to left, rgba(17, 24, 39, 0.5), rgba(17, 24, 39, 0));
    z-index: 10;
    pointer-events: none;
}

/* Products Scroll Wrapper */
/* .products-scroll-wrapper {
    display: flex;
    gap: 1.5rem;
    animation: scroll-products 30s linear infinite;
    width: calc(12 * (350px + 24px));
}

.products-scroll-wrapper:hover {
    animation-play-state: paused;
} */

/* Product Card */
/* Homepage featured product cards - different from products page */
.featured-product-card {
    flex-shrink: 0;
    height: 380px;
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.8s ease;
    font-family: 'Inter', sans-serif;
}

.featured-product-card:hover {
    /* transform: translateY(-8px); */
    box-shadow: 0 25px 50px -12px rgba(251, 191, 36, 0.1);
    border-color: #fbbf24;
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #fbbf24;
    color: #7c2d12;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 50%;
    z-index: 5;
}

/* Featured Product Image Container */
.featured-product-card .product-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #1f2937;
}

.featured-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    box-sizing: content-box;
}

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

/* Product Content */
.product-content {
    padding: 1rem;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #343434;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.product-description {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-button {
    display: inline-flex;
    align-items: center;
    background-color: #dc2626;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.product-button:hover {
    background-color: #b91c1c;
}

/* Shimmer Effect */
.shimmer-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: opacity 0.8s ease;
    opacity: 0;
    pointer-events: none;
    animation: shimmer 2s ease-in-out;
}

.product-card:hover .shimmer-effect {
    opacity: 1;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Scroll Animation */
@keyframes scroll-products {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-6 * (400px + 24px)));
    }
}

/* Navigation Arrows */
.products-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: rgba(31, 41, 55, 0.9);
    border: 1px solid #374151;
    border-radius: 0.75rem;
    color: #ffffff;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.products-nav-arrow:hover {
    background-color: #fbbf24;
    color: #7c2d12;
    border-color: #fbbf24;
    transform: translateY(-50%) scale(1.1);
}

.products-nav-left {
    left: 1rem;
}

.products-nav-right {
    right: 1rem;
}

/* Service Call Log Form Styles */
.service-form-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.service-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-header .section-title {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 600;
}

.form-description {
    color: #e74c3c;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-form .form-group {
    margin-bottom: 1.5rem;
}

.service-form .form-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    align-items: end;
}

.service-form .form-row:nth-child(2) {
    grid-template-columns: 1fr 2fr;
}

.service-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
}

.service-form input,
.service-form select,
.service-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.service-form input[required],
.service-form select[required],
.service-form textarea[required] {
    border-left: 4px solid #e74c3c;
}

/* Add red left border to specific input fields */
.service-form input#companyName,
.service-form select#contactPerson,
.service-form input#contactPersonName,
.service-form input#nearLocation,
.service-form input#city,
.service-form input#email,
.service-form input#mobileNo,
.service-form input#equipmentName,
.service-form input#modelNo,
.service-form input#serialNo,
.service-form textarea#customerAddress,
.service-form input#invoiceDate {
    border-left: 4px solid #e74c3c;
}

.service-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e1e8ed;
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.submit-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}



.btn-icon {
    width: 18px;
    height: 18px;
}

/* Mobile Responsive for Service Form */
@media (max-width: 768px) {
    .service-form-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .service-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Trusted By Industry Leaders Section */
.trusted-by-section {
    padding: 3rem 0;
    background: #f9fafb;
}

.client-logos-container {
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

/* .client-logos-scroll {
    display: flex;
    gap: 2rem;
    animation: scroll-infinite 8s linear infinite;
} */

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    width: 8rem;
    flex-shrink: 0;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}
.client-logo2 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    width: 8rem;
    flex-shrink: 0;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: none;
    opacity: 1;
}

.client-logo img {
    height: auto;
    max-height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.client-logo2 img {
    height: auto;
    max-height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

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


.contact-container {
    max-width: 1500px;
    margin: 0 auto;
}

/* Contact Section with Google Map */
.contact-section {
    /*background: linear-gradient(to right, #dc2626, #b91c1c);*/
    padding: 2rem 0 3rem;
}

/* Contact Section with Red Gradient Background - Clone */
.contact-section-red {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Contact Info Panel */
.contact-info-panel {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
}

.contact-info-panel .section-title {
    color: #1f2937;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-info-panel .contact-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}
.contact-info-panel .social-media h3 {
    text-align: left;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    border-left: 4px solid #dc2626;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.contact-details h3 {
    color: #1f2937;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

.contact-details strong {
    color: #374151;
    font-weight: 600;
}

/* Social Media */
.social-media {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.social-media h3 {
    color: #1f2937;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 0.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.social-link img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

/* Contact Form Panel */
.contact-form-panel {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
    height: 100%;
}
.contact-form-panel .section-title {
    color: #1f2937;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

/* Contact Map Panel */
.contact-map-panel {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
    height: 100%;
}
.contact-map-panel .section-title {
    color: #1f2937;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}
.contact-map-panel .contact-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}
.contact-map-panel .thumb {
    margin-bottom: 20px;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 0.75rem;
    object-fit: cover;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: white;
    border-left: 4px solid #e74c3c;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #6b7280;
}

.checkbox-label input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: #dc2626;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

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

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.map-container {
    width: 100%;
    height: 24rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    gap: 1rem;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-description {
    color: #fef3c7;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 1.5rem;
}

.btn.btn-primary {
    display: inline-flex;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: #fbbf24;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #7f1d1d;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn.btn-primary:hover {
    background-color: #f59e0b;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.15);
}

.phone-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
}

.phone-number {
    font-size: 1.125rem;
    font-weight: 500;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: 1rem;
    text-align: center;
}

.whatsapp-link:hover {
    color: #fef3c7;
}

/* Catalogues Page Styles */
.page-header {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    /*padding: 4rem 2rem;*/
    padding: 2rem;
    color: white;
    text-align: center;
}

.page-header-with-bg {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    text-align: center;
}

.page-header-no-bg {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 4rem 2rem;
     background: linear-gradient(135deg, #121212 0%, #292929 100%);
    color: white;
    text-align: center;
}

.page-header .page-title {
    color: white;
}

.catalogues-products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 112rem;
    margin: 0 auto;
    margin-bottom: 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.catalogues-products-grid .catalogue-card {
    width: 100%;
    max-width: calc(25% - 1.125rem);
}

.catalogues-products-grid .catalogue-content {
    padding: 1rem;
}

.catalogues-products-grid .catalogue-content h3 {
    font-size: 0.875rem;
}

.page-header .page-subtitle {
    color: #e5e7eb;
}

/* Map Section */
/* Find Us Section */
.find-us-section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-header .section-title {
    color: #1e293b;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Map Container - Full Width */
.map-container {
    position: relative;
    height: 400px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    background: white;
    /* max-width: 1200px; */
    margin: 0 auto;
    z-index: 2;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

/* Contact section variant with full-width map */
.contact-section-red .contact-grid {
    grid-template-columns: 1fr;
}

.contact-section-red .map-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

/* Hide original contact info inside the grid since it moved below */
.contact-section-red .contact-grid .contact-info {
    display: none;
}

/* New contact info section spacing */
.contact-info-section {
    padding: 2rem 0;
    background: #1f2937; /* dark gray */
}

.map-container:hover .map-wrapper iframe {
    filter: grayscale(0%) contrast(1.2);
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.5);
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
}

.directions-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.directions-btn:hover svg {
    transform: translateX(2px);
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: white;
    padding: 4rem 0;
}

.faq-section .section-title {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: bold;
}

.faq-container {
    padding: 0;
    width: 100%;
    margin: 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.faq-question {
    color: #fbbf24;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    padding: 1.5rem 2rem;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    text-align: left;
    width: 100%;
}

.faq-question:hover {
    color: #fcd34d;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #fbbf24;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: #fcd34d;
}

.faq-answer {
    color: #e5e7eb;
    line-height: 1.6;
    font-size: 0.95rem;
    padding: 0 2rem 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.page-header-content .text-red {
    color: #dc2626;
}

.page-header-content p {
    font-size: 1.25rem;
    color: white;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.catalogues-section {
    padding: 4rem 0 6rem;
}

.catalogues-section.bg-light {
    background-color: #f9fafb;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.catalogues-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 112rem;
    margin: 0 auto;
}

.comprehensive-grid .catalogue-card {
    width: 100%;
    max-width: calc(33.333% - 1rem);
}

.products-grid .catalogue-card {
    width: 100%;
    max-width: calc(25% - 1.125rem);

}

.applications-grid .catalogue-card {
    width: 100%;
    max-width: calc(25% - 1.125rem);
}

.catalogue-card {
    background: white;
    border-radius: 5px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
}

.catalogue-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #fecaca;
    transform: translateY(-2px);
}

.catalogue-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.catalogue-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.catalogue-content {
    padding: 1.5rem;
    text-align: center;
}

.comprehensive-grid .catalogue-content {
    padding: 1.5rem;
}

.products-grid .catalogue-content,
.applications-grid .catalogue-content {
    padding: 1rem;
}

.catalogue-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    transition: color 0.3s ease;
}

.products-grid .catalogue-content h3,
.applications-grid .catalogue-content h3 {
    font-size: 0.875rem;
}

.catalogue-card:hover .catalogue-content h3 {
    color: #dc2626;
}

/* Floating Cart Button */
.cart-float {
    position: fixed;
    bottom: 7rem;
    right: 1.5rem;
    z-index: 1000;
}

.cart-btn {
    display: block;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    background-color: #ffcf69;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  animation: zoom-in-zoom-out 0.8s ease-out infinite;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}

.cart-btn:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
    background-color: #f5c842;
}

.cart-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.cart-counter {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background-color: #dc2626;
    color: white;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Floating WhatsApp Button */
.floating-whatsapp,
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
}

.floating-whatsapp a,
.whatsapp-btn {
    display: block;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.floating-whatsapp a:hover,
.whatsapp-btn:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

.floating-whatsapp img,
.whatsapp-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Products Page Styles */
.products-main {
    /*padding: 2rem 0;*/
    padding: 0;
    min-height: calc(100vh - 200px);
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Brand Slider Section */
.brand-slider-section {
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.brand-section-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    gap: 2rem;
    align-items: stretch;
    overflow-x: hidden;
}

.brand-title-column {
    width: 300px;
    background: #dc2626;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /*padding: 2rem 1rem;*/
    padding: 2rem 1rem;
    flex-shrink: 0;
}

.brand-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

.brand-slider-column {
    flex: 1;
    display: flex;
    align-items: center;
}

.brand-slider-container {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.brand-nav-btn {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
    flex-shrink: 0;
    box-sizing: border-box;
}

.brand-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.brand-nav-btn:active {
    transform: scale(0.95);
}

.brand-nav-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.brand-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f3f4f6;
    color: #9ca3af;
}

.brand-nav-btn:disabled:hover {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #9ca3af;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.brand-nav-prev {
    left: -1.5rem;
}

.brand-nav-next {
    right: -1.5rem;
}

.brand-slider-viewport {
    overflow: hidden;
    position: relative;
    flex: 1;
    /* margin: 0 2rem; */
    padding: 0 20px;
}

/* Brand Slider Gradient Masks */
.brand-slider-viewport::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3rem;
    background: linear-gradient(to right, #f9fafb, transparent);
    z-index: 10;
    pointer-events: none;
}

.brand-slider-viewport::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3rem;
    background: linear-gradient(to left, #f9fafb, transparent);
    z-index: 10;
    pointer-events: none;
}

.brand-slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    width: fit-content;
}

.brand-slider-track .brand-item {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    /*padding: 1rem;*/
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 200px;
    min-width: 200px; */
    width: 100%;
    /*height: 6rem;*/
    height: 5rem;
    flex-shrink: 0;
    transition: all 0.5s ease-out;
    cursor: pointer;
    overflow: hidden;
}

.brand-slider-track .brand-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #fca5a5;
    box-shadow: 0 20px 25px -5px rgba(239, 68, 68, 0.1);
}

.brand-slider-track .brand-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fef2f2 0%, #fef3c7 100%);
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.brand-slider-track .brand-item:hover::before {
    opacity: 0;
}

.brand-slider-track .brand-item::after {
    content: '';
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #f87171;
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 30;
}

.brand-slider-track .brand-item:hover::after {
    opacity: 1;
}

.brand-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 0;
    padding: 0.25rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 20;
}

.brand-slider-track .brand-item:hover .brand-name {
    transform: translateY(0);
}

.brand-name p {
    font-size: 0.75rem;
    font-weight: 500;
    color: #374151;
    text-align: center;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.brand-slider-track {
    padding: 0 50px;
}
.brand-slider-track .owl-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 !important;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    z-index: -1;
}
.brand-slider-track .owl-nav button {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 50% !important;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
    flex-shrink: 0;
    box-sizing: border-box;
}
.brand-slider-track .owl-nav button span {
    font-size: 22px;
    color: #6b7280;
    transition: all 0.3s ease;
}
.brand-slider-track .owl-nav button:hover span {
    color: #374151;
}
/* .brand-slider-track .owl-nav button.owl-prev {
    margin-left: -1.5rem;
}
.brand-slider-track .owl-nav button.owl-next {
    margin-right: -1.5rem;
} */

/* Duplicate definition removed - consolidated above */

.brand-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.brand-nav-btn:disabled:hover {
    background: #ffffff;
    border-color: #e5e7eb;
    color: #6b7280;
    transform: none;
}

.brand-slider-track .brand-logo {
    max-width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 10;
    transition: all 0.5s ease;
    padding: 5px;
}

/* Sidebar Styles */
.products-sidebar {
    background: #ffffff;
    border-radius: 0.75rem;
    box-shadow: none;
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 140px;
    height: calc(100vh - 140px);
    overflow-y: auto;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #dc2626;
}

.sidebar-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.category-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 0.7rem;
    background: #f9fafb;
    border: none;
    text-align: left;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.accordion-header span {
    font-size: 0.75em; /* 75% of the parent font size */
    width: calc(100% - 1.3rem);
}

.accordion-header:hover {
    background: #f3f4f6;
    color: #dc2626;
}

.accordion-header.active {
    background: #dc2626;
    color: #ffffff;
}

.accordion-icon {
    width: 1.3rem;
    height: 1.3rem;
    transition: transform 0.2s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    background: #ffffff;
}

.accordion-content.active {
    display: block;
}

.subcategory-link {
    display: block;
    padding: 0.75rem 1rem 0.75rem 2rem;
    color: #6b7280;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
    background: #fff9eb;
    font-size: 0.75em; /* 75% of the parent font size */
}

.subcategory-link:hover,
.subcategory-link.active {
    background: #fede9a;
    color: #dc2626;
    padding-left: 2.5rem;
}

.subcategory-link:last-child {
    border-bottom: none;
}

/* Products Content */
.products-content {
    background: #ffffff;
    padding: 0.5rem 1.5rem;
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100%;
    min-height: 500px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.products-header h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
}

.products-count {
    color: #6b7280;
    font-size: 0.875rem;
}

/* View All Button */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #dc2626;
    border: 1px solid #dc2626;
    padding: 0.5rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.view-all-btn:hover {
    background: #dc2626;
    color: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: auto;
}

/* Duplicate classes for products and brands pages with reduced height */
.products-page-card {
    display: block;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    width: 100%;
    height: auto; /* Auto height to accommodate 1:1 images and content */
}
.products-page-card .inner {
    display: flex;
    flex-direction: column;
}

.brands-page-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: auto; /* Auto height to accommodate 1:1 images and content */
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    border-color: #dc2626;
}

.products-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    border-color: #dc2626;
}

.brands-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    border-color: #dc2626;
}

.products-page-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Creates 1:1 aspect ratio */
    object-fit: cover;
    background: #fff;
    position: relative;
}

/* .products-page-card .products-page-image {
    width: 100%;
    height: 0;
    padding-bottom: 50%; 
    object-fit: cover;
    background: #f9fafb;
    position: relative;
} */

.products-page-card .products-page-image {
    width: 100%;
    aspect-ratio: 1 / 1; /* Makes the image container a perfect square */
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem 0.75rem 0 0;
    background: #fff; /* Helps when images don't fill space */
}

.brands-page-image {
    width: 100%;
    height: auto;
    
    object-fit: cover;
    background: #f9fafb;
    aspect-ratio: 5/3;
    position: relative;
}

.products-page-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem 0.75rem 0 0;
}

/* .products-page-card .products-page-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem 0.75rem 0 0;
} */

.products-page-card .products-page-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Shows full image without cropping */
    object-position: center; /* Centers the image */
    border-radius: inherit; /* Same radius as container */
}
.products-page-card .products-page-image .brand-logo-overlay img {
    position: relative;
}

.brands-page-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem 0.75rem 0 0;
}

.product-info {
    padding: 0.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.product-category {
    color: #dc2626;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.product-description {
    color: #6b7280;
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 0.6rem;
}

.product-actions {
    display: flex;
    gap: 0.4rem;
    margin-top: auto;
    padding-bottom: 16px;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    justify-content: space-between;
}

.product-btn {
    flex: auto;
    padding: 0.4rem 0.4rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    width: 50%;
    box-sizing: border-box;
    text-align: center;
}

/* Removed duplicate .btn-primary - consolidated below */

/* Removed duplicate .btn-secondary - consolidated below */

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.load-more-btn:hover {
    background-color: #fef2f2;
    transform: scale(1.05);
}

.load-more-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.load-more-btn:hover .load-more-icon {
    transform: rotate(90deg);
}

/* Subcategory section styles */
.subcategory-title {
    margin: 2rem 0 1rem 0;
    width: 100%;
    grid-column: 1 / -1; /* Span all columns in the grid */
}

.subcategory-title:first-child {
    margin-top: 0;
}

.subcategory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.subcategory-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-transform: capitalize;
}

.subcategory-view-all-inline {
    /* background: #ffffff; */
    color: #fff;
    /* border: 1px solid #dc2626; */
    border: 1px solid #ffabab;
    padding: 0.75rem 1.4rem;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease-out;
    background: linear-gradient(300deg,darkviolet,blue,#ff0003,#d600a1,#00c2d6,#00cc12,#004fbc,#0053f1,#ff0004,#ff9800);
    background-size: 600% 600%;
    animation: gradient-animation 12s ease infinite;
}
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.subcategory-view-all-inline:hover {
    background: linear-gradient(45deg, #dc2626, #b91c1c);
}

.subcategory-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, transparent);
    margin: 0 0 1rem 0;
    width: 100%;
}

.subcategory-section {
    width: 100%;
    margin-bottom: 2rem;
}

.subcategory-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
    grid-column: 1 / -1; /* Span all columns in the parent grid */
}

/* Brands page specific grid styling */
.brands-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.brands-subcategory-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
    grid-column: 1 / -1; /* Span all columns in the parent grid */
}

.subcategory-load-more-container {
    text-align: center;
    margin: 1rem 0 2rem 0;
    width: 100%;
    grid-column: 1 / -1; /* Span all columns in the grid */
}

.subcategory-load-more {
    background-color: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
}

.subcategory-load-more:hover {
    background-color: #fef2f2;
    transform: scale(1.05);
}

.subcategory-view-all-container {
    text-align: center;
    margin: 1rem 0 2rem 0;
    width: 100%;
    grid-column: 1 / -1; /* Span all columns in the grid */
}

.subcategory-view-all {
    background-color: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.subcategory-view-all:hover {
    background-color: #fef2f2;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .subcategory-products-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-column: 1 / -1;
    }
}

/* Responsive Design */
@media (max-width: 900px) {
    .products-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .brands-products-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-subcategory-products-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-column: 1 / -1;
    }
    
    .subcategory-title {
        grid-column: 1 / -1;
    }
    
    .subcategory-load-more-container {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .products-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        position: relative;
    }
    
    .products-sidebar {
        position: static;
        order: 2;
    }
    
    .products-content {
        order: 1;
        padding: 0;
    }
    
    .subcategory-products-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-column: 1 / -1;
        gap: 0.75rem;
    }
    
    /* Hide brand showcase/slider on tablet */
    .brand-showcase,
    .brand-section-wrapper {
        display: none;
    }
    
    .brands-products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .brands-subcategory-products-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-column: 1 / -1;
        gap: 0.75rem;
    }
    
    .subcategory-title {
        grid-column: 1 / -1;
    }
    
    .subcategory-load-more-container {
        grid-column: 1 / -1;
    }
    
    .brand-scroll-track {
        gap: 2rem;
    }
    
    .brand-item {
        width: 100px;
        height: 70px;
    }
    
    .brand-slider-track .brand-item {
        /* width: 150px;
        min-width: 150px; */
        height: 5rem;
    }
    
    /* Brand Slider Mobile Styles */
    .brand-section-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .brand-title-column {
        width: 100%;
        padding: 1.5rem 1rem;
    }
    
    .brand-title {
        font-size: 1.25rem;
    }
    
    .brand-slider-container {
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    /* .brand-slider-viewport {
        margin: 0 1rem;
    } */
    
    .brand-nav-prev {
        left: -0.75rem;
    }
    
    .brand-nav-next {
        right: -0.75rem;
    }
    
    .brand-slider-track .brand-item {
        /* width: calc((100% - 4rem) / 3);
        min-width: 140px; */
        height: 4.5rem;
        padding: 0.75rem;
        border-radius: 6px;
    }
    
    .brand-slider-track .brand-logo {
        max-width: 4rem;
        max-height: 2.5rem;
    }
    
    .brand-nav-btn {
        width: 3rem;
        height: 3rem;
        min-width: 3rem;
        min-height: 3rem;
        max-width: 3rem;
        max-height: 3rem;
    }
    
    .brand-slider-viewport::before,
    .brand-slider-viewport::after {
        width: 2rem;
    }
    
    .brand-name p {
        font-size: 0.625rem;
    }
}

@media (max-width: 480px) {
    /* Mobile view - 1 product per row */
    
    .subcategory-products-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-column: 1 / -1;
        gap: 0.5rem;
    }
    
    .subcategory-title {
        grid-column: 1 / -1;
    }
    
    .subcategory-load-more-container {
        grid-column: 1 / -1;
    }
    
    /* Brands page specific grid styling */
    .brands-products-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-subcategory-products-grid {
        grid-template-columns: 1fr;
        grid-column: 1 / -1;
        gap: 0.5rem;
    }
    
    /* Hide brand showcase/slider on mobile */
    .brand-showcase,
    .brand-section-wrapper {
        display: none;
    }
    
    .product-card {
        font-size: 0.875rem;
    }
    
    .product-card .products-page-image {
        height: 0;
        padding-bottom: 100%; /* Maintain 1:1 aspect ratio on mobile */
    }
}

/* Main Content Spacing */
main {
    /*margin-bottom: 4rem;*/
}

/* Profile Page Styles */
.profile-section {
    padding: 2rem 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.profile-header {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    padding: 1.5rem 2rem;
    color: white;
}

.profile-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.profile-content {
    padding: 2rem;
}

.profile-item {
    margin-bottom: 2rem;
}

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

.profile-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.profile-value {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

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

.profile-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    padding-left: 1.5rem;
}

.profile-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

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

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

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: #f3f4f6;
    transform: translateX(4px);
}

.category-item h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    flex: 1;
}

.product-count {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 400;
    margin-left: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .profile-content {
        padding: 1.5rem;
    }
    
    .profile-header {
        padding: 1rem 1.5rem;
    }
    
    .profile-title {
        font-size: 1.25rem;
    }
    
    .product-categories {
        grid-template-columns: 1fr;
    }
    
    .category-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .product-count {
        margin-left: 0;
    }
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffcf69;
}

.footer-logo-container {
    background: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 182px;
    height: auto;
}

.footer-section p {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
}

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

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffcf69;
}
.footer-section .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    padding: 0 2rem;
    background-color: #fbbf24;
    color: #7c2d12;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    pointer-events: auto;
    margin-top: 20px;
    text-transform: uppercase;
}

.footer .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: #d1d5db;
    font-size: 0.875rem;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    gap: 0;
    transform: none;
    box-shadow: none;
}

.footer .contact-item:hover {
    background: none;
    transform: none;
    box-shadow: none;
}

.footer .contact-item svg {
    margin-right: 0.5rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    color: #ffcf69;
    width: 20px;
    height: 20px;
}

.footer .social-links {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

.footer .social-links a {
    color: #d1d5db;
    transition: color 0.3s ease;
    background: none;
    border-radius: 0;
    width: auto;
    height: auto;
    transform: none;
    box-shadow: none;
}

.footer .social-links a:hover {
    color: #ffcf69;
    transform: none;
    box-shadow: none;
}

.footer .social-links svg {
    width: 20px;
    height: 20px;
}

.footer .social-links img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer .social-links a[aria-label="Twitter"] svg {
    display: none;
}

/* Tablet Footer Layout */
@media (max-width: 1024px) and (min-width: 769px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 2rem;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .categories-section,
    .brand-showcase,
    .featured-products {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-description {
        font-size: 1.125rem;
    }
    
    .prev-btn {
        left: 3rem;
    }
    
    .next-btn {
        right: 3rem;
    }
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .header-container {
        padding: 0 1.5rem;
    }
    
    .contact-title {
        font-size: 1.875rem;
    }
    
    .contact-description {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .hero-slideshow {
        height: 400px;
    }
    
    .slide-btn {
        padding: 0.75rem;
    }
    
    .prev-btn {
        left: 1rem;
    }
    
    .next-btn {
        right: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }

    .logo {
        width: 216px;
        height: 108px;
    }

    .header-container {
        height: 5rem;
    }
    
    /* Brand showcase responsive styles */
    .brand-showcase {
        padding: 2rem 0 3rem;
    }
    
    .brand-stats {
        flex-direction: column;
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .brand-rows-container {
        margin-top: 2rem;
        gap: 1.5rem;
    }
    
    .brand-scroll-left,
    .brand-scroll-right {
        gap: 1rem;
    }
    
    .brand-item {
        width: 6rem;
        height: 5rem;
        padding: 0.75rem;
        border-radius: 0;
    }

    .brand-logo {
        max-width: 4rem;
        max-height: 3rem;
    }

    /* Show third row only on mobile */
    .brand-row-mobile {
        display: block;
    }
    
    .brand-name p {
        font-size: 0.625rem;
    }
    
    .brand-item::after {
        width: 0.375rem;
        height: 0.375rem;
        top: 0.125rem;
        right: 0.125rem;
    }
    
    /* Featured products responsive styles */
    .featured-products {
        padding: 2rem 0;
    }
    
    .products-scroll-container {
        margin: 0;
        padding: 0 2rem;
    }
    
    .products-gradient-left,
    .products-gradient-right {
        width: 2rem;
    }
    
    /* Stop auto-scroll on mobile and show navigation arrows */
    /* .products-scroll-wrapper {
        animation: none;
        scroll-behavior: smooth;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    } */
    
    .products-nav-arrow {
        display: flex;
    }
    
    /* .featured-product-card {
        min-width: calc(100vw - 4rem);
        max-width: calc(100vw - 4rem);
        margin-right: 0;
        scroll-snap-align: start;
        flex-shrink: 0;
    } */
    
    .featured-product-card:not(:last-child) {
        margin-right: 1rem;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .product-description {
        font-size: 0.875rem;
    }
    
    .product-button {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .product-badge {
        font-size: 0.625rem;
        padding: 0.25rem 0.5rem;
    }
    
    /* Responsive styles for new sections */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .contact-info-panel,
    .contact-form-panel {
        padding: 1.5rem;
    }
    
    .contact-info-panel .section-title,
    .contact-form-panel .section-title {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .contact-icon svg {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .contact-details h3 {
        font-size: 1rem;
    }
    
    .social-link {
        width: 2rem;
        height: 2rem;
    }
    
    .social-link svg {
        width: 1rem;
        height: 1rem;
    }

    .social-link img {
        width: 1rem;
        height: 1rem;
    }
    
    .contact-title {
        font-size: 1.25rem;
    }
    
    .contact-description {
        font-size: 0.75rem;
    }
    
    .btn.btn-primary {
        height: 2.5rem;
        font-size: 0.75rem;
        padding: 0 1rem;
    }
    
    .map-container {
        height: 20rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-placeholder iframe {
        height: 400px;
    }
    
    .map-info {
        padding: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-section .section-title,
    .map-section .section-title {
        font-size: 2rem;
    }
    
    /* .client-logos-scroll {
        gap: 1.5rem;
    } */
    
    .client-logo {
        width: 6rem;
        height: 3rem;
    }
    
    .cart-float {
        bottom: 6rem;
        right: 1rem;
    }
    
    .cart-btn {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .cart-counter {
        width: 1.25rem;
        height: 1.25rem;
        font-size: 0.625rem;
        top: -0.375rem;
        right: -0.375rem;
    }
    
    .floating-whatsapp {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-whatsapp a {
        width: 3.5rem;
        height: 3.5rem;
    }

    /* Footer mobile styles */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-links li {
        margin-bottom: 0.375rem;
    }

    .footer .contact-item {
        margin-bottom: 0.5rem;
        font-size: 0.8rem;
        justify-content:center;
    }

    .footer .contact-item svg {
        width: 16px;
        height: 16px;
    }

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

    .footer-logo-container {
        margin-bottom: 0.75rem;
    }

    .footer-section p {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    /* Even smaller brand items for very small screens */
    .brand-item {
        width: 4rem;
        height: 3rem;
        padding: 0.375rem;
    }
    
    .brand-logo {
        max-width: 2.5rem;
        max-height: 1.5rem;
    }
    
    .brand-scroll-left,
    .brand-scroll-right {
        gap: 0.75rem;
    }
    
    .brand-rows-container {
        gap: 1rem;
    }
    
    /* Featured products for very small screens */
    /* .featured-product-card {
        min-width: calc(100vw - 3rem);
        max-width: calc(100vw - 3rem);
        margin-right: 0;
        scroll-snap-align: start;
        flex-shrink: 0;
    } */
    
    .featured-product-card:not(:last-child) {
        margin-right: 0.75rem;
    }
    
    .product-description {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .product-button {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .product-badge {
        font-size: 0.5rem;
        padding: 0.125rem 0.375rem;
    }
    
    .products-gradient-left,
    .products-gradient-right {
        width: 1.5rem;
    }
}

/* Catalogues Page Mobile Styles */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0 3rem;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .page-header-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .catalogues-section {
        padding: 2rem 0 3rem;
    }
    
    .section-header h2 {
        font-size: 1.875rem;
    }
    
    .catalogues-grid {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .comprehensive-grid .catalogue-card {
        max-width: 100%;
    }
    
    .products-grid .catalogue-card,
    .applications-grid .catalogue-card {
        max-width: 100%;
    }
    
    .catalogue-content h3 {
        font-size: 0.875rem;
    }
    
    .products-grid .catalogue-content h3,
    .applications-grid .catalogue-content h3 {
        font-size: 0.75rem;
    }
}

/* Product Enquiry Page Styles */
.enquiry-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.enquiry-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}



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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.form-input,
.form-textarea {
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

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

.file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    border: 2px dashed #d1d5db;
    border-radius: 0.5rem;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
    font-weight: 500;
}

.file-upload-label:hover {
    border-color: #dc2626;
    background: #fef2f2;
    color: #dc2626;
}

.form-help {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
}

.checkbox-input {
    margin: 0;
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #dc2626;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkbox-custom {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-radius: 0.25rem;
    position: relative;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-primary:not(.btn.btn-primary) {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

.btn-primary:not(.btn.btn-primary):hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background: #ffffff;
    color: #dc2626;
    border: 1px solid #dc2626;
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /*margin: 0.5rem 0;*/
    text-decoration: none;
}

.btn-secondary:hover {
    background: #f1f5f9;
}

.btn-secondary-40 {
    background: #ffffff;
    color: #dc2626;
    border: 1px solid #dc2626;
    padding: 1rem 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /*margin: 0.5rem 0;*/
    text-decoration: none;
    width: 40%;
}
.btn-secondary-40 svg {
    fill: #dc2626;
    width: 30px;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.btn-secondary-40:hover {
    background: #f1f5f9;
    color: #1f2937;
}
.btn-secondary-40:hover svg {
    fill: #1f2937;
}

/* Products in Enquiry Section */
.enquiry-products-section {
    padding: 4rem 0;
    background: white;
}

.enquiry-products-list {
    display: table;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.enquiry-product-item {
    display: table-row;
    transition: all 0.3s ease;
}

.enquiry-product-item:nth-child(even) {
    background: #f9fafb;
}

.enquiry-product-item:hover {
    background: #fef2f2;
}

.enquiry-table-image {
    display: table-cell;
    width: 120px;
    padding: 1rem;
    vertical-align: middle;
    text-align: center;
}

.enquiry-table-image .image-container {
    width: 80px;
    height: 80px;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #f9fafb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.enquiry-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.25rem;
}

.product-details {
    display: table-cell;
    padding: 1rem 1.5rem;
    vertical-align: middle;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.product-description {
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    font-size: 0.875rem;
}

.remove-btn-cell {
    display: table-cell;
    width: 80px;
    padding: 1rem;
    vertical-align: middle;
    text-align: center;
}

.remove-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: #fecaca;
    transform: scale(1.1);
}

.remove-btn:active {
    transform: scale(0.95);
}

/* Animations */
@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .enquiry-form-container {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .remove-btn {
        align-self: center;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .enquiry-section,
    .enquiry-products-section {
        padding: 2rem 0;
    }
    
    .enquiry-form-container {
        padding: 1.5rem 1rem;
    }
    
    .product-name {
        font-size: 1.125rem;
    }
    
    .product-description {
        font-size: 0.875rem;
    }
}

/* Utility for hiding elements */
.hidden {
    display: none;
}

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

/* Footer social links: right-align and consistent large icon size */
.footer .social-links {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

.footer .social-links img,
.footer .social-links svg {
    width: 40px;
    height: 40px;
}

/* Ensure mobile also right-aligns */
@media (max-width: 1024px) {
    .footer .social-links {
        justify-content: center;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

/* Brand Selection Sidebar Styles */
.brand-selection {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom Red Scrollbar Styles */
.brand-selection::-webkit-scrollbar {
    width: 8px;
}

.brand-selection::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.brand-selection::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.brand-selection::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

/* General scrollbar styling for other scrollable elements */
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

*::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 4px;
    transition: background 0.2s ease;
}

*::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

/* Firefox scrollbar styling */
* {
    scrollbar-width: thin;
    scrollbar-color: #dc2626 #f1f1f1;
}

/* Product Details Page Styles */
.breadcrumb-container {
    background: #f8fafc;
    padding: 0.4rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #dc2626;
}

.breadcrumb-separator {
    color: #94a3b8;
}

.breadcrumb-current {
    color: #1e293b;
    font-weight: 500;
}

.product-details-section {
    padding: 3rem 0;
}

.product-image-container {
    position: sticky;
    /*top: 2rem;*/
    width: 100%;
    height: auto;
    overflow: visible;
}

.product-image-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

#product-big .item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 1/1;
}
#product-big .owl-nav {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
#product-big .owl-nav button.owl-prev {
    position: absolute;
    left: 0;
}
#product-big .owl-nav button.owl-next {
    position: absolute;
    right: 0;
}
#product-big .owl-nav button {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background: rgba(255,255,255,0.7);
    border: 1px solid #cecece;
    display: flex;
    align-items: center;
    justify-content: center;
}
#product-big .owl-nav button svg {
    width: 20px;
    height: 20px;
}
#product-thumbs {
    margin-top: 15px;
}
#product-thumbs .item {
    height: 120px;
    padding: 4px;
    cursor: pointer;
}
#product-thumbs .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 8px;
}
#product-thumbs .owl-item.current .item img {
    border: 2px solid #dc2626;
}

/* Products page - 1:1 aspect ratio images */
.products-grid .products-page-image {
    width: 100%;
    height: auto;
   aspect-ratio: 5 / 3;
    object-fit: contain;
    border-radius: 8px;
}

/* Product details page specific styling */
.product-details-section .product-details-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    position: static;
    background: transparent;
}

.product-info-container {
    padding: 1rem 0;
}

.product-name {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.product-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.brand-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 6px;
    background: #ffffff;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.product-specifications {
    margin-bottom: 2.5rem;
}

.specifications-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dc2626;
}

.specifications-list {
    display: grid;
    gap: 1rem;
}

.specification-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.specification-item:hover {
    border-color: #dc2626;
    box-shadow: 0 2px 4px -1px rgba(220, 38, 38, 0.1);
}

.spec-label {
    font-weight: 600;
    color: #374151;
}

.spec-value {
    color: #1e293b;
}

.product-actions {
    margin-top: 1rem;
}

.enquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dc2626;
    color: #ffffff;
    border: none;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.3);
}

.enquiry-btn:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px -1px rgba(220, 38, 38, 0.4);
}

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

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #ffffff;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    padding: 2rem;
    position: relative;
}

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

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Removed duplicate .btn-primary and .btn-secondary - consolidated below */

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Close button styling */
.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: #6b7280;
    cursor: pointer;
    background: none;
    border: none;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close:hover {
    background: #f3f4f6;
    color: #374151;
}

/* Modal title styling */
.modal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    
    .product-image-container {
        position: static;
    }
    
    .product-name {
        font-size: 1.875rem;
    }
    
    .specification-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .product-details-section {
        padding: 2rem 0;
    }
    
    .product-image-wrapper {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .brand-logo {
        width: 50px;
        height: 50px;
    }
    
    .brand-name {
        font-size: 1.125rem;
    }
    
    .specifications-title {
        font-size: 1.25rem;
    }
    
    .enquiry-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .btn-secondary,
    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

.brand-checkbox-item {
    margin-bottom: 0.25rem;
}

.brand-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.375rem 0.5rem;
    transition: all 0.2s ease;
    background: transparent;
}

.brand-checkbox-label:hover {
    background: #f9fafb;
}

.brand-checkbox {
    display: none;
}

.brand-checkbox-custom {
    width: 16px;
    height: 16px;
    border: 2px solid #d1d5db;
    border-radius: 3px;
    margin-right: 0.5rem;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.brand-checkbox:checked + .brand-checkbox-custom {
    background: #dc2626;
    border-color: #dc2626;
}

.brand-checkbox:checked + .brand-checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.brand-checkbox-logo {
    display: none;
}

.brand-checkbox-text {
    font-size: 0.8rem;
    font-weight: 400;
    color: #374151;
    line-height: 1.3;
}

.brand-checkbox:checked + .brand-checkbox-custom + .brand-checkbox-logo + .brand-checkbox-text {
    color: #dc2626;
    font-weight: 500;
}

.clear-all-btn {
    background: #ffffff;
    color: #dc2626;
    border: 1px solid #dc2626;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
    flex-shrink: 0;
}

.clear-all-btn:hover {
    background: #e5e7eb;
    color: #374151;
}

.no-products-message {
    text-align: center;
    color: #6b7280;
    font-size: 1.125rem;
    padding: 3rem 1rem;
    background: #f9fafb;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Brand selection responsive styles */
@media (max-width: 768px) {
    .brand-checkbox-label {
        padding: 0.25rem 0.5rem;
    }
    
    .brand-checkbox-logo {
        display: none;
    }
    
    .brand-checkbox-text {
        font-size: 0.75rem;
    }
    
    .brand-selection {
        max-height: 350px;
    }
}

/* Two-Column Layout for Product Details Page */
.main-content-section {
    padding: 2rem 0;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem 4rem;
    align-items: start;
}

.left-column {
    position: sticky;
    top: 2rem;
}

.right-column {
    min-height: 100vh;
    overflow: hidden;
}

/* Product Details Container - Nested Two-Column Layout */
.product-details-container {
    /* display: grid;
    grid-template-columns: repeat(2, 1fr); */
    display: flex;
    gap: 3rem;
    align-items: start;
}
/* @media (max-width:600px){
   .product-details-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
   } 
} */

.product-details-container .product-video {
    margin-top: 20px;
    background: #ffffff;
    border-radius: 12px;
    padding: 0.8rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.product-details-container .product-video iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 12px;
}

.product-image-section {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 123px;
}
@media (max-width:992px){
    .product-image-section {
        position: relative;
        top: auto;
    }
}
.product-info-section {
    width: calc(100% - 400px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
@media (max-width:992px){
   .product-details-container {
    flex-wrap: wrap;
   } 
   .product-image-section {
    width: 100%;
   }
   .product-info-section {
    width: 100%;
   }
}
.product-info-section .product-specification h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin-bottom: 15px;
}
.product-info-section .product-specification h2 {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin-bottom: 10px;
}
.product-info-section .product-specification h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin-bottom: 10px;
}
.product-info-section .product-specification h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin-bottom: 10px;
}
.product-info-section .product-specification p {
    margin-bottom: 10px;
}
.product-info-section .product-specification ul,
.product-info-section .product-specification ol {
    margin: 0 0 0 17px;
    padding: 0;
}

/* Square Product Image - Product Details Page Only */
.product-details-container .product-details-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Brand Logo Overlay */
.brand-logo-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    z-index: 2;
}

.brand-logo-overlay-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

/* All Brands Page Styles */
.brands-section {
    padding: 3rem 0;
    background-color: #f8fafc;
}

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

.brand-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #ffcf69;
}

.brand-logo-container {
    width: 100%;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
    transition: border-color 0.3s ease;
}

.brand-card:hover .brand-logo-container {
    border-color: #ffcf69;
}

.brand-logo {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.brand-info {
    margin-top: 1rem;
}

.brand-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.3rem 0;
    line-height: 1.4;
}

.brand-product-count {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

.page-header {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 2rem 0 3rem;
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: white;
}

.page-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .left-column {
        position: static;
        order: 2;
    }
    
    .right-column {
        order: 1;
        min-height: auto;
    }
    
    /* All Brands responsive styles */
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .brand-logo-container {
        width: 100%;
        height: 100px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .brands-section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .brand-card {
        padding: 1rem;
    }
    
    .brand-logo-container {
        width: 100%;
        height: 80px;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .brand-product-count {
        font-size: 0.75rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-header {
        padding: 3rem 0 2rem;
    }
}

/* Career Page Styles */
.career-section {
    padding: 4rem 0;
}

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

.job-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #dc2626;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #b91c1c);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.job-type {
    background: #fef3c7;
    color: #92400e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.job-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.job-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.info-item strong {
    color: #374151;
    font-weight: 600;
}

.job-description {
    margin-bottom: 1.5rem;
}

.job-description h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
}

.job-description p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.job-requirements {
    flex: 1;
    margin-bottom: 2rem;
}

.job-requirements h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-requirements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #6b7280;
    line-height: 1.5;
}

.job-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.apply-btn {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: auto;
}

.apply-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Career page specific styling */
body.career-page .apply-btn,
.career-section .apply-btn {
    margin-bottom: 1.5rem;
}

/* Submit button styling to match apply button */
.btn-primary {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
   
}

.btn-primary-yellow {
    background: #ffcf69;
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
   
}

.btn-primary-yellow:hover {
    background: #f5c842;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 207, 105, 0.3);
}

.primaryBt_product {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.primaryBt_product:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1rem 0;
    text-align: center;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin: 0;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Responsive Design for Career Page */
@media (max-width: 768px) {
    .career-section {
        padding: 2rem 0;
    }
    
    .job-listings {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .job-card {
        padding: 1.5rem;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-title {
        font-size: 1.25rem;
    }
    
    .job-info {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Clients Page Styles */
.page-header {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 2rem 2rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.client-stats {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin: 2rem 0;
    border-radius: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.client-categories {
    margin: 3rem 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.tab-btn.active {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.client-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

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

.client-logo {
    width: 100%;
    height: auto;
    background: #fff;
    border-radius: 0.5rem;
    text-align: center;
    padding: 15px 0;
    border: 1px solid #e5e7eb;
}
.client-logo img {
    height: 80px;
    object-fit: contain;
}
.client-logo2 {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 20px;
    border-radius: 0.5rem;
}

.client-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    text-align: center;
}

.client-type {
    color: #dc2626;
    font-weight: 500;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 1rem;
}

.client-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: center;
}

.testimonials {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    margin: 3rem 0;
    border-radius: 1rem;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
.testimonial-author strong {
    color: #111827;
}

/* Responsive styles for full-width sections */
@media (max-width: 768px) {
    .find-us-section {
        padding: 3rem 0;
    }
    
    .section-header .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .map-container {
        height: 350px;
        border-radius: 1.5rem;
        margin: 0 1rem;
    }
    
    .map-overlay {
        bottom: 1rem;
        right: 1rem;
    }
    
    .directions-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .directions-btn svg {
        width: 1rem;
        height: 1rem;
    }
    
    .faq-accordion {
        padding: 0 1rem;
    }
    
    .faq-item {
        margin-bottom: 0.5rem;
    }
    
    .faq-question {
        font-size: 1.125rem;
        padding: 1rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-tabs {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Enquiry Page Styles */
.enquiry-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.enquiry-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.enquiry-form {
    display: flex;
    flex-direction: column;
   
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    padding: 0.875rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.file-upload-container {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-upload-label:hover {
    border-color: #007bff;
    background: #f0f8ff;
}

.upload-icon {
    width: 32px;
    height: 32px;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.file-upload-label span {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.file-upload-label small {
    color: #6b7280;
    font-size: 0.875rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #007bff;
    border-color: #007bff;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Removed final duplicate .btn-primary and .btn-secondary - consolidated below */

/* Products Under Enquiry Section */
.enquiry-products-section {
    padding: 4rem 0;
    background: white;
}

.enquiry-products-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem;
}

.enquiry-product-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.enquiry-product-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.enquiry-flex-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-details {
    flex: 1;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

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

.remove-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: #dc3545;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #c82333;
    transform: scale(1.05);
}

.remove-btn svg {
    width: 20px;
    height: 20px;
}

/* Animations */
@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

/* Mobile Responsiveness for Enquiry Page */
@media (max-width: 768px) {
    .enquiry-form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .enquiry-product-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .enquiry-flex-image {
        width: 100px;
        height: 100px;
    }
    
    .remove-btn {
        align-self: center;
    }
}

/* Products Scroll Container */
.products-scroll-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    padding: 0 2rem 2rem;
}

/* Gradient Overlays */
.products-gradient-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6rem;
    background: linear-gradient(to right, #111827, transparent);
    z-index: 10;
    pointer-events: none;
}

.products-gradient-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 6rem;
    background: linear-gradient(to left, #111827, transparent);
    z-index: 10;
    pointer-events: none;
}

/* Products Scroll Wrapper */
/* .products-scroll-wrapper {
    display: flex;
    gap: 1.5rem;
    animation: scroll-products 30s linear infinite;
    width: calc(12 * (400px + 24px));
} */

/* .products-scroll-wrapper:hover {
    animation-play-state: paused;
} */
.products-scroll-wrapper .featured-product-card .product-content .product-title {
    color: #fff;
}

@keyframes scroll-products {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-6 * (400px + 24px)));
    }
}

/* Product Card */
/* Homepage featured product cards - different from products page */
.featured-product-card {
    flex-shrink: 0;
    /* width: 400px; */
    height: 480px;
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.8s ease;
    font-family: 'Inter', sans-serif;
}

.featured-product-card:hover {
    /* transform: translateY(-8px); */
    box-shadow: 0 25px 50px -12px rgba(251, 191, 36, 0.1);
    border-color: #fbbf24;
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #fbbf24;
    color: #7c2d12;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 50%;
    z-index: 5;
}

/* Featured Product Image Container - Updated */
.featured-product-card .product-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #1f2937;
}

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

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

/* Product Content */
.product-content {
    padding: 1rem;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #343434;
    margin-bottom: 0.25rem;
    line-height: 1.4;
    height: 51px;
    overflow: hidden;
}

.product-description {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-link {
    display: inline-flex;
    align-items: center;
    background-color: #dc2626;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.product-link:hover {
    background-color: #b91c1c;
}

/* Navigation Arrows */
.products-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: rgba(31, 41, 55, 0.9);
    border: 1px solid #374151;
    border-radius: 0.75rem;
    color: #ffffff;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.products-nav-arrow:hover {
    background-color: #fbbf24;
    color: #7c2d12;
    border-color: #fbbf24;
    transform: translateY(-50%) scale(1.1);
}

.products-nav-left {
    left: 1rem;
}

.products-nav-right {
    right: 1rem;
}
/* Standalone H2 gradient title (isolated) */
h2.h2-gradient-title {
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Ensure nested accent spans don’t override gradient in headings */
.h2-gradient-title .text-accent {
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}

/* Ensure gradient title takes precedence over parent .section-title variants */
.section-title.h2-gradient-title,
.section-header .section-title.h2-gradient-title,
.featured-products .section-title.h2-gradient-title {
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
/* Override gradient text for section titles on dark backgrounds */
.featured-products .section-header .section-title {
    color: #ffffff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
}

/* Black-Red combination for specific section titles */
.categories-section .section-header .section-title,
.brand-showcase .section-header .section-title,
.trusted-by-section .section-header .section-title {
  color: #111827;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
}
.categories-section .section-header .section-title .text-accent,
.brand-showcase .section-header .section-title .text-accent,
.trusted-by-section .section-header .section-title .text-accent,
.testimonials-section .section-header .section-title .text-accent {
  color: #dc2626 !important;
  -webkit-text-fill-color: #dc2626 !important;
}

/*Testimonials Section*/
.testimonials-section {
    padding: 3rem 0;
}
.testimonials-section .testimonials-list {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
}
.testimonials-section .testimonials-list  .testimonials-item {
    padding:20px;
    background:#f9fafb;
    border-radius: 8px;
}
.testimonials-section .testimonials-list  .testimonials-item .thumb-name {
    display:flex;
    align-items:center;
    justify-content:start;
    column-gap:15px;
    margin-bottom:10px;
}
.testimonials-section .testimonials-list  .testimonials-item .thumb-name .name h5 {
    font-size:16px;
    font-weight:700;
}
.testimonials-section .testimonials-list  .testimonials-item .thumb-name .name .deg {
    font-size:14px;
}
.testimonials-section .testimonials-list  .testimonials-item .thumb-name .thumb img {
    width:50px;
    height:50px;
    border-radius:4px;
    object-fit:cover;
}
.testimonials-section .testimonials-list  .testimonials-item .msg p {
    font-size:14px;
}

@media (max-width:992px){
    .breadcrumb {
        flex-wrap: wrap;
        gap: 5px;
    }
    .subcategory-header {
        flex-wrap: wrap;
        row-gap: 15px;
        margin-bottom: 25px;
    }
    .subcategory-title h3 {
        line-height: 1.2;
    }
}
@media (min-width:1025px){
    
}
@media (max-width:1024px){
    .nav-controls .desktop-nav {
        display: none;
    }
}

.subscribe-sec {
    position: relative;
    background: #bc1d1d;
    padding: 50px 0;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
}
.subscribe-sec .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}
.subscribe-sec .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home .subscribe-sec {
    background: #2e3641;
}
.subscribe-sec .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
}
.subscribe-sec .content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.subscribe-sec .section-title {
    color: #fff;
    margin-bottom: 15px;
}
.subscribe-sec .section-title .text-accent {
    color: #fbbf24;
}
.subscribe-sec p {
    color: #fff;
}
.subscribe-sec .content #subscribe-Form {
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px auto 0;
}
.subscribe-sec .content #subscribe-Form input {
    width: 100%;
    height: 3rem;
    padding: 0 1rem;
    background-color: #fff;
    color: #7c2d12;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.75rem;
    border: 0;
    outline: 0;
}
.subscribe-sec .content #subscribe-Form input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.subscribe-sec .subscribe-btn {
    height: 3rem;
    padding: 0 2rem;
    background-color: #fff;
    color: #7c2d12;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    pointer-events: auto;
    text-transform: uppercase;
    white-space: nowrap;
}
.subscribe-sec .subscribe-btn:hover {
    background-color: #fbbf24;
}
#subscribeModal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}
.pagination-wrapper span {
    background: #ffd989;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination-wrapper span.dots {
    background: transparent;
}
.pagination-wrapper a {
    width: 35px;
    height: 35px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #333;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-out;
}
.pagination-wrapper a:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    color: #fff;
}
.pagination-wrapper a.next {
    width: auto;
    padding: 0 10px;
}
.pagination-wrapper a.prev {
    width: auto;
    padding: 0 10px;
}
.category-tab-menu {
    margin-bottom: 50px;
    transition: all 0.3s ease-out;
}
.category-tab-menu.scrolled {
    position: fixed;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 100%;
    background: #fff9eb;
    padding: 0;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}
.category-tab-menu.scrolled .products-sub-tab-menu {
    padding: 10px;
}
.products-sub-tab-menu {
	display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}
.products-sub-tab-btn {
    font-size: 0.82rem;
    font-weight: 400;
    margin: 0;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 0.5rem;
    padding: 5px 12px;
    border-radius: 40px;
	border-radius: 30px;
	cursor: pointer;
	user-select: none;
	transition: background-color .3s ease;
}
.products-sub-tab-btn:hover {
	background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
}
.products-sub-tab-btn.active {
	background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
}

.products-sidebar #closerr, #toggleBtn {
    display: none;
}
#toggleBtn {
    position: fixed;
    right: 0;
    top: 30%;
    background: #db251b;
    border-radius: 7px 0 0 7px;
    padding: 12px 7px;
    line-height: 1;
    z-index: 100;
    text-align: center;
}
#toggleBtn svg {
    width: 23px;
    height: 23px;
    fill: #fff;
}
#toggleBtn span {
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    display: block;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}
.social-share h5 {
    font-size: 20px;
}
.social-share .social {
    display: flex;
    align-items: center;
    gap: 5px;
}
.social-share .social a {
    width: 35px;
    height: 35px;
    transition: all 0.3s ease-out;
}
.social-share .social svg {
    width: 35px;
    fill: #dc2626;
    transition: all 0.3s ease-out;
}
.social-share .social a:hover svg {
    fill: #111827;
}

.products-page-card {
    position: relative;
}
.card-share {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 10;
}
.card-share .social {
    opacity: 0;
    visibility: hidden;
    flex-direction: column;
    gap: 5px;
    background: #fff;
    padding: 5px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    transition: all 0.3s ease-out;
}
.card-share .social.open {
    opacity: 1;
    visibility: visible;
}
.card-share .social a {
    width: 30px;
    height: 30px;
}
.card-share .social a svg {
    width: 30px;
    fill: #dc2626;
    transition: all 0.3s ease-out;
}
.card-share .social a:hover svg {
    fill: #b91c1c;
    transform: scale(1.07);
}
.card-share .social-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
    padding: 0 6px 0 0;
}
.card-share .social-toggle svg {
    width: 30px;
    fill: #dc2626;
}
.card-share .social-toggle span {
    font-size: 13px;
}
/* .card-share .social-toggle:hover + .social {
    opacity: 1;
    visibility: visible;
} */
@media (min-width:1024px){
    .header-icons #mobile-menu-btn {
        display:none;
    }
}
@media (max-width:1024px){
    .header-icons #mobile-menu-btn {
        display:block;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-column: 1 / -1;
    }
    .product-details-container {
        flex-direction: column;
    }
    .product-details-container .product-actions {
        flex-direction: column;
    }
    .product-image-section, .product-info-section {
        width: 100%;
    }
    .product-image-section {
        top: auto;
        position: relative;
    }
    .subscribe-sec .container {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 20px;
    }
    .category-tab-menu {
        margin-bottom: 20px;
    }
    .subscribe-sec .content #subscribe-Form {
        flex-direction: column;
    }
    .btn-secondary-40 {
        width: auto;
    }
    .product-title {
        height: auto;
        overflow: visible;
        font-size: 1rem;
    }
    .category-tab-menu.scrolled {
        top: 81px;
    }
    .catalogues-grid {
        gap: 1rem;
        padding: 0 1rem;
    }
    .comprehensive-grid .catalogue-card {
        max-width: calc(50% - 0.5rem);
    }
    .brand-section-wrapper {
        gap: 1rem;
    }
    .brand-slider-track {
        padding: 0;
    }
    .brand-slider-container {
        max-width: 100%;
    }
    .brand-title-column {
        width: auto;
    }
}
@media (max-width:992px) {
    .page-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    .section-header .section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    .section-header {
        margin-bottom: 1rem;
    }
    .products-sidebar #closerr, #toggleBtn {
        display: block;
    }
    #products-sidebar.open {
        opacity: 1;
        left: 0;
    }
    .products-sidebar {
        opacity: 0;
        position: fixed;
        top: 0;
        left: 100vw;
        width: 100%;
        height: 100vh;
        z-index: 1000;
        transition: all 0.3s ease-out;
    }
    .products-sub-tab-btn {
        font-size: 0.7rem;
        padding: 5px 12px 2px;
    }
    .products-sidebar #closerr {
        position: fixed;
        top: 1rem;
        right: 1rem;
        cursor: pointer;
        width: 30px;
        height: 30px;
    }
    .products-sidebar #closerr svg {
        width: 30px;
        height: 30px;
        fill: #333;
    }
    body.no-scroll {
        overflow: hidden;
    }
    .enquiry-products-list {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    .enquiry-product-item {
        flex-direction: row;
        text-align: left;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    .enquiry-table-image {
        width: 80px;
        height: 80px;
        padding: 0.5rem;
    }
    .product-details {
        padding: 0.5rem;
    }
    .product-name {
        font-size: 0.9rem;
    }
    .remove-btn-cell {
        padding: 0.5rem;
        width: auto;
    }
    .enquiry-table-image .image-container {
        width: 100%;
        height: 100%;
    }
}
@media (max-width:480px){
    .product-info {
        padding: 0.5rem;
    }
    .product-actions {
        margin-top: 0.5rem;
        flex-direction: column;
        padding: 0;
    }
    .primaryBt_product {
        padding: 0.7rem 1.2rem;
        width: 100%;
    }
    .btn-secondary-40 {
        padding: 0.7rem 1.2rem;
    }
    .brand-logo-overlay {
        bottom: 0.6rem;
        left: 0.6rem;
        width: 50px;
        height: 50px;
    }
    .product-title {
        font-size: 0.88rem;
        line-height: 1.3;
    }
    .card-share .social-toggle svg {
        width: 20px;
    }
    .card-share .social-toggle span {
        font-size: 10px;
    }
    .social-share {
        flex-direction: column;
    }
    .comprehensive-grid .catalogue-content {
        padding: 0.5rem;
        line-height: 1.2;
    }
}

.related-products {
    margin-top: 60px;
}
.related-products .related-item {
    padding: 8px 8px 16px;
}
.related-products .head {
    margin-bottom: 20px;
}
.related-products h2 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    color: #333;
    margin: 0;
    text-transform: capitalize;
    padding-bottom: 15px;
}
.related-products .owl-nav {
    margin: 0;
    position: absolute;
    top: -75px;
    right: 0;
}
.related-products .owl-nav button {
    font-size: 30px !important;
    background-color: transparent !important;
    height: auto;
}
.related-products .owl-nav button span {
    color: #333;
    line-height: 1;
    display: block;
    height: auto;
}
.select2-container .select2-selection--single {
    height: 43px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 6px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 43px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 43px !important;
    right: 10px !important;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
    margin-right: 35px !important;
    height: 43px !important;
}
.select2-search--dropdown .select2-search__field {
    padding: 10px !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #dc2626 !important;
}

#search-box {
    display: none;
    width: 100%;
    background: #ffe7b5;
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
}
#search-box.open {
    display:block;
}
#search-box .search-input {
    background: rgba(255,255,255,0.7);
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 16px;
    color: #000;
    outline:0;
}
#search-box .search-input:focus {
    border: 1px solid #444;
}
#search-box .search-btn-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 15;
    height: 50px;
    width: 50px;
}