/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Crospain Orange Renk Paleti */
    --primary-color: #FF8C42;        /* Bright Orange - Parlak Turuncu */
    --secondary-color: #FF6B35;      /* Coral Orange - Mercan Turuncu */
    --dark-color: #3D2817;           /* Dark Brown - Koyu Kahverengi */
    --light-color: #FFF4E6;          /* Light Cream - Açık Krem */
    --accent-color: #FFB84D;         /* Light Orange/Gold - Açık Turuncu */
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: rgba(255, 140, 66, 0.15);
    --transition: all 0.3s ease;
    --bg-primary: #ffffff;
    --bg-secondary: #FFF4E6;
    --nav-bg: #ffffff;
}

[data-theme="dark"] {
    --dark-color: #e8e6e3;
    --light-color: #1a1a1a;
    --text-dark: #e8e6e3;
    --text-light: #b0b0b0;
    --white: #2a2a2a;
    --shadow: rgba(255, 255, 255, 0.1);
    --bg-primary: #2a2a2a;
    --bg-secondary: #353535;
    --nav-bg: #2f2f2f;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--nav-bg);
    box-shadow: 0 2px 10px var(--shadow);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    padding: 0;
    margin: 0 5px;
    flex-shrink: 0;
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 10;
}

.theme-toggle i {
    display: block;
    line-height: 1;
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(20deg);
}

.theme-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Login and Register Buttons */
.btn-login {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    padding: 8px 20px !important;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

.btn-register {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 20px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.5);
}

/* ========== Hero Section ========== */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #3D2817 0%, #2D1F14 100%); /* Deep brown gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 36, 22, 0.5);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.4s ease;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* B2B Benefits Section */
.b2b-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    perspective: 1000px;
}

.benefit-card {
    background: linear-gradient(135deg, var(--nav-bg) 0%, var(--bg-secondary) 100%);
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    text-align: center;
    border: 2px solid rgba(255, 140, 66, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.3) 0%, rgba(255, 107, 53, 0.3) 100%);
    transition: all 0.5s ease;
    z-index: 0;
}

.benefit-card:hover::before {
    left: 0;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.benefit-card:hover h3,
.benefit-card:hover p {
    color: var(--white);
}

.benefit-card:hover i {
    color: var(--white);
    transform: scale(1.2) rotateY(360deg);
}

.benefit-card i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: block;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.5);
}

/* Dark mode için btn-primary */
[data-theme="dark"] .btn-primary {
    background: var(--primary-color);
    color: #ffffff;
}

[data-theme="dark"] .btn-primary:hover {
    background: var(--secondary-color);
    color: #ffffff;
}

/* Light mode için btn-primary */
[data-theme="light"] .btn-primary,
body:not([data-theme]) .btn-primary {
    background: var(--primary-color);
    color: #ffffff;
}

[data-theme="light"] .btn-primary:hover,
body:not([data-theme]) .btn-primary:hover {
    background: var(--secondary-color);
    color: #ffffff;
}

/* Light mode için btn-secondary (varsayılan) */
.btn-secondary,
[data-theme="light"] .btn-secondary,
body:not([data-theme]) .btn-secondary {
    background: transparent;
    color: #3D2817;
    border: 2px solid #3D2817;
}

.btn-secondary:hover,
[data-theme="light"] .btn-secondary:hover,
body:not([data-theme]) .btn-secondary:hover {
    background: #3D2817;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(61, 40, 23, 0.4);
}

/* Dark mode için btn-secondary - ÖNEMLİ: Light mode'dan sonra gelmeli */
[data-theme="dark"] .btn-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
}

[data-theme="dark"] .btn-secondary:hover {
    background: #ffffff !important;
    color: #3D2817 !important;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4) !important;
}

/* Dark mode için hero text */
[data-theme="dark"] .hero-title,
[data-theme="dark"] .hero-subtitle {
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* ========== Section Styles ========== */
section {
    padding: 80px 0;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ========== About Section ========== */
.about {
    background: var(--bg-secondary);
}

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

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

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

.feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
}

/* ========== Products Section ========== */
.products {
    background: var(--bg-primary);
}

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

.product-card {
    background: var(--nav-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    border: 1px solid #ff8c00;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
    border-color: #ff6600;
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.product-content {
    padding: 25px;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ========== Order Section ========== */
.order {
    background: var(--bg-secondary);
}

.order-content {
    max-width: 800px;
    margin: 0 auto;
}

.order-form {
    background: var(--nav-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border: 1px solid rgba(255, 140, 66, 0.2);
}

.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: 500;
    color: var(--dark-color);
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.product-selection {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--light-color);
    border-radius: 8px;
}

.product-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 0;
}

.product-item input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.quantity-input {
    width: 80px !important;
    text-align: center;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

/* ========== Contact Section ========== */
.contact {
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-light);
}

.contact-form-wrapper {
    background: var(--nav-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 66, 0.2);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ========== Footer ========== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

/* Light mode footer */
[data-theme="light"] .footer,
body:not([data-theme]) .footer {
    background: #ffffff;
    color: #000000;
}

[data-theme="light"] .footer-section h3,
[data-theme="light"] .footer-section h4,
body:not([data-theme]) .footer-section h3,
body:not([data-theme]) .footer-section h4 {
    color: var(--primary-color);
}

[data-theme="light"] .footer-section p,
[data-theme="light"] .footer-section ul li a,
[data-theme="light"] .footer-bottom,
body:not([data-theme]) .footer-section p,
body:not([data-theme]) .footer-section ul li a,
body:not([data-theme]) .footer-bottom {
    color: #333333;
}

[data-theme="light"] .footer-section ul li a:hover,
body:not([data-theme]) .footer-section ul li a:hover {
    color: var(--primary-color);
}

/* Dark mode footer */
[data-theme="dark"] .footer {
    background: #000000;
    color: #ffffff;
}

[data-theme="dark"] .footer-section p,
[data-theme="dark"] .footer-section ul li a,
[data-theme="dark"] .footer-bottom {
    color: rgba(255, 255, 255, 0.85);
}

[data-theme="dark"] .footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

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

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

.social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ========== Vapi Chat Widget Styles ========== */
#vapiWidget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
}

/* Responsive adjustments for Vapi widget */
@media (max-width: 768px) {
    #vapiWidget {
        right: 16px !important;
        bottom: 16px !important;
    }
}

@media (max-width: 480px) {
    #vapiWidget {
        max-width: 280px;
    }
}

/* ========== Responsive Design ========== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .b2b-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        transition: var(--transition);
        box-shadow: 0 5px 20px var(--shadow);
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    }

    /* Keep theme toggle aligned properly in mobile menu */
    .nav-menu li:has(.theme-toggle) {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .theme-toggle {
        margin: 0;
    }

    .hero {
        height: auto;
        min-height: 500px;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image {
        height: 200px;
    }

    .b2b-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 40px 25px;
    }

    .benefit-card i {
        font-size: 4rem;
    }

    .benefit-card h3 {
        font-size: 1.3rem;
    }

    .benefit-card p {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .product-item label {
        width: 100%;
    }

    .quantity-input {
        width: 100% !important;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-map {
        min-height: 300px;
        order: 2;
    }

    .contact-info {
        order: 1;
    }

    .contact-form-wrapper {
        order: 3;
        padding: 30px 20px !important;
    }

    #email .form-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-wrapper {
        padding: 15px 0;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo .tagline {
        font-size: 0.65rem;
    }

    .hero {
        margin-top: 70px;
        min-height: 450px;
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-card i {
        font-size: 3.5rem;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
    }

    .benefit-card p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .product-title {
        font-size: 1.3rem;
    }

    .product-price {
        font-size: 1.3rem;
    }

    .order-form,
    .contact-form-wrapper {
        padding: 20px !important;
    }

    #email .contact-form-wrapper {
        padding: 20px 15px !important;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-details h4 {
        font-size: 1.1rem;
    }

    section {
        padding: 40px 0;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ========== Loading and Success Messages ========== */
.message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.message.show {
    display: block;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Contact Map */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-map {
    width: 100%;
    min-height: 400px;
}

.contact-map iframe {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-map {
        order: 2;
    }

    .contact-info {
        order: 1;
    }
}

/* ========== Loading Spinner ========== */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    grid-column: 1/-1;
    color: var(--primary-color);
}

.loading-spinner i {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.loading-spinner p {
    font-size: 1.1rem;
    color: var(--text-light);
}
