:root {
    --primary-color: #b06e2e;
    --primary-dark: #8e541f;
    --primary-light: #e8c8a0;
    --text-color: #333;
    --light-bg: #fdfaf6;
    --white: #fff;
    --gray: #eee;
    --dark-gray: #ccc;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --dark-bg: #121212;
    --dark-text: #f5f5f5
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
}

body.dark-mode {
    background: var(--dark-bg);
    color: var(--dark-text)
}

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

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

.fade-in {
    animation: fadeIn 0.5s ease forwards
}

.delay-1 {
    animation-delay: 0.2s
}

.delay-2 {
    animation-delay: 0.4s
}

/* ===== FIXED HEADER - NO WRAPPING ===== */
header {
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.dark-mode header {
    background-color: #1a1a1a;
    color: var(--dark-text)
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo-area .logo-light,
.mobile-menu-header .mobile-logo-light {
    display: block;
}

.logo-area .logo-dark,
.mobile-menu-header .mobile-logo-dark {
    display: none;
}

.dark-mode .logo-area .logo-light,
.dark-mode .mobile-menu-header .mobile-logo-light {
    display: none;
}

.dark-mode .logo-area .logo-dark,
.dark-mode .mobile-menu-header .mobile-logo-dark {
    display: block;
}

.logo-area img {
    height: 40px;
    flex-shrink: 0;
    animation: pulse 2s infinite;
    transition: opacity 0.3s ease;
}

.mobile-menu-header .mobile-logo {
    height: 60px;
    transition: opacity 0.3s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.05)
    }
    100% {
        transform: scale(1)
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Georgia', serif;
    line-height: 1.2;
    white-space: nowrap;
}

.dark-mode .logo-text {
    color: var(--primary-light)
}

.tagline {
    display: block;
    font-size: 10px;
    color: var(--primary-dark);
    font-weight: normal;
}

.dark-mode .tagline {
    color: var(--primary-light)
}

nav {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-shrink: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    padding: 10px 0;
}

nav::-webkit-scrollbar {
    display: none;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    font-size: 14px;
    white-space: nowrap;
}

.dark-mode nav a {
    color: var(--dark-text)
}

nav a:hover {
    color: var(--primary-color)
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition)
}

nav a:hover::after {
    width: 100%
}

.language-switcher {
    position: relative;
    flex-shrink: 0;
}

.language-switcher select {
    padding: 4px 20px 4px 8px;
    border-radius: 5px;
    border: 1px solid var(--primary-light);
    background-color: var(--white);
    cursor: pointer;
    appearance: none;
    font-size: 13px;
}

.dark-mode .language-switcher select {
    background-color: #333;
    color: var(--dark-text);
    border-color: #555
}

.language-switcher::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 10px;
    color: var(--primary-color)
}

.dark-mode .language-switcher::after {
    color: var(--primary-light)
}

.dark-mode-toggle {
    cursor: pointer;
    color: var(--text-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.dark-mode .dark-mode-toggle {
    color: var(--dark-text)
}

.cart-icon {
    position: relative;
    font-size: 1.2rem;
    color: var(--text-color);
    cursor: pointer;
    flex-shrink: 0;
}

.dark-mode .cart-icon {
    color: var(--dark-text)
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 22px;
    cursor: pointer;
    flex-shrink: 0;
}

.dark-mode .mobile-menu-toggle {
    color: var(--dark-text)
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1100px) {
    .tagline {
        display: none;
    }
    
    nav {
        gap: 8px;
    }
    
    nav a {
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .logo-text {
        font-size: 16px;
    }
    
    .logo-area img {
        height: 35px;
    }
    
    nav {
        gap: 6px;
    }
    
    nav a {
        font-size: 12px;
        padding: 4px 0;
    }
    
    .language-switcher select {
        padding: 3px 18px 3px 6px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 8px 15px;
    }
    
    nav {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .dark-mode-toggle,
    .cart-icon {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 14px;
    }
    
    .logo-area img {
        height: 30px;
    }
    
    header {
        padding: 5px 10px;
    }
}

.breadcrumb {
    background-color: var(--white);
    font-size: 13px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 20px
}
.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px 40px;
    box-sizing: border-box
}

.dark-mode .breadcrumb {
    background-color: #1a1a1a;
    color: var(--dark-text)
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition)
}

.dark-mode .breadcrumb a {
    color: var(--primary-light)
}

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

.breadcrumb span {
    color: #666
}

.dark-mode .breadcrumb span {
    color: #bbb
}

.hero {
    height: 90vh;
    position: relative;
    overflow: hidden
}

.hero-slideshow {
    position: absolute;
    width: 100%;
    height: 100%;
}

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

.hero-slide.active {
    opacity: 1
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 20px
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    animation: fadeIn 1.5s ease
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    animation: fadeIn 2s ease
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeIn 2.5s ease
}

.btn {
    padding: 15px 30px;
    font-size: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2)
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white)
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1)
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 15px
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 0.5)
}

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

.inner-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    font-family: 'Georgia', serif
}

.dark-mode .section-title {
    color: var(--primary-light)
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0
}

.dark-mode .section-title::after {
    background-color: var(--primary-light)
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 1.1rem
}

.dark-mode .section-subtitle {
    color: #bbb
}

.search-bar {
    position: relative;
    max-width: 400px;
    margin: 0 auto 30px;
}

.search-bar input {
    padding: 10px 15px;
    border: 1px solid var(--dark-gray);
    border-radius: 30px;
    width: 100%;
    transition: var(--transition);
    box-sizing: border-box;
}

.dark-mode .search-bar input {
    background-color: #333;
    color: var(--dark-text);
    border-color: #555
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-bar button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer
}

.dark-mode .search-bar button {
    color: var(--primary-light)
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 5px;
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
    display: none
}

.dark-mode .search-results {
    background: #333
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-weight: 500
}

.filter-group select {
    padding: 8px 15px;
    border: 1px solid var(--dark-gray);
    border-radius: 5px;
    background-color: var(--white);
    cursor: pointer
}

.dark-mode .filter-group select {
    background-color: #333;
    color: var(--dark-text);
    border-color: #555
}

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

.product {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative
}

.dark-mode .product {
    background-color: #1a1a1a;
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.05)
}

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

.dark-mode .product:hover {
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.08)
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition)
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold
}

.product-info {
    padding: 20px
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-color)
}

.dark-mode .product-title {
    color: var(--dark-text)
}

.product-price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: block
}

.dark-mode .product-price {
    color: var(--primary-light)
}

.product-price small {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 5px
}

.product-rating {
    color: #ffc107;
    margin-bottom: 15px;
    display: flex;
    align-items: center
}

.product-rating .rating-stars {
    margin-right: 5px
}

.product-rating .reviews-count {
    font-size: 0.8rem;
    color: #666
}

.dark-mode .product-rating .reviews-count {
    color: #bbb
}

.product-actions {
    display: flex;
    justify-content: space-between
}

.add-to-cart {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    flex-grow: 1;
    margin-left: 10px
}

.add-to-cart:hover {
    background-color: var(--primary-dark)
}

.wishlist {
    background-color: transparent;
    border: 1px solid var(--dark-gray);
    color: #666;
    width: 40px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition)
}

.dark-mode .wishlist {
    border-color: #555;
    color: #bbb
}

.wishlist:hover {
    color: #ff4757;
    border-color: #ff4757
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto
}

.testimonial-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px
}

.dark-mode .testimonial-item {
    background-color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.03)
}

.testimonial-content {
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    background-color: var(--light-bg);
    border-radius: 5px
}

.dark-mode .testimonial-content {
    background-color: #252525
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 60px;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    font-style: italic;
    line-height: 1.8
}

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

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

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--primary-dark)
}

.dark-mode .testimonial-author h4 {
    color: var(--primary-light)
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem
}

.dark-mode .testimonial-author span {
    color: #bbb
}

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

.craft-step {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--primary-light)
}

.dark-mode .craft-step {
    background-color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.03);
    border-bottom: 1px dashed var(--primary-dark)
}

.craft-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1)
}

.dark-mode .craft-step:hover {
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.05)
}

.craft-step img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px
}

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

.dark-mode .craft-step h3 {
    color: var(--primary-light)
}

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

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    margin-bottom: 30px
}

.dark-mode .service-card {
    background-color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.03)
}

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

.dark-mode .service-card:hover {
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.05)
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px
}

.dark-mode .service-icon {
    color: var(--primary-light)
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color)
}

.dark-mode .service-card h3 {
    color: var(--primary-light)
}

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

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    cursor: pointer
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition)
}

.gallery-item:hover img {
    transform: scale(1.1)
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition)
}

.gallery-item:hover::after {
    opacity: 1
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px
}

.dark-mode .contact-info h3 {
    color: var(--primary-light)
}

.contact-details {
    margin-bottom: 30px
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px
}

.contact-icon {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px
}

.dark-mode .contact-icon {
    color: var(--primary-light)
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition)
}

.social-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px)
}

.store-map {
    margin-top: 30px
}

.store-map h3 {
    margin-bottom: 15px;
    color: var(--primary-color)
}

.dark-mode .store-map h3 {
    color: var(--primary-light)
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05)
}

.dark-mode .contact-form {
    background-color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.03)
}

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

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--dark-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box;
}

.dark-mode .form-control {
    background-color: #333;
    color: var(--dark-text);
    border-color: #555
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
    outline: none
}

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

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    width: 100%
}

.submit-btn:hover {
    background-color: var(--primary-dark)
}

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

.blog-post {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0
}

.dark-mode .blog-post {
    background-color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.03)
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1)
}

.dark-mode .blog-post:hover {
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.05)
}

.blog-image {
    height: 200px;
    overflow: hidden
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition)
}

.blog-post:hover .blog-image img {
    transform: scale(1.1)
}

.blog-content {
    padding: 20px
}

.blog-content h3 {
    margin-bottom: 10px;
    color: var(--primary-dark)
}

.dark-mode .blog-content h3 {
    color: var(--primary-light)
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem
}

.dark-mode .blog-meta {
    color: #bbb
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px
}

.blog-meta i {
    color: var(--primary-color)
}

.dark-mode .blog-meta i {
    color: var(--primary-light)
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition)
}

.dark-mode .read-more {
    color: var(--primary-light)
}

.read-more:hover {
    text-decoration: underline
}

.faq-container {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    overflow: hidden
}

.dark-mode .faq-item {
    background-color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.03)
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition)
}

.faq-question:hover {
    background-color: var(--light-bg)
}

.dark-mode .faq-question:hover {
    background-color: #252525
}

.faq-question i {
    transition: var(--transition)
}

.faq-question.active i {
    transform: rotate(180deg)
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease
}

.faq-answer p {
    padding-bottom: 20px;
    line-height: 1.8
}

footer {
    background-color: #222;
    color: white;
    padding: 60px 0 20px
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 0 20px
}

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem
}

.dark-mode .footer-column h3 {
    color: var(--primary-light)
}

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

.footer-links li {
    margin-bottom: 10px
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition)
}

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

.newsletter-form {
    margin-top: 20px
}

.newsletter-input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.dark-mode .newsletter-input {
    background-color: #333;
    color: var(--dark-text)
}

.newsletter-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: var(--transition)
}

.newsletter-btn:hover {
    background-color: var(--primary-dark)
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #444;
    color: #bbb;
    font-size: 0.9rem
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: var(--transition);
    overflow-y: auto
}

.dark-mode .mobile-menu {
    background-color: #1a1a1a;
    box-shadow: -5px 0 15px rgba(255, 255, 255, 0.05)
}

.mobile-menu.active {
    right: 0
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gray)
}

.dark-mode .mobile-menu-header {
    border-color: #444
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer
}

.dark-mode .close-menu {
    color: var(--dark-text)
}

.mobile-menu-items {
    padding: 20px
}

.mobile-menu-items a {
    display: block;
    padding: 15px 0;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid var(--gray)
}

.dark-mode .mobile-menu-items a {
    color: var(--dark-text);
    border-color: #444
}

.language-switcher-mobile {
    padding: 15px 0;
}

.language-switcher-mobile select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--dark-gray);
    border-radius: 5px;
    background-color: var(--white)
}

.dark-mode .language-switcher-mobile select {
    background-color: #333;
    color: var(--dark-text);
    border-color: #555
}

.mobile-menu-footer {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    border-top: 1px solid var(--gray);
    align-items: center;
    background-color: var(--white);
}

.dark-mode .mobile-menu-footer {
    border-color: #444;
    background-color: #1a1a1a;
}

.mobile-cart-icon,
.mobile-dark-mode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    transition: var(--transition);
    position: relative;
}

.dark-mode .mobile-cart-icon,
.dark-mode .mobile-dark-mode-toggle {
    background-color: var(--primary-dark);
    color: var(--primary-light);
}

.mobile-cart-icon:hover,
.mobile-dark-mode-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition)
}

.chat-button:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1)
}

.chat-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: none
}

.dark-mode .chat-container {
    background-color: #1a1a1a;
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.05)
}

.chat-container.active {
    display: flex;
    flex-direction: column
}

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

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto
}

.message {
    display: flex;
    margin-bottom: 15px
}

.message.support {
    justify-content: flex-start
}

.message.user {
    justify-content: flex-end
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px
}

.message-content {
    max-width: 70%
}

.message-content p {
    padding: 10px 15px;
    border-radius: 18px;
    line-height: 1.5
}

.message.support .message-content p {
    background-color: var(--light-bg);
    border-top-left-radius: 0
}

.dark-mode .message.support .message-content p {
    background-color: #252525
}

.message.user .message-content p {
    background-color: var(--primary-light);
    border-top-right-radius: 0
}

.chat-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid var(--gray)
}

.dark-mode .chat-input {
    border-color: #444
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--dark-gray);
    border-radius: 20px;
    outline: none
}

.dark-mode .chat-input input {
    background-color: #333;
    color: var(--dark-text);
    border-color: #555
}

.chat-input button {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 20px;
    margin-left: 10px;
    cursor: pointer
}

.dark-mode .chat-input button {
    color: var(--primary-light)
}

#cartModal {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.dark-mode #cartModal {
    background: #1a1a1a;
    box-shadow: -5px 0 15px rgba(255, 255, 255, 0.05)
}

#cartModal.active {
    transform: translateX(0)
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px
}

.dark-mode .cart-header {
    border-color: #444
}

#cartModal .cart-header button {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 5px;
}

#cartModal .cart-header button:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.dark-mode #cartModal .cart-header button {
    color: var(--primary-light);
}

.dark-mode #cartModal .cart-header button:hover {
    color: var(--primary-color);
}

.cart-empty {
    text-align: center;
    padding: 40px 0
}

.cart-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee
}

.dark-mode .cart-item {
    border-color: #444
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px
}

.cart-item-details {
    flex: 1
}

.cart-item-title {
    margin-bottom: 5px
}

.cart-item-price {
    font-weight: bold;
    color: var(--primary-color)
}

.dark-mode .cart-item-price {
    color: var(--primary-light)
}

.cart-item-actions {
    display: flex;
    align-items: center;
    margin-top: 5px
}

.cart-item-qty {
    margin: 0 10px
}

.cart-summary {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 20px
}

.dark-mode .cart-summary {
    border-color: #444
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: bold
}

#galleryModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    overflow: auto;
    display: none
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer
}

.modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%
}

#modalImage {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain
}

.value-card {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.dark-mode .value-card {
    background-color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.03);
    color: var(--dark-text);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.dark-mode .value-card i {
    color: var(--primary-light);
}

.value-card h4 {
    margin-bottom: 15px;
    color: var(--text-color);
    transition: var(--transition);
}

.dark-mode .value-card h4 {
    color: var(--primary-light);
}

.cart-item-actions button {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    transition: var(--transition);
}

.cart-item-actions button:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.dark-mode .cart-item-actions button {
    color: var(--primary-light);
}

.dark-mode .cart-item-actions button:hover {
    color: var(--primary-color);
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0)
    }
    20%,
    60% {
        transform: translateX(-5px)
    }
    40%,
    80% {
        transform: translateX(5px)
    }
}

/* RTL Support */
[lang="ar"] {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .section-title::after {
    margin: 15px auto 0;
}

[dir="rtl"] .language-switcher::after {
    right: auto;
    left: 5px;
}

[dir="rtl"] .language-switcher select {
    padding: 4px 8px 4px 20px;
}

[dir="rtl"] .search-bar button {
    right: auto;
    left: 10px;
}

[dir="rtl"] .cart-count {
    right: auto;
    left: -8px;
}

[dir="rtl"] .contact-icon {
    margin-right: 0;
    margin-left: 15px;
}

[dir="rtl"] .testimonial-author img {
    margin-right: 0;
    margin-left: 20px;
}

[dir="rtl"] .cart-item-img {
    margin-right: 0;
    margin-left: 15px;
}

[dir="rtl"] .product-badge {
    left: auto;
    right: 10px;
}

[dir="rtl"] nav a::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .mobile-menu {
    right: auto;
    left: -300px;
}

[dir="rtl"] .mobile-menu.active {
    left: 0;
}

[dir="rtl"] .chat-widget {
    right: auto;
    left: 30px;
}

[dir="rtl"] .chat-container {
    right: auto;
    left: 0;
}

[dir="rtl"] .modal-close {
    right: auto;
    left: 20px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px
    }
    .btn {
        width: 100%
    }
    .section-title {
        font-size: 2rem
    }
    .contact-container {
        grid-template-columns: 1fr
    }
    .filter-options {
        flex-direction: column;
        align-items: center
    }
    .filter-group {
        width: 100%;
        max-width: 300px;
    }
    .filter-group select {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem
    }
    #cartModal {
        width: 100%;
        max-width: 100%;
        padding: 15px
    }
    .cart-item {
        flex-direction: column
    }
    .cart-item-img {
        width: 100%;
        height: auto;
        margin-bottom: 10px
    }
    .chat-widget {
        right: 15px;
        bottom: 15px
    }
    .chat-container {
        width: calc(100vw - 30px);
        right: 15px
    }
    [dir="rtl"] .chat-widget {
        right: auto;
        left: 15px;
    }
    [dir="rtl"] .chat-container {
        right: auto;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .breadcrumb-inner {
        padding: 6px 15px;
    }
    .container {
        padding: 40px 15px;
    }
}

/* Print Styles */
@media print {
    header, footer, .chat-widget, .mobile-menu-toggle, .slider-controls, .hero-buttons {
        display: none !important;
    }
    body {
        background: white;
        color: black;
    }
    .hero {
        height: auto;
        min-height: 300px;
    }
    .hero-content {
        color: black;
    }
    .hero h1, .hero p {
        text-shadow: none;
        color: black;
    }
}