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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c1810;
    background-color: #f8f5f0;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #3d2817 0%, #5a3d2b 100%);
    color: #f8f5f0;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

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

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #d4a574;
}

.brand-info h1 {
    font-size: 2em;
    margin-bottom: 5px;
    color: #f8f5f0;
}

.tagline {
    font-size: 0.9em;
    color: #d4a574;
    font-style: italic;
}

.contact-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
}

.phone-link, .email-link {
    color: #d4a574;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.phone-link:hover, .email-link:hover {
    color: #f8f5f0;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #d4a574;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

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

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

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

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: #d4a574;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #f8f5f0;
}

.nav-contact {
    display: none;
}

/* Hero Section with Slider */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #000;
}

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

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

.slide.active {
    opacity: 1;
}

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

.slide:nth-child(4) img {
    object-fit: contain;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.slide-overlay h2 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.slide-overlay p {
    font-size: 1.5em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(61, 40, 23, 0.7);
    color: #d4a574;
    border: none;
    padding: 15px 20px;
    font-size: 2em;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(61, 40, 23, 0.9);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #d4a574;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    color: #3d2817;
}

.about p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
    line-height: 1.8;
}

/* Brands Section */
.brands {
    padding: 60px 0;
    background: linear-gradient(135deg, #3d2817 0%, #5a3d2b 100%);
    color: #f8f5f0;
}

.brands h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #d4a574;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.brand-item {
    background: rgba(212, 165, 116, 0.1);
    padding: 20px;
    text-align: center;
    font-size: 1.2em;
    border: 2px solid #d4a574;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.brand-item:hover {
    background: rgba(212, 165, 116, 0.2);
    transform: translateY(-5px);
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #f8f5f0;
}

.products h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
    color: #3d2817;
}

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

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

.product-card h3 {
    font-size: 1.4em;
    padding: 15px 20px 10px;
    color: #3d2817;
}

.product-card .price {
    font-size: 1.3em;
    color: #8b4513;
    font-weight: bold;
    padding: 0 20px;
}

.product-card p {
    padding: 10px 20px 20px;
    color: #666;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: white;
}

.reviews h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #3d2817;
}

.rating-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.rating-score {
    font-size: 4em;
    font-weight: bold;
    color: #8b4513;
}

.rating-text p {
    font-size: 1.2em;
}

.review-count {
    color: #666;
    font-size: 1em !important;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: #f8f5f0;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #d4a574;
}

.reviewer-name {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #3d2817;
}

.review-card p {
    color: #555;
    font-style: italic;
}

/* Location Section */
.location {
    padding: 80px 0;
    background: #f8f5f0;
}

.location h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
    color: #3d2817;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.location-info h3 {
    font-size: 1.5em;
    margin: 25px 0 15px;
    color: #3d2817;
}

.location-info h3:first-child {
    margin-top: 0;
}

.location-info p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.location-info a {
    color: #8b4513;
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-info a:hover {
    color: #d4a574;
}

.price-range {
    color: #8b4513;
    font-weight: bold;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #3d2817 0%, #5a3d2b 100%);
    color: #f8f5f0;
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #d4a574;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section a {
    color: #f8f5f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4a574;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 165, 116, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo-section {
        flex-direction: row;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .brand-info h1 {
        font-size: 1.3em;
    }

    .tagline {
        font-size: 0.8em;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #3d2817 0%, #5a3d2b 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 25px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
        z-index: 1000;
    }

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

    .nav-menu a {
        font-size: 1.2em;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(212, 165, 116, 0.3);
    }

    .nav-contact {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 2px solid rgba(212, 165, 116, 0.3);
    }

    .nav-contact a {
        border-bottom: none;
    }
    
    .hero {
        height: 400px;
    }
    
    .slide-overlay h2 {
        font-size: 2em;
    }
    
    .slide-overlay p {
        font-size: 1.2em;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .brand-info h1 {
        font-size: 1.5em;
    }
    
    .slider-btn {
        padding: 10px 15px;
        font-size: 1.5em;
    }
}

