/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e67e22;
}

.btn {
    display: inline-block;
    background-color: #e67e22;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-small {
    display: inline-block;
    background-color: #e67e22;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-small:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.8rem;
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
}

/* Navigation Styles */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li a {
    font-weight: 600;
    position: relative;
    padding: 10px 0;
    color: #2c3e50;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e67e22;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover {
    color: #e67e22;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 4px;
    z-index: 1001;
    padding: 10px 0;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #2c3e50;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #e67e22;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Search Container */
.search-container {
    display: none;
}

#searchInput {
    display: none;
}

#searchBtn {
    display: none;
}

#searchBtn:hover {
    display: none;
}

.no-results-message {
    display: none;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    margin: 0 auto;
    padding: 18px 16px 12px 16px;
    border-radius: 10px;
    width: 100%;
    max-width: 340px;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.97rem;
    transition: border-color 0.3s ease;
    margin-bottom: 0;
}

.form-group textarea {
    min-height: 48px;
    resize: vertical;
}

.form-group label {
    margin-bottom: 2px;
    font-size: 0.97rem;
}

.modal-content h2 {
    font-size: 1.18rem;
    margin-bottom: 12px;
    font-weight: 700;
    text-align: left;
}

.close {
    position: absolute;
    right: 12px;
    top: 10px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s ease;
}

.close:hover {
    color: #000;
}

@media (max-width: 600px) {
    .modal-content {
        max-width: 98vw;
        padding: 8px 2vw 6px 2vw;
    }
    .modal {
        align-items: flex-start;
        padding-top: 18px;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #e67e22;
    box-shadow: 0 0 0 2px rgba(230, 126, 34, 0.1);
}

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

/* Response Message */
.response-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
}

.response-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.response-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 70vw;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        box-shadow: 2px 0 20px rgba(0,0,0,0.08);
        z-index: 2000;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px 20px 20px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform: translateX(-100%);
        opacity: 0;
    }
    nav.active {
        display: flex;
        transform: translateX(0);
        opacity: 1;
    }
    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    nav ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    nav ul li:last-child {
        border-bottom: none;
    }
    nav ul li a {
        display: block;
        padding: 18px 0;
        font-size: 1.1rem;
    }
    .dropdown-content {
        position: static;
        box-shadow: none;
        background: #f8f9fa;
        margin-left: 10px;
        display: none;
    }
    .dropdown.active .dropdown-content {
        display: block;
    }
    .mobile-menu {
        display: block;
        font-size: 2rem;
        cursor: pointer;
        color: #2c3e50;
        z-index: 2100;
        margin-left: 10px;
    }
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.3);
        z-index: 1999;
    }
    nav.active ~ .nav-overlay {
        display: block;
    }
    .search-container {
        order: 1;
        margin-left: 0;
        width: 100%;
    }
    #searchInput {
        flex: 1;
        min-width: auto;
    }
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px;
        font-size: 14px;
    }
}

@media (min-width: 769px) {
    .nav-overlay {
        display: none !important;
    }
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1556228453-efd6c1ff04f6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background-color: white;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
}

.living-room {
    background-image: url('https://images.unsplash.com/photo-1567016376408-0226e4d0c1ea?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.bedroom {
    background-image: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.dining {
    background-image: url('https://images.unsplash.com/photo-1533090161767-e6ffed986c88?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.office {
    background-image: url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.category-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Featured Products Section */
.featured-products {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        display: block !important;
        gap: 0 !important;
        padding: 0 !important;
    }
    .product-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
        display: block !important;
        box-sizing: border-box !important;
    }
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
}

.product1 {
    background-image: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.product2 {
    background-image: url('https://images.unsplash.com/photo-1530018607912-eff2daa1bac4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1351&q=80');
}

.product3 {
    background-image: url('https://images.unsplash.com/photo-1519947486511-46149fa0a254?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.product4 {
    background-image: url('https://images.unsplash.com/photo-1505693314120-0d443867891c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.product-card h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.price {
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.rating {
    color: #f39c12;
    margin-bottom: 15px;
}

.rating span {
    color: #7f8c8d;
    margin-left: 5px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.about-image {
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote {
    font-size: 2rem;
    color: #e67e22;
    margin-bottom: 15px;
}

.testimonial-card p {
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
}

.customer {
    display: flex;
    align-items: center;
}

.customer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 15px;
}

.customer1 {
    background-image: url('https://randomuser.me/api/portraits/women/44.jpg');
}

.customer2 {
    background-image: url('https://randomuser.me/api/portraits/men/32.jpg');
}

.customer3 {
    background-image: url('https://randomuser.me/api/portraits/women/68.jpg');
}

.customer-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.customer-info p {
    margin: 0;
    font-style: normal;
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background-color: #2c3e50;
    color: white;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.newsletter p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.newsletter-form .btn {
    border-radius: 0 4px 4px 0;
    padding: 0 20px;
}

/* Footer Section */
footer {
    background-color: #34495e;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-col p {
    margin-bottom: 15px;
    color: #bdc3c7;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #e67e22;
}

address p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

address p i {
    margin-right: 10px;
    color: #e67e22;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about .container {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .about-content .section-title,
    .about-content p {
        text-align: center;
    }
    
    .about-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-content .btn {
        display: block;
        margin: 0 auto;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter-form .btn {
        border-radius: 4px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    address p {
        justify-content: center;
    }
}

/* Collection Banner Styles */
.collection-banner {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    position: relative;
}

.collection-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.collection-banner .container {
    position: relative;
    z-index: 1;
}

.collection-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.collection-banner p {
    font-size: 1.2rem;
}

/* Banner Background Images */
.living-room-banner {
    background-image: url('https://images.unsplash.com/photo-1567016376408-0226e4d0c1ea?ixlib=rb-1.2.1');
}

.bedroom-banner {
    background-image: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?ixlib=rb-1.2.1');
}

.dining-banner {
    background-image: url('https://images.unsplash.com/photo-1533090161767-e6ffed986c88?ixlib=rb-1.2.1');
}

.tables-banner {
    background-image: url('https://images.unsplash.com/photo-1530018607912-eff2daa1bac4?ixlib=rb-1.2.1');
}

/* Filter Styles */
.filters {
    padding: 20px 0;
    background-color: #f5f5f5;
    margin-bottom: 40px;
}

.filter-options {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.filter-options select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    min-width: 150px;
}

/* Products Grid Styles */
.products-grid {
    padding: 40px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card .description {
    display: none;
}

.product-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    transition: all 0.3s ease;
}

.pagination a.active,
.pagination a:hover {
    background-color: #e67e22;
    color: white;
    border-color: #e67e22;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .filter-options {
        flex-direction: column;
        align-items: stretch;
    }

    .collection-banner {
        height: 200px;
    }

    .collection-banner h1 {
        font-size: 2rem;
    }

    .collection-banner p {
        font-size: 1rem;
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: #e67e22;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Contact Section Styles */
.contact {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #555;
}

.contact-info p i {
    margin-right: 10px;
    color: #e67e22;
    width: 20px;
}

.contact-form form {
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Order Form Section Styles */
.order-form-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.order-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e67e22;
}

.form-group select {
    background-color: white;
    cursor: pointer;
}

.response-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

.response-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.response-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.response-message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Remove duplicate modal styles - using the ones above */

/* Button styles are already defined above */

/* Search styles are already defined above and hidden */

@media (max-width: 768px) {
    .search-container {
        width: 100%;
        margin: 10px 0;
    }
    
    #searchInput {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .order-form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
}

/* Top Contact Bar */
.top-contact-bar {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-contact-bar .contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.top-contact-bar .contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: black;
}

.top-contact-bar .contact-info i {
    color: #3498db;
}

.top-contact-bar .contact-info a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-contact-bar .contact-info a:hover {
    color: #3498db;
}

/* Responsive design for top contact bar */
@media (max-width: 768px) {
    .top-contact-bar .contact-info {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .top-contact-bar {
        padding: 10px 0;
        font-size: 12px;
    }
}

/* Videos Section */
.videos-section {
    background: #f8f9fa;
    padding: 40px 0 30px 0;
    margin-bottom: 0;
}
.videos-section .section-title {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}
.videos-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.video-wrapper {
    flex: 1 1 350px;
    max-width: 500px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.08);
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-wrapper video {
    width: 100%;
    border-radius: 8px;
    outline: none;
    background: #000;
}
@media (max-width: 900px) {
    .videos-grid {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .video-wrapper {
        max-width: 100%;
    }
}

/* Mobile menu close button styles */
.mobile-menu-close {
    display: none;
    position: absolute;
    top: 22px;
    right: 30px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #2c3e50;
    z-index: 2001;
    cursor: pointer;
}

nav.active .mobile-menu-close {
    display: block;
}

@media (max-width: 768px) {
    .mobile-menu-close {
        display: none;
    }
    nav.active .mobile-menu-close {
        display: block;
    }
    nav.active ~ .mobile-menu {
        display: none;
    }
}
