/*
Theme Name: The Queen Manti Theme
Description: Premium Turkish manti manufacturer theme with B2B focus and modern design
Version: 2.0
Author: Custom Developer
*/

/* Import External Resources */
@import url('https://cdn.tailwindcss.com/3.4.16');
@import url('https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.min.css');
@import url('https://fonts.googleapis.com/css2?family=Pacifico:wght@400&display=swap');

/* Custom CSS Variables - Gold Theme */
:root {
    --primary: #B8860B;
    --secondary: #DAA520;
    --accent: #ff6b6b;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --border-color: #e5e7eb;
}

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

body {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

/* Hero Background */
.hero-bg {
    background-image: url('https://readdy.ai/api/search-image?query=Premium%20Turkish%20manti%20dumplings%20on%20elegant%20white%20porcelain%20plate%20with%20golden%20decorative%20elements%2C%20traditional%20Turkish%20cuisine%2C%20professional%20food%20photography%2C%20clean%20white%20background%2C%20soft%20natural%20lighting%2C%20appetizing%20presentation%2C%20commercial%20kitchen%20setting%2C%20hygiene%20standards%20visible%2C%20international%20quality%20food%20production&width=1920&height=1080&seq=hero001&orientation=landscape');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Typography */
.font-pacifico {
    font-family: 'Pacifico', cursive !important;
}

/* Custom Color Classes */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-primary\/10 {
    background-color: rgba(184, 134, 11, 0.1) !important;
}

.bg-primary\/90 {
    background-color: rgba(184, 134, 11, 0.9) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.hover\:bg-primary:hover {
    background-color: var(--primary) !important;
}

.hover\:bg-primary\/90:hover {
    background-color: rgba(184, 134, 11, 0.9) !important;
}

.hover\:text-primary:hover {
    color: var(--primary) !important;
}

.focus\:ring-primary:focus {
    --tw-ring-color: var(--primary) !important;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: rgba(184, 134, 11, 0.9);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

/* Rounded Button Override */
.\!rounded-button,
.rounded-button {
    border-radius: 8px !important;
}

/* Card Styles */
.product-card {
    transition: all 0.3s ease;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

.solution-card {
    transition: all 0.3s ease;
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

/* Header Styles */
header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 50;
}

/* Navigation */
nav a {
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary) !important;
}

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

/* Product Filter Buttons */
.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

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

.filter-btn:not(.active) {
    color: #6b7280;
    background-color: transparent;
}

.filter-btn:not(.active):hover {
    color: var(--primary);
}

/* Icon Styles */
.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Social Links */
.social-link {
    transition: all 0.3s ease;
    background-color: #374151;
    border-radius: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #111827;
    color: white;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: white !important;
}

/* Utility Classes */
.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.transition-colors {
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.transition-shadow {
    transition: box-shadow 0.15s ease;
}

/* Mobile Menu Styles */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

#mobile-menu:not(.hidden) {
    max-height: 500px;
    transition: max-height 0.3s ease-in;
}

#mobile-menu nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

#mobile-menu nav a:last-child {
    border-bottom: none;
}

#mobile-search-overlay {
    animation: fadeIn 0.2s ease-out;
}

#mobile-search-overlay.hidden {
    animation: fadeOut 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-outline {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    /* Mobile menu button styles */
    #mobile-menu-btn {
        position: relative;
    }
    
    #mobile-menu-btn i {
        transition: opacity 0.2s ease;
    }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-bounce {
    animation: bounce 1s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
} 

/* Product Detail Page Styles */
.product-gallery {
    position: relative;
}

.gallery-thumb {
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-thumb:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.gallery-thumb img {
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

/* Tab Navigation Styles */
.tab-button {
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-button.active {
    background-color: white !important;
    color: var(--primary) !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.tab-button:not(.active):hover {
    color: var(--primary);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
    display: block;
}

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

/* Product Specification Tables */
.product-specs {
    border-collapse: collapse;
    width: 100%;
}

.product-specs td {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.product-specs td:first-child {
    font-weight: 500;
    color: #374151;
}

.product-specs td:last-child {
    color: #111827;
    text-align: right;
}

/* Nutrition Facts Card */
.nutrition-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.nutrition-header {
    text-align: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #111827;
    padding-bottom: 0.5rem;
}

.nutrition-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.nutrition-row:last-child {
    border-bottom: none;
}

/* Package Cards */
.package-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.package-card.popular {
    border-color: var(--primary) !important;
    position: relative;
}

.package-popular-badge {
    background-color: var(--primary);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    margin: 0 auto 0.5rem auto;
    width: fit-content;
}

/* Certification Cards */
.cert-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.cert-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.cert-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

/* Cooking Instructions */
.cooking-method {
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid;
    margin-bottom: 1.5rem;
}

.cooking-method.boiling {
    background-color: #eff6ff;
    border-color: #bfdbfe;
}

.cooking-method.steaming {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
}

.cooking-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.cooking-step:last-child {
    margin-bottom: 0;
}

.step-number {
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.boiling .step-number {
    background-color: #bfdbfe;
    color: #1e3a8a;
}

.steaming .step-number {
    background-color: #bbf7d0;
    color: #14532d;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.star-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.star-icon {
    color: #fbbf24;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.25rem;
}

.customer-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Related Products */
.related-product-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-product-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Form Styles */
.product-form {
    background: white;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

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

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    appearance: none;
}

/* Health Benefits Icons */
.health-benefit-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.health-benefit-icon.protein {
    background-color: #dbeafe;
    color: #2563eb;
}

.health-benefit-icon.natural {
    background-color: #dcfce7;
    color: #16a34a;
}

.health-benefit-icon.balanced {
    background-color: #fed7aa;
    color: #ea580c;
}

/* Breadcrumb Styles */
.breadcrumb {
    background-color: #f9fafb;
    padding: 1rem 0;
}

.breadcrumb-item {
    color: #6b7280;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: var(--primary);
}

.breadcrumb-separator {
    color: #9ca3af;
    margin: 0 0.5rem;
}

.breadcrumb-current {
    color: #111827;
    font-weight: 500;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: rgba(184, 134, 11, 0.9);
    transform: translateY(-1px);
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
}

/* Product Details Grid */
.product-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-detail-item h3 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.product-detail-item p {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

/* Key Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #374151;
}

.features-list li:last-child {
    margin-bottom: 0;
}

.feature-check {
    color: #059669;
    margin-right: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .cooking-step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-number {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}

/* Print Styles */
@media print {
    .tab-button,
    .action-buttons,
    .breadcrumb {
        display: none !important;
    }
    
    .tab-content {
        display: block !important;
    }
    
    .product-detail-grid {
        break-inside: avoid;
    }
} 

/* About Us Page Specific Styles */
.hero-bg {
    background-image: url('https://readdy.ai/api/search-image?query=Modern%20Turkish%20manti%20manufacturing%20facility%20exterior%20view%2C%20clean%20industrial%20building%20with%20company%20signage%2C%20professional%20architecture%2C%20blue%20sky%20background%2C%20well%20maintained%20grounds&width=1920&height=1080&seq=about001&orientation=landscape');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* About Page Value Cards */
.about-value-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* About Statistics */
.about-stat {
    transition: all 0.3s ease;
}

.about-stat:hover {
    transform: scale(1.05);
}

/* Mission Statement Card */
.mission-statement-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.mission-statement-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Facility Features Grid */
.facility-feature {
    transition: all 0.3s ease;
    cursor: pointer;
}

.facility-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.facility-feature-icon {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(218, 165, 32, 0.1) 100%);
    transition: all 0.3s ease;
}

.facility-feature:hover .facility-feature-icon {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.2) 0%, rgba(218, 165, 32, 0.2) 100%);
}

/* Quality Features List */
.quality-feature-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.quality-feature-item:hover {
    background-color: #f9fafb;
    transform: translateX(5px);
}

.quality-feature-icon {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(218, 165, 32, 0.1) 100%);
    transition: all 0.3s ease;
}

.quality-feature-item:hover .quality-feature-icon {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.2) 0%, rgba(218, 165, 32, 0.2) 100%);
    transform: scale(1.1);
}

/* Certification Badges */
.certification-badge {
    transition: all 0.3s ease;
    cursor: pointer;
}

.certification-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Facility Stats Cards */
.facility-stat-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.facility-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

/* Certification Tags */
.certification-tag {
    transition: all 0.3s ease;
}

.certification-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(34, 197, 94, 0.2);
}

/* About CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

/* Image Hover Effects */
.about-image {
    transition: all 0.3s ease;
    overflow: hidden;
}

.about-image img {
    transition: all 0.3s ease;
}

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

/* Hero Section Overlay Animation */
.hero-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), transparent);
    animation: overlayFade 1s ease-out;
}

@keyframes overlayFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Text Animation for Hero */
.hero-text-animate {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Title Underline Effect */
.section-title-underline {
    position: relative;
}

.section-title-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 2px;
}

/* Value Icon Animation */
.value-icon {
    transition: all 0.3s ease;
}

.about-value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Manufacturing Stats Grid */
.manufacturing-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

/* Timeline Effect for History */
.history-timeline {
    position: relative;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 2px;
}

/* Responsive Adjustments for About Page */
@media (max-width: 768px) {
    .hero-bg {
        min-height: 60vh;
    }
    
    .about-value-card {
        margin-bottom: 1rem;
    }
    
    .facility-stat-card {
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .quality-feature-item {
        padding: 0.75rem;
    }
    
    .manufacturing-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .manufacturing-stats {
        grid-template-columns: 1fr;
    }
    
    .about-cta-section .flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-cta-section button {
        width: 100%;
    }
}

/* Print Styles for About Page */
@media print {
    .hero-bg {
        background: none;
        color: #000;
    }
    
    .hero-overlay {
        display: none;
    }
    
    .about-value-card,
    .facility-feature,
    .quality-feature-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
} 

/* Enhanced Form Styles for Ingredient and Flour Selection */
.ingredient-flour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ingredient-select,
.flour-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
    transition: all 0.3s ease;
}

.ingredient-select:focus,
.flour-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23B8860B' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
}

.ingredient-select:hover,
.flour-select:hover {
    border-color: #d1d5db;
    background-color: #f9fafb;
}

/* Custom Select Styling */
select[name="filling_type"],
select[name="flour_type"] {
    background-color: white;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    color: #374151;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 0.75rem 3rem 0.75rem 1rem;
    transition: all 0.3s ease;
    width: 100%;
    appearance: none;
}

select[name="filling_type"]:focus,
select[name="flour_type"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
    outline: 2px solid transparent;
    outline-offset: 2px;
}

/* Option Styling */
select[name="filling_type"] option,
select[name="flour_type"] option {
    color: #374151;
    font-weight: 400;
    padding: 0.5rem 1rem;
}

select[name="filling_type"] option:first-child,
select[name="flour_type"] option:first-child {
    color: #9ca3af;
    font-style: italic;
}

select[name="filling_type"] option[value=""],
select[name="flour_type"] option[value=""] {
    color: #9ca3af;
}

/* Form Grid Enhancement */
.form-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

/* Label Enhancement for Bilingual Text */
.bilingual-label {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.bilingual-label .turkish {
    font-weight: 600;
    color: #111827;
}

.bilingual-label .english {
    font-size: 0.8rem;
    color: #6b7280;
    font-style: italic;
}

/* Ingredient Icons */
.ingredient-icon {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.flour-icon {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Enhanced Form Validation Styles */
select[name="filling_type"]:invalid,
select[name="flour_type"]:invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

select[name="filling_type"]:valid,
select[name="flour_type"]:valid {
    border-color: #10b981;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .ingredient-flour-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    select[name="filling_type"],
    select[name="flour_type"] {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Custom Form Section Styling */
.custom-ingredient-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.custom-ingredient-section h4 {
    color: #111827;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

/* Ingredient Selection Enhancement */
.ingredient-selection-wrapper {
    position: relative;
}

.ingredient-selection-wrapper::before {
    content: '🥟';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    z-index: 1;
}

.flour-selection-wrapper {
    position: relative;
}

.flour-selection-wrapper::before {
    content: '🌾';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    z-index: 1;
}

.ingredient-selection-wrapper select,
.flour-selection-wrapper select {
    padding-left: 3rem;
}

/* Accessibility Improvements */
select[name="filling_type"]:focus,
select[name="flour_type"]:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    select[name="filling_type"],
    select[name="flour_type"] {
        transition: none;
    }
}

/* Print Styles */
@media print {
    .ingredient-flour-grid,
    .form-grid-enhanced {
        display: block;
    }
    
    select[name="filling_type"],
    select[name="flour_type"] {
        border: 1px solid #000;
        background: white;
        -webkit-appearance: none;
        appearance: none;
    }
} 