/* style.css - Main Stylesheet for Build Master Website */

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

:root {
    --primary-color: #0d47a1;     /* Deep Blue */
    --secondary-color: #009688;   /* Teal */
    --accent-color: #ff9800;      /* Orange */
    --light-color: #f4f6f8;       /* Soft background */
    --dark-color: #1f2937;
    --gray-color: #6b7280;
    --light-gray: #e5e7eb;
    --success-color: #22c55e;
    --warning-color: #f59e0b;

    --shadow: 0 6px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 35px rgba(0,0,0,0.15);

    --transition: all 0.3s ease;
    --border-radius: 10px;
    --border-radius-lg: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-color);
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 0;
}


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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    background-color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    
background-color: var(--accent-color);
    color: white;
}

.logo-text h1 {
    font-size: 24px;
    margin-bottom: 5px;
    color: white;
}

.logo-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 20px;
}

.contact-item p:first-child {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item p:last-child {
    font-size: 16px;
    font-weight: 500;
}

/* Navigation Styles */
.navbar {
    background-color: var(--primary-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}


.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 15px 0;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    color: white;
    font-weight: 500;
}

.nav-menu a:hover, .nav-menu a.active {
    background-color: var(--primary-color);
    color: white;background-color: var(--accent-color);
    color: white;
}

.nav-menu a i {
    font-size: 14px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    color: white;
    max-width: 800px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
}

.slider-controls button {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.slider-controls button:hover {
    background-color: var(--secondary-color);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: #1a252f;
    transform: translateY(-3px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

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

.section-subtitle {
    color: var(--gray-color);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.category-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-color);
    font-size: 30px;
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.category-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.category-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

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

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

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.btn-view {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
}

.product-info {
    padding: 20px;
}

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

.product-info p {
    color: var(--gray-color);
    margin-bottom: 15px;
    font-size: 14px;
}

.product-specs {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray-color);
}

.product-specs i {
    margin-right: 5px;
    color: var(--accent-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(
        rgba(13, 71, 161, 0.95),
        rgba(0, 150, 136, 0.95)
    );
    color: white;
    padding: 70px 0;
    text-align: center;
}


.page-header h1 {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Products Page */
.products-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--light-gray);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

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

.product-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    padding: 30px;
}

.product-image-large {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.product-image-large img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.product-details-large h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
    color: var(--warning-color);
}

.product-description {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.product-specifications h4 {
    margin-bottom: 15px;
}

.product-specifications ul {
    list-style: none;
    margin-bottom: 25px;
}

.product-specifications li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.product-specifications li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Product Detail Page */
.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.product-gallery .main-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.thumbnail-images {
    display: flex;
    gap: 15px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
}

.thumbnail.active, .thumbnail:hover {
    border-color: var(--secondary-color);
}

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

.product-info-detail h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.product-highlights {
    margin: 25px 0;
}

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

.product-highlights li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-highlights i {
    color: var(--success-color);
}

.product-specs-detail {
    margin: 25px 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--light-gray);
}

.specs-table td {
    padding: 12px 0;
}

.specs-table td:first-child {
    font-weight: 500;
    width: 40%;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Tabs */
.product-tabs {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tab-headers {
    display: flex;
    border-bottom: 1px solid var(--light-gray);
}

.tab-header {
    padding: 20px 30px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.tab-header.active, .tab-header:hover {
    border-bottom-color: var(--secondary-color);
    color: var(--secondary-color);
}

.tab-content {
    padding: 30px;
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-mission, .about-vision {
    margin: 25px 0;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.about-mission h3, .about-vision h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.about-mission i {
    color: var(--secondary-color);
}

.about-vision i {
    color: var(--accent-color);
}

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

.feature-card {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-color);
    font-size: 30px;
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-details {
    margin: 30px 0;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-detail-item .contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 20px;
    flex-shrink: 0;
}

.store-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 30px;
}

.store-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.contact-form-section {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form-section h2 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

.map-section {
    margin-top: 60px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.map-placeholder {
    height: 400px;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Animations */
.animate-text {
    animation: slideInLeft 1s ease;
}

.animate-text-delay {
    animation: slideInLeft 1s ease 0.3s both;
}

.animate-btn {
    animation: slideInLeft 1s ease 0.6s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-card-large,
    .product-detail-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-info {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-menu {
        position: fixed;
        top: 140px;
        left: -100%;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        transition: var(--transition);
        box-shadow: var(--shadow);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 15px;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .tab-headers {
        flex-direction: column;
    }
    
    .tab-header {
        text-align: left;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .tab-header.active {
        border-left-color: var(--secondary-color);
        border-bottom-color: transparent;
    }
    /* Catalogue Page Styles */
.catalogue-filter {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

.search-box input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 30px;
    font-size: 16px;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--secondary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background-color: #c0392b;
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.catalogue-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.5s ease;
}

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

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

.catalogue-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.catalogue-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.catalogue-info {
    padding: 25px;
}

.catalogue-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.catalogue-description {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.catalogue-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--gray-color);
}

.catalogue-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.catalogue-details i {
    color: var(--accent-color);
}

.catalogue-actions {
    display: flex;
    gap: 10px;
}

.btn-view, .btn-download {
    flex: 1;
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
}

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

.btn-view:hover {
    background-color: #2980b9;
}

/* Catalogue Modal */
.catalogue-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.catalogue-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    animation: slideInUp 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: var(--primary-color);
    color: white;
}

.modal-header h3 {
    color: white;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

.preview-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.preview-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.preview-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.preview-info h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.preview-info p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.preview-details {
    margin-bottom: 30px;
}

.preview-details span {
    display: block;
    margin-bottom: 10px;
    color: var(--gray-color);
    font-size: 14px;
}

.preview-actions {
    display: flex;
    gap: 15px;
}

/* Request Catalogue Section */
.request-catalogue {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
    padding: 50px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin-top: 30px;
}

.request-content h3 {
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
}

.request-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Catalogue Animation Classes */
.catalogue-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.catalogue-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles for Catalogue Page */
@media (max-width: 992px) {
    .catalogue-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .preview-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .catalogue-filter {
        padding: 20px;
    }
    
    .filter-options {
        justify-content: center;
    }
    
    .catalogue-grid {
        grid-template-columns: 1fr;
    }
    
    .request-catalogue {
        padding: 30px 20px;
    }
    
    .request-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .catalogue-actions {
        flex-direction: column;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .preview-actions {
        flex-direction: column;
    }
}
}/* ==================== NEW PRODUCT PAGE STYLES ==================== */

/* Products Filter Section */
.products-filter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px 0;
    border-bottom: 1px solid #dee2e6;
}

.products-filter-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.quick-categories h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 18px;
}

.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-chip {
    padding: 8px 20px;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #495057;
}

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

.category-chip.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.advanced-search {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.search-box {
    display: flex;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.search-box button {
    padding: 12px 25px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: #2980b9;
}

.search-info {
    margin-top: 10px;
    font-size: 14px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.stat-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.stat-item i {
    font-size: 24px;
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
    display: block;
}

/* Products Grid Section */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f4;
}

.products-header h2 {
    color: var(--primary-color);
    font-size: 28px;
}

.view-controls {
    display: flex;
    gap: 5px;
    background: #f8f9fa;
    padding: 5px;
    border-radius: 8px;
}

.view-btn {
    padding: 8px 15px;
    background: transparent;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    color: #6c757d;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.view-btn.active {
    background: white;
    color: var(--accent-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.loading-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.loading-products i {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.product-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.product-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn-view {
    background: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    align-self: flex-start;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
    line-height: 1.4;
}

.product-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 12px;
}

.product-specs span {
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #495057;
}

.product-specs i {
    color: var(--accent-color);
    font-size: 10px;
}

.product-price {
    margin-bottom: 15px;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.product-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.page-btn {
    padding: 10px 20px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.page-numbers {
    display: flex;
    gap: 5px;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number:hover {
    background: #f8f9fa;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.page-number.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.dots {
    padding: 0 10px;
    color: #6c757d;
}

/* Featured Brands */
.featured-brands {
    padding: 60px 0;
}

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

.brand-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.brand-card i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.brand-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.brand-card p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* ==================== PRODUCT DETAIL PAGE STYLES ==================== */

/* Breadcrumb */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 12px;
}

/* Product Detail Container */
.product-detail-container {
    min-height: 500px;
}

.loading-detail {
    text-align: center;
    padding: 100px 20px;
    color: #6c757d;
}

.loading-detail i {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--accent-color);
}

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

/* Product Info Detail */
.product-header {
    margin-bottom: 30px;
}

.product-breadcrumb {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
}

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

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

.product-header h1 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
}

.product-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6c757d;
}

.product-meta i {
    color: var(--accent-color);
}

.product-description-full {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dee2e6;
}

.product-description-full h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.product-description-full p {
    line-height: 1.8;
    color: #495057;
    font-size: 16px;
}

.product-specifications {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dee2e6;
}

.product-specifications h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #f1f3f4;
}

.specs-table td {
    padding: 12px 0;
    vertical-align: top;
}

.specs-table td:first-child {
    width: 40%;
    font-weight: 500;
    color: var(--primary-color);
}

.product-features {
    margin-bottom: 30px;
}

.product-features h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.product-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.product-features li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--success-color);
}

.product-actions-detail {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.price-section h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.price-section p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.action-buttons .btn-large {
    flex: 2;
    padding: 15px 25px;
    font-size: 16px;
}

.action-buttons .btn-secondary {
    flex: 1;
    padding: 15px 25px;
}

/* Related Products */
.related-products {
    padding: 60px 0;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.loading-related {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.loading-related i {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

/* Inquiry CTA */
.inquiry-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.inquiry-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.inquiry-text h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.inquiry-text p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 25px;
}

.inquiry-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #495057;
}

.feature i {
    color: var(--accent-color);
}

.inquiry-form h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.inquiry-form .form-group {
    margin-bottom: 15px;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.inquiry-form textarea {
    resize: vertical;
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 100px 20px;
    color: #dc3545;
}

.error-message i {
    font-size: 60px;
    margin-bottom: 20px;
    color: #dc3545;
}

.error-message h3 {
    margin-bottom: 15px;
    color: #dc3545;
}

.error-message p {
    color: #6c757d;
    margin-bottom: 25px;
}

/* No Products */
.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.no-products i {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.no-products h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-detail-content {
        grid-template-columns: 1fr;
    }
    
    .inquiry-content {
        grid-template-columns: 1fr;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .view-controls {
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .category-chips {
        justify-content: center;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-box button {
        width: 100%;
        justify-content: center;
    }
    
    .product-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .inquiry-features {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .products-container {
        grid-template-columns: 1fr;
    }
    
    .product-stats {
        grid-template-columns: 1fr;
    }
    
    .inquiry-content {
        padding: 25px 20px;
    }
    
    .product-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
}
.brand-values {
    padding: 4rem 0;
    background: white;
}

.brands-section {
    padding: 4rem 0;
    background: #f9fafb;
}

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

.brand-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.brand-card > * {
    padding: 0 2rem;
}

.brand-card > *:first-child {
    padding-top: 2rem;
}

.brand-card > *:last-child {
    padding-bottom: 2rem;
}

.brand-logo {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.brand-logo.blue { background: #f97316; color: white; }
.brand-logo.green { background: #059669; color: white; }
.brand-logo.emerald { background: #10b981; color: white; }
.brand-logo.purple { background: #7c3aed; color: white; }
.brand-logo.orange { background: #ea580c; color: white; }
.brand-logo.indigo { background: #4f46e5; color: white; }

.brand-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.75rem;
}

.brand-card > p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.brand-products, .brand-features {
    margin-bottom: 1.5rem;
}

.brand-products h4, .brand-features h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.brand-products ul {
    list-style: none;
}

.brand-products li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.brand-products li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background: #f97316;
    border-radius: 50%;
}

.brand-features ul {
    list-style: none;
}

.brand-features li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-features i {
    color: #f97316;
}
.brand-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
    padding: 2rem 0;
    margin-left: 30px;
    margin-right: 30px;
}

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

.brand-logos img:hover {
    transform: scale(1.05);
}

/* ===== ADDED UI ENHANCEMENTS ===== */
body {
    background: linear-gradient(180deg, #fdfdfd 0%, #eef3ff 100%);
}

/* Header Gradient */
.header {
    background: linear-gradient(90deg, #1f2a44, #2c3e50, #3b5998);
}

/* Navbar Hover Gradient */
.nav-menu a:hover, .nav-menu a.active {
    background: linear-gradient(45deg, #3b82f6, #6366f1);
    color: #fff;
}

/* Page Header Gradient */
.page-header {
    background: linear-gradient(120deg, #1e3a8a, #2563eb, #38bdf8);
}

/* Footer Alignment Fix */
.footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Product Detail Alignment Improvement */
.product-info-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Smooth Fade Animation */
.fade-in {
    animation: fadeInSoft 0.6s ease forwards;
    opacity: 0;
}

@keyframes fadeInSoft {
    to {
        opacity: 1;
    }
}

/* Card Hover Color Boost */
.product-card:hover {
    box-shadow: 0 20px 40px rgba(59,130,246,0.25);
}

/* Loading Spinner Center Fix */
.loading-products {
    text-align: center;
    padding: 60px 0;
}

/* ===== Responsive & Fixes Added ===== */
img{max-width:100%;height:auto}
.nav-menu a.active{background:none;color:var(--secondary-color)}
@media (max-width:768px){
.header-content{flex-direction:column;gap:15px}
.contact-info{flex-direction:column;gap:10px}
.nav-menu{flex-wrap:wrap;justify-content:center}
}
.product-detail{display:flex;gap:30px;align-items:flex-start}
@media(max-width:768px){
.product-detail{flex-direction:column}
}
.product-card,
.category-card,
.brand-card,
.stat-item {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover,
.category-card:hover,
.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.footer-links {
    display: flex;
    gap: 1.5rem;
}

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