/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2C3E50;
    --secondary: #BDC3C7;
    --tertiary: #006ab1;
    --accent: #ECF0F1;
    --text: #2C3E50;
    --light: #ffffff;
    --dark: #1a252f;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.7;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    position: relative;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--accent);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--accent);
}

/* Header Styles */
.header {
    background-color: var(--light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.6rem;
    margin: 0;
    font-weight: 700;
}

.logo span {
    color: var(--secondary);
    font-weight: 400;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.navbar ul li a:hover, .navbar ul li a.active {
    color: var(--tertiary);
}

.header-icons {
    display: flex;
    align-items: center;
}

.search-btn {
    color: var(--text);
    font-size: 1rem;
    margin-right: 20px;
    text-decoration: none;
}

.inquiry-btn {
    background-color: var(--primary);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.inquiry-btn:hover {
    background-color: var(--dark);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
}

/* Responsive Design Updates */
@media (max-width: 992px) {
    /* ... existing code ... */
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    .navbar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--light);
        transition: all 0.3s ease;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .navbar.show {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .navbar ul li {
        margin: 10px 0;
        width: 100%;
    }
    
    .navbar ul li a {
        display: block;
        padding: 10px;
        border-bottom: 1px solid var(--secondary);
    }
    
    .header-icons {
        margin-left: auto;
        margin-right: 15px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* ... rest of existing code ... */
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .inquiry-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .search-btn {
        margin-right: 10px;
    }
    
    /* ... rest of existing code ... */
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero/banner1.png') no-repeat center center/cover;
}

.slide-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero/banner2.png') no-repeat center center/cover;
}

.slide-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero/banner3.png') no-repeat center center/cover;
}

.slide-content {
    color: var(--accent);
    max-width: 600px;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.slide-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: var(--accent);
}

/* Brand Categories Section */
.brand-categories {
    padding: 100px 0;
    background-color: var(--accent);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: var(--light);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    height: 300px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-info {
    padding: 25px;
    text-align: center;
}

.category-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.category-info p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

/* Shop by Category Section */
.shop-category {
    padding: 100px 0;
    background-color: var(--light);
}

.category-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.tab-btn:hover::after,
.tab-btn.active::after {
    width: 70%;
}

.tab-btn.active {
    color: var(--primary);
}

.tab-content {
    position: relative;
}

.category-products {
    display: none;
    animation: fadeIn 0.5s ease;
}

.category-products.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Featured Products Section */
.featured-products {
    padding: 100px 0;
    background-color: var(--light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background-color: var(--light);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-btn {
    background-color: var(--accent);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background-color: var(--primary);
    color: var(--accent);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.brand {
    color: var(--secondary);
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.price {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--primary);
}

.original-price {
    text-decoration: line-through;
    color: var(--secondary);
    font-size: 0.9rem;
    margin-left: 8px;
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background-color: var(--accent);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    align-items: center;
}

.brand-logo {
    text-align: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.brand-logo img {
    max-width: 100%;
    height: auto;
}

/* About Preview */
.about-preview {
    padding: 100px 0;
    background-color: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.about-image img {
    width: 100%;
    height: 500px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--accent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background-color: var(--light);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-author {
    font-weight: 500;
    color: var(--primary);
    font-size: 0.9rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--accent);
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--secondary);
    font-size: 0.95rem;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: var(--primary);
    color: var(--accent);
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.newsletter-content p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 2px 0 0 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.newsletter-form button {
    background-color: var(--secondary);
    color: var(--primary);
    border: none;
    padding: 0 25px;
    border-radius: 0 2px 2px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.newsletter-form button:hover {
    background-color: var(--accent);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--accent);
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo .logo-img {
    height: 65px;
    margin-right: 10px;
}

.footer-logo h3 {
    font-size: 1.3rem;
    margin: 0;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--secondary);
}

.footer-section p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.footer-section p i {
    margin-right: 10px;
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-icons a:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--primary);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .slide-content h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .navbar ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .navbar ul li {
        margin: 5px 10px;
    }
    
    .hero-slider {
        height: 80vh;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 2px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 2px;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 70vh;
        margin-top: 90px;
    }
    
    .slide-content h2 {
        font-size: 1.6rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        margin-bottom: 10px;
    }
}