/**
 * Mis Fırın - Porus Style Theme
 * Pixel-perfect Turkish adaptation
 */

:root {
    /* Porus Colors */
    --primary: #c9a35f;
    --primary-dark: #b8934f;
    --brown: #4a3728;
    --brown-dark: #3d2b1f;
    --brown-light: #5c4a3a;
    --cream: #f8f5f0;
    --cream-dark: #f0ebe3;
    --white: #ffffff;
    --text: #666666;
    --text-dark: #333333;
    --border: #e5e5e5;
    --green: #7cb342;
    --red: #e53935;

    /* Fonts */
    --font-script: 'Great Vibes', cursive;
    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Poppins', sans-serif;

    /* Sizing */
    --container: 1200px;
    --header-height: 100px;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 15px;
}

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--brown);
    line-height: 1.3;
}

.script-title {
    font-family: var(--font-script);
    font-weight: 400;
    color: var(--brown);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Decorative Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0 20px;
}

.divider-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.divider-icon {
    color: var(--primary);
    font-size: 18px;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--brown);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.btn-brown {
    background: var(--brown);
    color: var(--white);
}

.btn-brown:hover {
    background: var(--brown-dark);
}

/* =============================================
   HEADER / NAVIGATION
============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border-bottom-color: transparent;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: 0 40px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Menu */
.nav-left {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-left a {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--brown);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

/* Center Logo */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    padding: 10px 20px;
}

.logo-icon {
    font-size: 42px;
    margin-bottom: 0;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-name {
    font-family: 'Great Vibes', cursive;
    font-size: 30px;
    color: var(--brown);
    font-weight: 400;
    display: block;
    line-height: 1.1;
}

.logo-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-top: 3px;
    display: block;
    font-weight: 500;
}

/* Right Header */
.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--text-dark);
    padding-right: 20px;
    border-right: 1px solid var(--border);
}

.header-time svg {
    flex-shrink: 0;
    stroke: var(--primary);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-icon-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--brown);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-icon-btn:hover {
    color: var(--primary);
}

.header-icon-btn svg {
    stroke: currentColor;
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--brown);
    transition: all 0.3s;
}

.nav-toggle.active {
    z-index: 1001;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   PAGE HEADER (Breadcrumb Area)
============================================= */
.page-header {
    padding: 140px 0 60px;
    background: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Windmill decorations */
.page-header::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="80" font-size="60" opacity="0.15">🌾</text></svg>') no-repeat;
    background-size: contain;
    opacity: 0.3;
}

.page-header::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 250px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="80" font-size="50" opacity="0.2">🏭</text></svg>') no-repeat right bottom;
    background-size: contain;
    opacity: 0.2;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 15px;
}

.breadcrumb a {
    color: var(--brown);
}

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

.breadcrumb span {
    margin: 0 8px;
    color: var(--border);
}

.page-header h1 {
    font-family: var(--font-script);
    font-size: 60px;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 10px;
}

.page-header-desc {
    font-size: 15px;
    color: var(--text);
    max-width: 500px;
    margin: 0 auto;
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
    padding: 120px 0 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

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

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 50% 50% 0 0;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    border-radius: 50% 50% 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150px;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-family: var(--font-script);
    font-size: 72px;
    font-weight: 400;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Decorative bread icons */
.hero-decor {
    position: absolute;
    font-size: 40px;
    opacity: 0.6;
}

.hero-decor-1 { top: 20%; right: 10%; }
.hero-decor-2 { bottom: 30%; right: 5%; }
.hero-decor-3 { top: 40%; left: 45%; }

/* =============================================
   ABOUT SECTION
============================================= */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

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

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
}

.about-image-placeholder {
    width: 100%;
    height: 300px;
    background: var(--cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.about-content {
    text-align: center;
    padding: 0 20px;
}

.about-content h2 {
    font-family: var(--font-script);
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
}

/* Side decorative icons */
.about-decor {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.about-decor-item {
    font-size: 50px;
    opacity: 0.7;
}

/* =============================================
   PRODUCTS / BEST SELLERS
============================================= */
.products-section {
    padding: 100px 0;
    background: var(--white);
}

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

.section-header h2 {
    font-family: var(--font-script);
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 15px;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
}

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

.product-card {
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    background: var(--cream);
}

.product-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    border-radius: 3px;
}

.product-badge.sale {
    background: var(--primary);
}

.product-badge.hot {
    background: var(--red);
}

.product-badge.new {
    background: var(--green);
}

.product-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 5px;
}

.product-title:hover {
    color: var(--primary);
}

.product-category {
    font-size: 12px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
}

.product-price .old-price {
    text-decoration: line-through;
    color: var(--text);
    margin-right: 8px;
    font-weight: 400;
}

.product-rating {
    margin-top: 8px;
    color: var(--primary);
    font-size: 12px;
}

/* =============================================
   TWO COLUMN FEATURE
============================================= */
.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.feature-box {
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 50px;
    background-size: cover;
    background-position: center;
}

.feature-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.feature-box-placeholder {
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-box-placeholder::before {
    display: none;
}

.feature-box-placeholder .feature-icon {
    font-size: 100px;
    margin-bottom: 20px;
}

.feature-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.feature-box-placeholder .feature-content {
    color: var(--brown);
}

.feature-content h3 {
    font-family: var(--font-script);
    font-size: 42px;
    font-weight: 400;
    color: inherit;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* =============================================
   VIDEO / PROMO SECTION
============================================= */
.video-section {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.video-section-placeholder {
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
}

.video-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.video-content .section-subtitle {
    color: var(--primary);
}

.video-content h2 {
    font-family: var(--font-script);
    font-size: 56px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 30px;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--primary);
    color: var(--white);
}

/* =============================================
   RESERVATION / CONTACT SECTION
============================================= */
.reservation-section {
    padding: 80px 0;
    background: var(--brown-dark);
    color: var(--white);
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.reservation-form h2,
.store-info h2 {
    font-family: var(--font-script);
    font-size: 42px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px;
}

.reservation-form p {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 30px;
}

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

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

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

.form-group select option {
    background: var(--brown-dark);
    color: var(--white);
}

/* Store Info */
.store-info {
    padding-left: 40px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.store-location {
    margin-bottom: 30px;
}

.store-location h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 15px;
}

.store-location p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.store-location a {
    color: var(--white);
}

.store-location a:hover {
    color: var(--primary);
}

.store-hours h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 15px;
}

.store-hours p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 5px;
}

/* =============================================
   TEAM / BAKER SECTION
============================================= */
.team-section {
    padding: 100px 0;
    background: var(--cream);
}

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

.team-image img {
    width: 100%;
    border-radius: 10px;
}

.team-image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--cream-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

.team-content h2 {
    font-family: var(--font-script);
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}

.team-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.team-members {
    display: flex;
    gap: 40px;
}

.team-member {
    text-align: center;
}

.team-member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
}

.team-member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.team-member h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 0;
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 3px solid var(--primary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 25px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--brown);
}

.testimonial-author span {
    font-weight: 400;
    color: var(--primary);
}

/* =============================================
   AWARDS SECTION
============================================= */
.awards-section {
    padding: 100px 0;
    background: var(--cream);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.award-item {
    text-align: center;
    padding: 30px 20px;
}

.award-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.award-item h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--brown);
    margin-bottom: 10px;
}

.award-years {
    font-size: 13px;
    color: var(--primary);
    display: block;
    margin-bottom: 15px;
}

.award-item p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

/* =============================================
   HISTORY SECTION
============================================= */
.history-section {
    padding: 100px 0;
    background: var(--white);
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.history-image {
    position: relative;
}

.history-image img {
    width: 100%;
    border-radius: 10px;
    filter: sepia(30%);
}

.history-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #d4c5a9 0%, #c9b896 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    filter: sepia(30%);
}

.history-content h2 {
    font-family: var(--font-script);
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 30px;
}

.history-content h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}

.history-content p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.history-signature {
    font-family: var(--font-script);
    font-size: 36px;
    color: var(--brown);
}

/* Signature */
.signature {
    margin-top: 30px;
}

.signature-text {
    font-family: var(--font-script);
    font-size: 32px;
    color: var(--brown);
    display: block;
    margin-bottom: 5px;
}

.signature-title {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

/* =============================================
   BAKER SECTION
============================================= */
.baker-section {
    padding: 100px 0;
    background: var(--cream);
}

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

.baker-image {
    position: relative;
}

.baker-image img {
    width: 100%;
}

.baker-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #d4c5a9 0%, #c9b896 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    filter: sepia(30%);
}

.baker-team {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.baker-member {
    text-align: center;
}

.baker-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--primary);
}

.baker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.baker-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.baker-member h4 {
    font-size: 18px;
    color: var(--brown);
    margin-bottom: 5px;
}

.baker-member span {
    font-size: 13px;
    color: var(--text);
}

/* =============================================
   TESTIMONIALS PAGE SECTION
============================================= */
.testimonials-page-section {
    padding: 80px 0 100px;
    background: var(--white);
}

.testimonial-large {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px;
    border: 3px solid var(--primary);
}

.testimonial-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-large blockquote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.testimonial-author-large strong {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--brown);
}

.testimonial-author-large span {
    font-size: 14px;
    color: var(--primary);
}

/* =============================================
   SHOP / MENU PAGE
============================================= */
.shop-section {
    padding: 60px 0 100px;
    background: var(--white);
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.category-btn {
    padding: 10px 25px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.category-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.category-btn:hover,
.category-btn.active {
    color: var(--primary);
}

.category-btn.active::after {
    width: 100%;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.shop-result {
    font-size: 14px;
    color: var(--text);
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: 15px;
}

.shop-sort select {
    padding: 10px 20px;
    border: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
}

/* =============================================
   MAP SECTION
============================================= */
.map-section {
    position: relative;
}

.map-wrapper {
    height: 500px;
    background: var(--cream);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.map-logo {
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* =============================================
   FOOTER
============================================= */
.footer {
    background: var(--brown-dark);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

/* Footer decorative background */
.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><text x="100" y="180" font-size="150" opacity="0.05">🌾🏭🌾</text></svg>') repeat-x bottom;
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    font-size: 50px;
}

.footer-logo-text {
    font-family: var(--font-script);
    font-size: 32px;
    color: var(--white);
}

.footer-logo-sub {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
}

.footer-info p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-info a:hover {
    color: var(--primary);
}

.footer-copyright {
    font-size: 13px;
    opacity: 0.6;
    margin-top: 20px;
}

/* Newsletter */
.footer-newsletter h4 {
    font-family: var(--font-script);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-newsletter p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form button {
    padding: 15px 25px;
    background: var(--primary);
    border: none;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

/* Footer Hours */
.footer-hours h4 {
    font-family: var(--font-script);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-hours p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
    color: var(--primary);
}

.footer-payment {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-payment img {
    height: 25px;
    opacity: 0.7;
}

.footer-payment span {
    font-size: 24px;
    opacity: 0.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    opacity: 0.6;
}

/* =============================================
   WHATSAPP BUTTON
============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 45px;
    height: 45px;
    background: var(--brown);
    color: var(--white);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
}

/* =============================================
   ALERTS & NOTIFICATIONS
============================================= */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

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

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

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 1024px) {
    .header-inner {
        padding: 0 20px;
    }

    .nav-left {
        display: none;
    }

    .nav-left.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
        padding: 20px;
    }

    .nav-left.active a {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .nav-left.active a::after {
        bottom: -5px;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .logo {
        position: relative;
        left: auto;
        transform: none;
    }

    .logo-icon {
        font-size: 35px;
    }

    .logo-name {
        font-size: 26px;
    }

    .header-time {
        display: none;
    }

    .header-icons {
        gap: 12px;
    }

    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 9px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .about-decor {
        display: none;
    }

    .feature-section {
        grid-template-columns: 1fr;
    }

    .reservation-grid {
        grid-template-columns: 1fr;
    }

    .store-info {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.2);
        padding-top: 40px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .history-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 42px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .section-header h2,
    .about-content h2,
    .team-content h2,
    .history-content h2 {
        font-size: 36px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .video-content h2 {
        font-size: 36px;
    }
}

/* =============================================
   CONTACT / ILETISIM PAGE
============================================= */
.contact-section {
    padding: 80px 0;
    background: var(--cream);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info-box {
    background: var(--brown);
    color: var(--white);
    padding: 40px;
}

.contact-info-box h2 {
    font-size: 24px;
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
}

.info-item strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 4px;
}

.info-item p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.info-item a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s;
}

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

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--border);
}

.contact-form-box h2 {
    font-size: 24px;
    font-family: var(--font-heading);
    margin-bottom: 25px;
    color: var(--brown);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.map-container {
    margin-top: 40px;
    height: 400px;
    background: var(--cream-dark);
    border: 1px solid var(--border);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

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

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 8px;
}

.contact-form label .required {
    color: var(--red);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color 0.3s ease;
}

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

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

.contact-form .form-note {
    font-size: 13px;
    color: var(--text);
    font-style: italic;
    margin: 15px 0;
}

.contact-form .btn-block {
    width: 100%;
    margin-top: 10px;
}

/* Store Info */
.store-location {
    margin-top: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.store-location h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 15px;
}

.store-location p {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.store-location .icon {
    font-size: 16px;
    flex-shrink: 0;
}

.store-location a {
    color: var(--text);
}

.store-location a:hover {
    color: var(--primary);
}

.working-hours {
    margin-top: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.working-hours h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 15px;
}

.working-hours p {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.working-hours .icon {
    font-size: 16px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--brown);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Contact Decorations */
.contact-decor {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    opacity: 0.3;
}

.contact-decor .wheat-icon {
    font-size: 80px;
}

/* Map Section */
.map-section {
    height: 400px;
    background: var(--cream-dark);
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.map-placeholder .map-icon {
    font-size: 60px;
    opacity: 0.5;
    margin-bottom: 15px;
}

.map-placeholder p {
    font-size: 14px;
    color: var(--text);
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Page Header Breadcrumb */
.page-header-content .breadcrumb {
    font-size: 13px;
    margin-bottom: 15px;
}

.page-header-content .breadcrumb a {
    color: var(--brown);
}

.page-header-content .breadcrumb a:hover {
    color: var(--primary);
}

.page-header-content .breadcrumb .separator {
    margin: 0 10px;
    color: var(--primary);
}

.page-header-content .page-title {
    font-family: var(--font-script);
    font-size: 56px;
    font-weight: 400;
    color: var(--brown);
    margin-bottom: 15px;
}

.page-header-content .page-subtitle {
    font-size: 14px;
    color: var(--text);
    margin-top: 15px;
}

/* Page Header Decoration */
.page-header-decor {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.15;
}

.page-header-decor .windmill {
    font-size: 150px;
    color: var(--brown);
}

/* =============================================
   SHOP / MENU PAGE
============================================= */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.category-tab {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--brown);
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.shop-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.results-count {
    font-size: 14px;
    color: var(--text);
}

.shop-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sort-select {
    padding: 10px 35px 10px 15px;
    border: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-dark);
    background: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.shop-product {
    text-align: center;
}

.shop-product-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--cream);
}

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

.shop-product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
}

.badge-new {
    background: var(--green);
}

.badge-hot {
    background: #e53935;
}

.badge-discount {
    background: var(--primary);
}

.shop-product-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 5px;
}

.shop-product-category {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 10px;
}

.shop-product-price {
    font-size: 15px;
    color: var(--primary);
    font-weight: 500;
}

.shop-product-price .old-price {
    text-decoration: line-through;
    color: var(--text);
    margin-right: 8px;
    font-size: 13px;
}

.shop-product-price .current-price {
    color: var(--primary);
}

/* No Products */
.no-products {
    text-align: center;
    padding: 60px 20px;
    color: var(--text);
}

/* Shop Pagination */
.shop-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.shop-pagination .page-num,
.shop-pagination .page-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.shop-pagination .page-num:hover,
.shop-pagination .page-num.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.shop-pagination .page-next:hover {
    border-color: var(--primary);
    color: var(--primary);
}

@media (max-width: 992px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-header-decor {
        display: none;
    }

    .history-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .baker-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-box,
    .contact-info-box {
        padding: 25px;
    }

    .page-header-content .page-title {
        font-size: 42px;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .shop-product-image {
        width: 150px;
        height: 150px;
    }

    .shop-product-placeholder {
        font-size: 45px;
    }

    .category-tabs {
        gap: 15px;
    }

    .category-tab {
        font-size: 11px;
    }

    .shop-toolbar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .baker-team {
        flex-direction: column;
        gap: 30px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .whatsapp-float {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }

    .page-header-content .page-title {
        font-size: 32px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }

    .shop-product-image {
        width: 180px;
        height: 180px;
    }

    .category-tabs {
        gap: 10px;
    }

    .category-tab {
        font-size: 10px;
        letter-spacing: 1px;
    }
}
