/* Page Hero for All Pages */
.page-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('../images/BG-5.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 80px;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Unified Showroom Gallery */
.unified-showroom {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
}

.unified-showroom-header {
    text-align: center;
    margin-bottom: 60px;
}

.unified-showroom-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.unified-showroom-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.unified-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.unified-showcase-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    height: 400px;
}

.showcase-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.main-image {
    grid-row: 1 / 3;
}

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

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

.unified-showcase-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.unified-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.3rem;
}

.feature-item span:last-child {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.unified-showcase-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.unified-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.unified-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.unified-btn.primary {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.unified-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

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

.unified-btn.secondary:hover {
    background: #8B4513;
    color: white;
    transform: translateY(-2px);
}

.btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.unified-btn.primary:hover .btn-arrow {
    transform: translate(3px, -3px);
}

/* Product Categories */
.product-categories {
    padding: 100px 0;
    background: white;
}

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

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    height: 300px;
}

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

.category-image {
    flex: 1;
    background: linear-gradient(45deg, #D2691E, #DEB887);
    position: relative;
}

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

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

.category-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.category-info ul {
    list-style: none;
    margin-bottom: 25px;
}

.category-info ul li {
    color: #8B4513;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.category-info ul li::before {
    content: '•';
    color: #D2691E;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.category-btn {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

/* Product Filters */
.product-filters {
    padding: 80px 0;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.product-filters h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
}

.filter-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: end;
}

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

.filter-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.filter-group select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: #8B4513;
}

.reset-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
    height: fit-content;
}

.reset-btn:hover {
    background: #5a6268;
}

/* Featured Products */
.featured-products {
    padding: 100px 0;
    background: white;
}

.featured-products h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
}

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

.product-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.product-details {
    padding: 20px;
}

.product-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.product-details p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    font-weight: 600;
    color: #8B4513;
    font-size: 1.1rem;
}

/* Call to Action Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary:hover {
    background: white;
    color: #2c3e50;
}

/* Brands Section */
.brands-section {
    padding: 100px 0;
    background: white;
}

.brands-intro {
    text-align: center;
    margin-bottom: 60px;
}

.brands-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.brands-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

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

.brand-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 5px solid #8B4513;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.brand-logo {
    margin-bottom: 25px;
}

.brand-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 10px;
}

.brand-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.brand-info ul {
    list-style: none;
    text-align: left;
}

.brand-info ul li {
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.brand-info ul li::before {
    content: '✓';
    color: #8B4513;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Featured Partner Styles */
.brand-card.featured-partner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #D2691E;
    position: relative;
    border: 2px solid #D2691E;
}

.brand-card.featured-partner::before {
    content: '★ FEATURED PARTNER ★';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.brand-card.featured-partner .brand-logo {
    margin-top: 25px;
}

.partner-badge {
    background: #D2691E;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
}

.brand-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.feature-tag {
    background: #8B4513;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        flex-direction: column;
        height: auto;
    }
    
    .category-image {
        height: 200px;
    }
    
    .filter-controls {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 250px;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .unified-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .unified-showcase-images {
        grid-template-columns: 1fr;
        gap: 20px;
        height: 300px;
    }
    
    .unified-showroom-header h2 {
        font-size: 2rem;
    }
    
    .unified-showcase-content h3 {
        font-size: 1.8rem;
    }
    
    .unified-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .unified-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .unified-btn {
        justify-content: center;
    }
}



@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .category-info {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .brands-intro h2 {
        font-size: 2rem;
    }
} 