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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #4b2e19 !important;
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border-bottom: 3px solid #a67c52;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 900;
    color: #fff !important;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #fffbe7 10%, #a67c52 60%, #4b2e19 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    padding: 0.2rem 1.2rem 0.2rem 1.2rem;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(166,124,82,0.10);
    border: 2px solid #fffbe7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s;
}
.nav-logo .logo-text:hover {
    box-shadow: 0 4px 24px rgba(166,124,82,0.18);
    border-color: #a67c52;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.1rem;
    margin-left: 1.2rem;
}

.nav-link {
    text-decoration: none;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.98rem;
    padding: 0.32rem 0.7rem;
    border-radius: 7px;
    transition: background 0.2s, color 0.2s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: #a67c52;
    color: #fffbe7 !important;
    box-shadow: 0 2px 8px rgba(166,124,82,0.15);
}

.nav-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-toggle {
    background: #fffbe7;
    color: #4b2e19;
    border: none;
    padding: 0.25rem 0.8rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.97rem;
    box-shadow: 0 2px 8px rgba(166,124,82,0.10);
    transition: background 0.2s, color 0.2s;
}
.language-toggle:hover {
    background: #a67c52;
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.luxury-chair-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
    transition: transform 0.3s ease;
}

.luxury-chair-img:hover {
    transform: translateY(-5px);
}

/* Section Styles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
}

.section-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-content p {
    color: #7f8c8d;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Catalog Section */
.catalog-section {
    /* خلفية بنية متدرجة */
    background: linear-gradient(135deg, #7c4a1e 0%, #a67c52 100%) !important;
    position: relative;
    overflow: hidden;
    /* حواف ذهبية لامعة */
    border-radius: 24px;
    box-shadow: 0 0 0 4px #a67c52, 0 8px 32px rgba(80,60,30,0.10);
    border: 2px solid #d6b370;
    transition: box-shadow 0.4s, border-color 0.4s;
}

.catalog-section::before {
    /* لمعان متحرك عند الهوفر */
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 60%, rgba(255,255,255,0.18) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
    z-index: 2;
}

.catalog-section:hover::before {
    opacity: 1;
    animation: shine-move 1.2s linear;
}

@keyframes shine-move {
    0% { transform: translateX(-40%) skewX(-20deg); }
    100% { transform: translateX(60%) skewX(-20deg); }
}

.catalog-spread {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    background: #fff !important;
    border-radius: 18px;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    box-shadow: 0 8px 32px rgba(80,60,30,0.10), 0 0 0 4px #d6b370;
    border: 2px solid #d6b370;
    margin-bottom: 2.2rem;
    position: relative;
    z-index: 3;
    transition: box-shadow 0.3s, border-color 0.3s;
}

/* إضافة قسم فاصل بين الصورتين ككتاب */
.catalog-spread::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 8px;
    background: linear-gradient(180deg, #d6b370 0%, #a67c52 50%, #d6b370 100%);
    transform: translateX(-50%);
    z-index: 4;
    box-shadow: 0 0 8px rgba(166,124,82,0.3);
    border-radius: 4px;
}

.catalog-card {
    background: #fff !important;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(80,60,30,0.13), 0 0 0 2px #d6b370;
    border: 2.5px solid #d6b370;
    overflow: hidden;
    width: 370px;
    min-width: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    z-index: 5;
}

.catalog-card:hover {
    box-shadow: 0 16px 48px rgba(80,60,30,0.18), 0 0 0 4px #fffbe7;
    transform: translateY(-6px) scale(1.02);
    border-color: #fffbe7;
}

.catalog-image-wrapper {
    position: relative;
    width: 100%;
    height: 270px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background: #000;
}

.catalog-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    background: #000;
}

.book-container {
    /* فقط تحكم في الحاوية الخارجية */
    width: 800px;
    height: 400px;
    margin: 0 auto 2rem auto;
    perspective: 2000px;
    perspective-origin: center;
    background: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}

.book-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.book-page {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1.5s ease-in-out;
    display: none;
    cursor: pointer;
}

.book-page.active {
    display: block;
}

.book-page.flipping {
    display: block;
}

.page-front,
.page-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.page-front:hover,
.page-back:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.page-back {
    transform: rotateY(180deg);
}

.page-back-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    position: relative;
    overflow: hidden;
}

.page-back-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-back-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-back-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Flip animations */
.flip-forward {
    animation: flipForward 1.5s ease-in-out;
}

.flip-backward {
    animation: flipBackward 1.5s ease-in-out;
}

@keyframes flipForward {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(-180deg); }
}

@keyframes flipBackward {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(180deg); }
}

#book {
    width: 800px;
    height: 400px;
    margin: 0 auto 2rem auto;
    position: relative;
    /* لا تستخدم flex أو grid هنا */
}

#book .page-wrapper {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

#book .page-wrapper .turn-page {
    background: white !important;
    border: none !important;
}

#book .page-wrapper .turn-page:before,
#book .page-wrapper .turn-page:after {
    display: none !important;
}

.page-content {
    padding: 2rem;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-content img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.page-content img:hover {
    transform: scale(1.05);
}

.page-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.page-content p {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.6;
}

/* Navigation */
#catalog-nav.catalog-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 1.5rem auto 0 auto;
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 10;
}
#catalog-nav .nav-btn {
    background: #fffbe7;
    color: #a67c52;
    border: 2px solid #a67c52;
    padding: 0.7rem 1.5rem;
    border-radius: 18px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(166,124,82,0.10);
}
#catalog-nav .nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f3e7d7;
    color: #a67c52;
}
#catalog-nav .nav-btn:hover:not(:disabled) {
    background: #a67c52;
    color: #fffbe7;
    box-shadow: 0 4px 16px rgba(166,124,82,0.13);
}
#catalog-nav .page-indicator {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4b2e19;
    background: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
#catalog-nav .sound-icon {
    color: #a67c52;
    font-size: 1.2rem;
    margin-left: 0.7rem;
}
@media (max-width: 900px) {
    #book, .book-container {
        width: 98vw;
        height: 260px;
    }
    .catalog-page {
        width: 49vw !important;
        height: 260px !important;
    }
    #catalog-nav.catalog-navigation {
        max-width: 98vw;
        gap: 1rem;
    }
}
@media (max-width: 600px) {
    #book, .book-container {
        width: 99vw;
        height: 180px;
    }
    .catalog-page {
        width: 49vw !important;
        height: 180px !important;
    }
    #catalog-nav.catalog-navigation {
        flex-direction: column;
        gap: 0.7rem;
        max-width: 99vw;
    }
    #catalog-nav .nav-btn, #catalog-nav .page-indicator {
        width: 100%;
        justify-content: center;
    }
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.filters-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 1rem;
    flex-wrap: wrap;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-container {
    position: relative;
    flex: 1;
    max-width: 300px;
}

.search-input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
    transition: color 0.3s ease;
}

.search-input:focus + .search-icon {
    color: #8B4513;
}

.filter-group {
    display: flex;
    gap: 1rem;
}

.filter-select {
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    background: white;
    border: 2px solid #e9ecef;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: #8B4513;
    border-color: #8B4513;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

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

.products-grid.list-view {
    grid-template-columns: 1fr;
}

.product-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;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

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

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

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

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 1rem;
}

.product-description {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.view-details-btn {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.view-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

/* List View */
.product-card.list-view {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.product-card.list-view .product-image {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
}

.product-card.list-view .product-info {
    flex: 1;
}

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

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

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.about-text p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B4513;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.locations {
    text-align: center;
}

.locations h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

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

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card i {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.location-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.location-card p {
    color: #7f8c8d;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: white;
}

.review-form-container {
    max-width: 600px;
    margin: 0 auto 4rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.review-form-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

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

.rating-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-label {
    font-weight: 500;
    color: #2c3e50;
}

.stars {
    display: flex;
    gap: 0.5rem;
}

.stars i {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.stars i:hover,
.stars i.active {
    color: #ffd700;
}

.submit-btn {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #D2691E, #8B4513);
    color: #fffbe7;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.25);
    transform: translateY(-2px) scale(1.04);
    transition: all 0.2s;
}

.customer-reviews h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

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

.review-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.reviewer-name {
    font-weight: 600;
    color: #2c3e50;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
}

.review-rating i {
    color: #ffd700;
    font-size: 0.9rem;
}

.review-text {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-card i {
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.contact-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #7f8c8d;
    margin-bottom: 0.25rem;
}

.faq-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #2c3e50;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.message-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.footer-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #8B4513;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    color: #bdc3c7;
    margin-top: 0.5rem;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

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

.footer-links a:hover {
    color: #8B4513;
}

.footer-contact p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #7f8c8d;
    transition: color 0.3s ease;
}

.close:hover {
    color: #2c3e50;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thumbnail-images {
    display: flex;
    gap: 0.5rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    transform: scale(1.05);
    border-color: #8B4513;
}

.product-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 1rem;
}

.product-info p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-specs h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.product-specs ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #7f8c8d;
}

.product-specs li:last-child {
    border-bottom: none;
}

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

.whatsapp-btn,
.call-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.call-btn {
    background: #8B4513;
    color: white;
}

.whatsapp-btn:hover,
.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Success Modal */
.success-modal {
    text-align: center;
    max-width: 400px;
}

.success-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.success-modal h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.close-btn {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

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

[dir="rtl"] .section-title::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

[dir="rtl"] .search-icon {
    left: auto;
    right: 1rem;
}

[dir="rtl"] .search-input {
    padding: 0.8rem 2.5rem 0.8rem 1rem;
}

[dir="rtl"] .faq-question {
    flex-direction: row-reverse;
}

[dir="rtl"] .product-card.list-view {
    flex-direction: row-reverse;
}

/* Responsive Design */
@media (max-width: 900px) {
    .nav-menu {
        gap: 0.7rem;
        margin-left: 0.5rem;
    }
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .nav-container {
        padding: 0 10px;
    }
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .luxury-chair {
        width: 300px;
        height: 300px;
    }
    .luxury-chair::before {
        font-size: 6rem;
    }
    /* Catalog responsive */
    .book-container {
        width: 98vw;
        height: 260px;
    }
    .catalog-page {
        width: 49vw;
        height: 100%;
    }
    .book-container .catalog-card {
        width: 95%;
        height: 200px;
    }
    .page-content {
        padding: 1rem;
    }
    .page-content h3 {
        font-size: 1.3rem;
    }
    .page-content p {
        font-size: 0.9rem;
    }
    .page-back-content h3 {
        font-size: 1.5rem;
    }
    .page-back-content p {
        font-size: 1rem;
    }
    /* Products responsive */
    .filters-container {
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
    }
    .filter-group {
        flex-direction: column;
    }
    .search-container {
        max-width: 100%;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .product-card.list-view {
        flex-direction: column;
        gap: 1rem;
    }
    .product-card.list-view .product-image {
        width: 100%;
        height: 200px;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    .location-cards {
        grid-template-columns: 1fr;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .product-detail {
        grid-template-columns: 1fr;
    }
    .product-actions {
        flex-direction: column;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    /* Navigation responsive */
    .catalog-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-btn {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    /* Catalog responsive */
    .book-container {
        width: 99vw;
        height: 180px;
    }
    .catalog-page {
        width: 49vw;
        height: 100%;
    }
    .book-container .catalog-card {
        width: 98%;
        height: 120px;
    }
    .page-content h3 {
        font-size: 1.1rem;
    }
    .page-content p {
        font-size: 0.8rem;
    }
    .page-back-content h3 {
        font-size: 1.2rem;
    }
    .page-back-content p {
        font-size: 0.9rem;
    }
    /* Products responsive */
    .filters-container {
        padding: 1rem;
    }
    .product-info {
        padding: 1rem;
    }
    .product-name {
        font-size: 1.1rem;
    }
    .product-price {
        font-size: 1rem;
    }
    .product-description {
        font-size: 0.9rem;
    }
    .page-text {
        padding: 1rem;
    }
    .page-text h3 {
        font-size: 1.3rem;
    }
    .page-text p {
        font-size: 0.9rem;
    }
    .catalog-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Remove book spine completely */
#book .turn-page {
    background: white !important;
    border: none !important;
}

#book .turn-page-wrapper {
    background: white !important;
    border: none !important;
}

#book .turn-page:before,
#book .turn-page:after,
#book .turn-page-wrapper:before,
#book .turn-page-wrapper:after {
    display: none !important;
}

/* Ensure clean page transitions */
#book .turn-page {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Remove any binding effects */
.turn-page-wrapper .turn-page .hard {
    background: white !important;
}

/* Additional Turn.js styling */
.turn-page {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.turn-page-wrapper {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- Catalog Custom Design --- */
.catalog-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
}
.catalog-icon {
    font-size: 2.1rem;
    color: #a67c52;
    margin-right: 0.3rem;
    display: flex;
    align-items: center;
}
.section-title {
    font-size: 2.3rem;
    color: #2c3e50;
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
    background: none;
}
.catalog-desc {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
}
.catalog-underline {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #fff 0%, #222 100%) !important;
    border-radius: 2px;
    margin: 0 auto 2.5rem auto;
}
.catalog-spread {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2.5rem;
    background: #f3f3f3;
    border-radius: 18px;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    box-shadow: 0 8px 32px rgba(80,60,30,0.10);
    margin-bottom: 2.2rem;
}
.catalog-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(80,60,30,0.13);
    border: 3px solid #fff;
    overflow: hidden;
    width: 370px;
    min-width: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}
.catalog-card:hover {
    box-shadow: 0 16px 48px rgba(80,60,30,0.18);
    transform: translateY(-6px) scale(1.02);
}
.catalog-image-wrapper {
    position: relative;
    width: 100%;
    height: 270px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background: #000;
}
.catalog-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    background: #000;
}
.catalog-logo {
    position: absolute;
    top: 12px;
    left: 16px;
    background: rgba(255,255,255,0.85);
    color: #4b2e19;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 4px 10px 2px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(80,60,30,0.07);
    line-height: 1.1;
    letter-spacing: 1px;
    z-index: 2;
    text-align: left;
}
.catalog-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 0.5rem;
}
.nav-btn {
    background: #fffbe7;
    color: #a67c52;
    border: 2px solid #a67c52;
    padding: 0.7rem 1.5rem;
    border-radius: 18px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(166,124,82,0.10);
}
.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f3e7d7;
    color: #a67c52;
}
.nav-btn:hover:not(:disabled) {
    background: #a67c52;
    color: #fffbe7;
    box-shadow: 0 4px 16px rgba(166,124,82,0.13);
}
.page-indicator {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4b2e19;
    background: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sound-icon {
    color: #a67c52;
    font-size: 1.2rem;
    margin-left: 0.7rem;
}

@media (max-width: 900px) {
    .catalog-spread {
        gap: 1.2rem;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
    .catalog-card {
        width: 48vw;
        min-width: 180px;
    }
}
@media (max-width: 600px) {
    .catalog-spread {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        padding: 1rem 0.2rem 1rem 0.2rem;
    }
    .catalog-card {
        width: 95vw;
        min-width: 120px;
    }
    .catalog-image-wrapper {
        height: 180px;
    }
}

/* Social Icons Uiverse.io */
.wrapper {
  display: inline-flex;
  list-style: none;
  height: 120px;
  width: 100%;
  padding-top: 40px;
  font-family: "Poppins", sans-serif;
  justify-content: center;
}

.wrapper .icon {
  position: relative;
  background: #fff;
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background: #1877f2;
  color: #fff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
  background: #1da1f2;
  color: #fff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: #e4405f;
  color: #fff;
}

.catalog-label {
    position: absolute;
    top: 13px;
    left: 16px;
    background: rgba(255,255,255,0.82);
    color: #4b2e19;
    font-family: 'Poppins', sans-serif;
    font-size: 0.93rem;
    font-weight: 600;
    padding: 2px 10px 1px 10px;
    border-radius: 7px;
    box-shadow: 0 1px 4px rgba(80,60,30,0.07);
    line-height: 1.1;
    letter-spacing: 0.5px;
    z-index: 2;
    text-align: left;
    opacity: 0.85;
    pointer-events: none;
    user-select: none;
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.catalog-logo { display: none !important; }

/* Fade Animations for Products */
.product-card.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: auto;
}
.product-card.fade-out {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}

.wrapper .icon svg {
  display: block;
  margin: 0 auto;
  height: 1.8em;
  width: 1.8em;
  vertical-align: middle;
  align-self: center;
  justify-self: center;
}
.wrapper .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-section .section-title {
    color: #fff !important;
}
.catalog-section .catalog-icon {
    color: #fff !important;
}

.catalog-section .section-title::after {
    background: linear-gradient(90deg, #fff 0%, #222 100%) !important;
}

.catalog-page {
    width: 400px !important;
    height: 400px !important;
    float: left;
    display: block;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    position: relative;
    padding: 0;
    margin: 0;
} 