/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d66626;
    --secondary-color: #2c2c2c;
    --accent-color: #f8f4e9;
    --light-text: #ffffff;
    --gray: #666666;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: var(--light-text);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 24px;
}

.logo-text span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Navigation */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--light-text);
    box-shadow: var(--shadow);
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
}

.dropdown-menu a:hover {
    background: var(--accent-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%), url('hero-bg.jpg') center/cover;
    color: var(--light-text);
    padding: 180px 0 100px;
    text-align: center;
    margin-top: 70px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--light-text);
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--light-text);
}

.btn-category {
    padding: 8px 20px;
    font-size: 14px;
    margin-top: 10px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--accent-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-text);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--light-text);
    font-size: 24px;
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Products Section */
.products {
    padding: 100px 0;
    background: var(--light-text);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.category-card {
    background: var(--light-text);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.category-image {
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-info {
    padding: 20px;
    text-align: center;
}

.category-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.category-info p {
    color: var(--gray);
    margin-bottom: 15px;
}

.view-all {
    text-align: center;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333 100%);
    color: var(--light-text);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--light-text);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--light-text);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
}

/* Product Pages Styling */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333 100%);
    color: var(--light-text);
    padding: 140px 0 60px;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.product-gallery {
    padding: 80px 0;
    background-color: var(--light-text);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: var(--light-text);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.price {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Gallery Page Styling */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--light-text);
    font-size: 18px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

/* Contact Page Styles */
.contact-detail {
    padding: 80px 0;
    background-color: var(--light-text);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-family: 'Cinzel', serif;
}

.contact-info > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #b66320;
}

.contact-methods {
    margin-bottom: 50px;
}

.contact-method {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--accent-color);
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    margin-bottom: 15px;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: #cda127;
}

.click-indicator {
    margin-left: auto;
    color: var(--primary-color);
    font-size: 18px;
    transition: var(--transition);
}

.contact-method:hover .click-indicator {
    transform: translateX(5px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--light-text);
    font-size: 20px;
}

.method-details h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.method-details p {
    font-weight: 600;
    margin-bottom: 5px;
}

.method-details span {
    font-size: 14px;
    color: #666666;
}

.business-info {
    margin-top: 40px;
}

.business-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 18px;
}

/* FAQ Section Styles */
.faq {
    background-color: var(--accent-color);
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--light-text);
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    background-color: var(--light-text);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h4 {
    font-size: 18px;
    margin: 0;
    color: var(--secondary-color);
    font-weight: 500;
    flex: 1;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
    margin-left: 15px;
    font-size: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    background-color: var(--light-text);
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
    border-top: 1px solid #eee;
}

.faq-answer p {
    margin: 0;
    color: var(--gray);
    line-height: 1.6;
    font-size: 16px;
}

/* Animation for smooth opening */
@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.faq-item.active .faq-answer {
    animation: slideDown 0.3s ease-out;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h4 {
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--light-text);
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .nav-menu li {
        margin-bottom: 15px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--accent-color);
        margin-top: 10px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .product-categories {
        grid-template-columns: 1fr;
    }
}

/* Cart Icon Styles */
.cart-icon {
    position: relative;
    margin-left: 20px;
}

.cart-icon a {
    color: var(--secondary-color);
    font-size: 20px;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Stats Section */
.stats {
    background: var(--accent-color);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Update header container for cart icon */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Make sure navigation and cart are aligned */
.nav-menu {
    display: flex;
    align-items: center;
}

/* Mobile responsive updates */
@media (max-width: 768px) {
    .cart-icon {
        margin-left: 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-icon {
        margin-left: 10px;
    }
}
/* Quick Order Form Styles */
.quick-order-form {
    background: var(--light-text);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 0 auto;
}

.quick-order-form h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    text-align: center;
}

.quick-order-form > p {
    text-align: center;
    margin-bottom: 30px;
    color: var(--gray);
    font-size: 16px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    background: var(--light-text);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    background: var(--light-text);
}

.form-control::placeholder {
    color: #999;
    font-size: 14px;
}

/* Select dropdown styling */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    padding-right: 50px;
}

/* Textarea specific styling */
textarea.form-control {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

/* Form row for side-by-side fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Quantity selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.quantity-label {
    font-weight: 500;
    color: var(--secondary-color);
    min-width: 80px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    background: var(--light-text);
    color: var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: var(--light-text);
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-display {
    width: 60px;
    height: 40px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

/* Form actions */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--light-text);
    border: 2px solid var(--primary-color);
    flex: 2;
}

.btn-submit:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-reset {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--gray);
    flex: 1;
}

.btn-reset:hover {
    background: var(--gray);
    color: var(--light-text);
}

/* Form validation styles */
.form-control.error {
    border-color: #ff4444;
    background: #fff5f5;
}

.form-control.success {
    border-color: #00c851;
    background: #f5fff9;
}

.error-message {
    color: #ff4444;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.success-message {
    background: #00c851;
    color: var(--light-text);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    display: none;
}

.success-message.show {
    display: block;
}

/* Loading state */
.btn-loading {
    position: relative;
    color: transparent;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: var(--light-text);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form steps (for multi-step forms) */
.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.form-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e0e0e0;
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 600;
    font-size: 14px;
}

.step.active .step-number {
    background: var(--primary-color);
}

.step-label {
    font-size: 12px;
    color: var(--gray);
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: 500;
}

/* Product selection in form */
.product-selection {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.product-selection-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.product-selection-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.product-selection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-selection-info h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.product-selection-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

/* Delivery options */
.delivery-options {
    margin: 20px 0;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.delivery-option:hover {
    border-color: var(--primary-color);
}

.delivery-option.selected {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
}

.delivery-option input[type="radio"] {
    margin: 0;
}

.delivery-info {
    flex: 1;
}

.delivery-title {
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.delivery-description {
    font-size: 12px;
    color: var(--gray);
}

.delivery-price {
    font-weight: 600;
    color: var(--primary-color);
}


/* Order summary in form */
.order-summary {
    background: var(--accent-color);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.order-summary h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-family: 'Cinzel', serif;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-total {
    font-weight: 600;
    font-size: 18px;
    color: var(--secondary-color);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .quick-order-form {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-steps {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .step {
        flex: none;
        width: calc(50% - 5px);
    }
    
    .product-selection-header {
        flex-direction: column;
        text-align: center;
    }
    
    .delivery-option,
    .payment-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .quick-order-form {
        padding: 20px 15px;
    }
    
    .quick-order-form h3 {
        font-size: 24px;
    }
    
    .form-control {
        padding: 12px 15px;
    }
    
    .quantity-selector {
        flex-direction: column;
        gap: 10px;
    }
    
    .step {
        width: 100%;
    }
}

/* Animation for form elements */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    animation: slideIn 0.5s ease-out;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }

/* Focus states for accessibility */
.form-control:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .form-control {
        border-width: 3px;
    }
    
    .btn {
        border-width: 3px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .form-group {
        animation: none;
    }
    
    .btn-loading::after {
        animation-duration: 2s;
    }
}
/* 2-Row Layout for Product Categories */
.product-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.category-card {
    background: var(--light-text);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.category-info p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 14px;
    flex-grow: 1;
}

.btn-category {
    padding: 8px 16px;
    font-size: 13px;
}

/* Responsive for 2-row layout */
@media (max-width: 1024px) {
    .product-categories {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-categories {
        grid-template-columns: 1fr;
    }
}