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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 2px;
}

.logo .tagline {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-weight: 300;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-nav a:hover {
    color: #8b7355;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 600px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 2rem;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    display: grid;
}

.dropdown-section h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.dropdown-section a {
    display: block;
    padding: 0.5rem 0;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.dropdown-section a:hover {
    color: #8b7355;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 25px;
    width: 250px;
    font-size: 0.9rem;
}

.search-box i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

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

.icon-link {
    color: #333;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.icon-link:hover {
    color: #8b7355;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h2 {
    color: #8b7355;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Button Styles */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #8b7355;
    color: white;
}

.btn-primary:hover {
    background: #6d5a44;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #8b7355;
    border: 2px solid #8b7355;
}

.btn-secondary:hover {
    background: #8b7355;
    color: white;
}

.btn-outline {
    background: rgba(255,255,255,0.9);
    color: #333;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: #8b7355;
    color: white;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

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

.view-all {
    color: #8b7355;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #6d5a44;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.category-info {
    padding: 25px;
    text-align: center;
}

.category-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #8b7355;
}

.category-info p {
    color: #666;
    margin-bottom: 20px;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.8), rgba(160, 82, 45, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.category-overlay .btn {
    background: white;
    color: #8b7355;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-overlay .btn:hover {
    background: #8b7355;
    color: white;
    transform: scale(1.05);
}

/* Catalog Slideshow */
.catalog-slideshow {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.slideshow-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slides-track {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    width: 20%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.slide-content {
    display: flex;
    height: 100%;
    background: white;
}

.slide-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.slide.active .slide-image img {
    transform: scale(1.05);
}

.slide-info {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.slide-category {
    display: inline-block;
    background: #8b7355;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    width: fit-content;
}

.slide-info h3 {
    font-size: 2.2rem;
    color: #8b7355;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.slide-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 30px;
}

.slide-info .btn {
    align-self: flex-start;
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.slide-info .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slide-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slide-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.slide-btn i {
    font-size: 1.2rem;
    color: #8b7355;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

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

.indicator.active {
    background: white;
    transform: scale(1.3);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* New Arrivals Section */
.new-arrivals {
    padding: 5rem 0;
    background: white;
}

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

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

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

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

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

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

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

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

.wishlist-btn {
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.wishlist-btn:hover {
    background: #e74c3c;
    color: white;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #f39c12;
}

.product-rating span {
    color: #666;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.about-text h2 {
    color: #8b7355;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 2.5rem;
    color: #8b7355;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: white;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #8b7355;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: #2c3e50;
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    color: #8b7355;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

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

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

.footer-logo h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #8b7355;
}

.footer-logo p {
    color: #bbb;
    margin-bottom: 2rem;
}

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

.social-links a {
    color: #bbb;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #8b7355;
}

.footer-section h4 {
    color: #8b7355;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: #8b7355;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #bbb;
}

/* Product Showcase Slideshow */
.product-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.showcase-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.showcase-wrapper {
    position: relative;
    overflow: hidden;
}

.showcase-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.showcase-item {
    flex: 0 0 300px;
    margin-right: 20px;
    opacity: 0.7;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.showcase-item.active {
    opacity: 1;
    transform: scale(1);
}

.showcase-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 450px;
    display: flex;
    flex-direction: column;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.showcase-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.showcase-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;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.showcase-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-category {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.showcase-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.showcase-info h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.showcase-info h3 a:hover {
    color: #8b7355;
}

.showcase-info .product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b7355;
    margin: 10px 0;
}

.showcase-info .product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.showcase-info .product-rating i {
    color: #ffc107;
}

.showcase-info .product-rating span {
    color: #6c757d;
    margin-left: 5px;
}

.showcase-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.showcase-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.showcase-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.showcase-btn i {
    font-size: 1.2rem;
    color: #333;
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-content {
    padding: 2rem;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a {
    display: block;
    padding: 1rem 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #8b7355;
}

.mobile-dropdown {
    padding-left: 1rem;
}

.mobile-dropdown a {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .nav-wrapper {
        justify-content: space-between;
    }
    
    .nav-actions {
        gap: 1rem;
    }
    
    .search-box {
        display: none;
    }
    
    .dropdown-content {
        position: static;
        display: block;
        min-width: auto;
        box-shadow: none;
        padding: 1rem;
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .search-box input {
        width: 200px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Product Showcase Mobile */
    .product-showcase {
        padding: 60px 0;
    }
    
    .showcase-item {
        flex: 0 0 250px;
        margin-right: 15px;
    }
    
    .showcase-card {
        height: 400px;
    }
    
    .showcase-image {
        height: 240px;
    }
    
    .showcase-info {
        padding: 15px;
    }
    
    .showcase-controls {
        padding: 0 10px;
    }
    
    .showcase-btn {
        width: 40px;
        height: 40px;
    }
    
    .showcase-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 0 1rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo .tagline {
        font-size: 0.7rem;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .user-actions {
        gap: 0.5rem;
    }
    
    .dropdown-content {
        padding: 0.5rem;
        gap: 1rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-text h2 {
        font-size: 1rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin: 1rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-card {
        height: 200px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input {
        border-radius: 8px;
    }
    
    .newsletter-form button {
        border-radius: 8px;
        width: 100%;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .showcase-item {
        flex: 0 0 220px;
        margin-right: 10px;
    }
    
    .showcase-card {
        height: 380px;
    }
    
    .showcase-image {
        height: 220px;
    }
}

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

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.product-card,
.category-card,
.testimonial-card {
    transition: all 0.3s ease;
}

.product-card:hover,
.category-card:hover {
    transform: translateY(-5px);
}

/* Focus States */
input:focus,
button:focus {
    outline: 2px solid #8b7355;
    outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #8b7355;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6d5a44;
}

/* Slideshow Loading Animation */
.slideshow-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-100%);
    animation: slideLoading 2s infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes slideLoading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.slideshow-container.loaded::before {
    display: none;
}

/* Slide Transition Effects */
.slide {
    opacity: 0.7;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
}

.slide-info {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease 0.3s;
}

.slide.active .slide-info {
    transform: translateY(0);
    opacity: 1;
}

/* Enhanced Button Styles */
.slide-btn {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

/* Progress Bar for Auto-play */
.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--primary-color);
    width: 0;
    transition: width 5s linear;
}

.slide-progress.active {
    width: 100%;
}

/* Responsive Design for Slideshow */
@media (max-width: 1024px) {
    .slideshow-container {
        margin: 0 20px;
    }
    
    .slide-info {
        padding: 40px 35px;
    }
    
    .slide-info h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .catalog-slideshow {
        padding: 60px 0;
    }
    
    .slideshow-container {
        margin: 0 15px;
        border-radius: 15px;
    }
    
    .slideshow-wrapper {
        height: 450px;
    }
    
    .slide-content {
        flex-direction: column;
    }
    
    .slide-image {
        height: 55%;
    }
    
    .slide-info {
        height: 45%;
        padding: 25px 20px;
    }
    
    .slide-info h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .slide-info p {
        font-size: 1rem;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .slide-price {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .slide-info .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .slide-btn {
        width: 50px;
        height: 50px;
    }
    
    .slide-btn i {
        font-size: 1rem;
    }
    
    .slide-indicators {
        bottom: 20px;
        gap: 12px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .slideshow-container {
        margin: 0 10px;
        border-radius: 12px;
    }
    
    .slideshow-wrapper {
        height: 380px;
    }
    
    .slide-info {
        padding: 20px 15px;
    }
    
    .slide-category {
        font-size: 0.8rem;
        padding: 6px 15px;
        margin-bottom: 15px;
    }
    
    .slide-info h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .slide-info p {
        font-size: 0.9rem;
        margin-bottom: 12px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .slide-price {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .slide-info .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .slideshow-controls {
        padding: 0 10px;
    }
    
    .slide-btn {
        width: 45px;
        height: 45px;
    }
    
    .slide-btn i {
        font-size: 0.9rem;
    }
    
    .slide-indicators {
        bottom: 15px;
        gap: 10px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}

/* Accessibility Improvements */
.slide-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.indicator:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .slides-track {
        transition: none;
    }
    
    .slide-image img {
        transition: none;
    }
    
    .slide-info {
        transition: none;
    }
    
    .slideshow-container::before {
        animation: none;
    }
}