﻿/* =====================================================
   Åerbetli - Ana Stil DosyasÄ±
   OsmanlÄ± Ä°lhamlÄ± Gold & Burgundy TasarÄ±m Sistemi
   ===================================================== */

/* â”€â”€â”€ CSS DeÄŸiÅŸkenleri â”€â”€â”€ */
:root {
    --gold: #D4AF37;
    --gold-light: #E8D48B;
    --gold-dark: #B8960C;
    --burgundy: #4A0404;
    --burgundy-light: #6B1515;
    --burgundy-dark: #2D0202;
    --cream: #FDFCF5;
    --cream-dark: #F5F0E1;
    --text: #2C3E50;
    --text-light: #6B7B8D;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --success: #2ECC71;
    --danger: #E74C3C;
    --warning: #F39C12;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

/* â”€â”€â”€ Reset & Base â”€â”€â”€ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

em {
    font-style: italic;
    color: var(--gold);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(42, 2, 2, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    font-size: 2rem;
    color: var(--gold);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.logo-text {
    font-family: 'Cinzel Decorative', var(--font-heading), serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow:
        0 0 8px rgba(212, 175, 55, 0.7),
        0 0 20px rgba(212, 175, 55, 0.35),
        1px 1px 0 rgba(0, 0, 0, 0.4);
    transition: text-shadow 0.3s ease;
}

.nav-logo:hover .logo-text {
    text-shadow:
        0 0 12px rgba(255, 215, 100, 0.9),
        0 0 30px rgba(212, 175, 55, 0.6),
        1px 1px 0 rgba(0, 0, 0, 0.4);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 18px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-admin-btn {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-admin-btn:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.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);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='1'%3E%3Cpath d='M40 0l40 40-40 40L0 40z' fill-opacity='.1'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
    height: 100%;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-ornament {
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 12px;
    margin-bottom: 24px;
    opacity: 0.8;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title em {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.5;
        transform: scaleY(0.6);
    }
}

.hero-slider .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
    width: 32px;
    border-radius: 6px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BUTONLAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--burgundy-dark);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION HEADERS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-ornament {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 10px;
    margin-bottom: 16px;
    opacity: 0.7;
}

.section-ornament.light {
    color: var(--gold-light);
}

.text-left {
    text-align: left !important;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 20px auto 0;
    border-radius: 3px;
}

.title-underline.left {
    margin-left: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ÃœRÃœN KARTLARI
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--cream-dark);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.badge-cok_satan {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(184, 150, 12, 0.9));
    color: var(--burgundy-dark);
}

.badge-yeni {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.9), rgba(39, 174, 96, 0.9));
    color: var(--white);
}

.badge-ozel {
    background: linear-gradient(135deg, rgba(74, 4, 4, 0.9), rgba(107, 21, 21, 0.9));
    color: var(--gold-light);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(74, 4, 4, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-detail {
    padding: 12px 28px;
    background: var(--gold);
    color: var(--burgundy-dark);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    transition: var(--transition);
    font-family: var(--font-body);
}

.product-card:hover .btn-detail {
    transform: translateY(0);
}

.btn-detail:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.78rem;
    color: var(--gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--burgundy);
    margin: 8px 0;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--cream-dark);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.btn-cart {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--cream-dark);
    border: none;
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    font-size: 0.8rem;
    gap: 4px;
    width: auto;
    padding: 0 14px;
}

.btn-cart:hover {
    background: var(--gold);
    color: var(--burgundy-dark);
}

/* Featured Slider */
.featured-slider {
    padding: 20px 0 60px;
}

.featured-slider .swiper-button-next,
.featured-slider .swiper-button-prev {
    color: var(--gold);
    background: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.featured-slider .swiper-button-next::after,
.featured-slider .swiper-button-prev::after {
    font-size: 1rem;
}

.section-cta {
    text-align: center;
    margin-top: 20px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HAKKIMIZDA
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.4;
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gold);
}

.badge-year {
    font-size: 0.75rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--cream);
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--burgundy);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KATEGORÄ° KARTLARI
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.categories-banner {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    padding: 80px 0;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.category-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.category-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.category-card h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.category-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   YORUMLAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.reviews-section {
    background: var(--cream);
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--cream-dark);
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.2);
}

.review-quote {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.2;
}

.review-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--burgundy-dark);
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: var(--burgundy);
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.82rem;
    color: var(--text-light);
}

.reviews-slider .swiper-pagination {
    bottom: -10px !important;
}

.reviews-slider .swiper-pagination-bullet-active {
    background: var(--gold);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CTA BÃ–LÃœMÃœ
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='1'%3E%3Cpath d='M40 0l40 40-40 40L0 40z' fill-opacity='.1'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer {
    background: var(--burgundy-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    font-size: 1.6rem;
}

.footer-logo .logo-text {
    font-size: 1.3rem;
}

.footer-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--burgundy-dark);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    color: var(--gold);
    font-size: 0.7rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-hours {
    list-style: none;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom-pattern {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gold);
    opacity: 0.3;
    font-size: 0.7rem;
}

.footer-bottom p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
    color: var(--gold);
    opacity: 0.7;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MENÃœ SAYFASI
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.page-hero {
    position: relative;
    height: 45vh;
    min-height: 320px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='1'%3E%3Cpath d='M40 0l40 40-40 40L0 40z' fill-opacity='.1'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Search */
.menu-search-wrap {
    max-width: 500px;
    margin: 0 auto 40px;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: 50px;
    padding: 4px 20px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.search-box:focus-within {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.search-box i {
    color: var(--gold);
    font-size: 1rem;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: transparent;
    color: var(--text);
}

.search-clear {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
}

/* Filters */
.menu-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 50px;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--cream-dark);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy-dark);
    border-color: var(--gold);
    font-weight: 600;
    box-shadow: var(--shadow-gold);
}

.filter-count {
    font-size: 0.72rem;
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

.filter-btn.active .filter-count {
    background: rgba(74, 4, 4, 0.2);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 28px;
}

.menu-card .product-info {
    padding: 20px 24px;
}

.no-results,
.empty-state {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
}

.no-results-icon,
.empty-state i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 16px;
}

.no-results h3,
.empty-state h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--burgundy);
    margin-bottom: 8px;
}

.no-results p,
.empty-state p {
    color: var(--text-light);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ADMÄ°N PANELÄ°
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.admin-body {
    background: #0f0f1e;
    min-height: 100vh;
}

/* Login */
.admin-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
}

.admin-login-card {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    backdrop-filter: blur(20px);
}

.admin-login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.login-logo .logo-icon {
    font-size: 2rem;
    color: var(--gold);
}

.login-logo .logo-text {
    font-size: 1.5rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
}

.admin-login-header h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.admin-login-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.admin-login-form .form-group {
    margin-bottom: 20px;
}

.admin-login-form label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.admin-login-form label i {
    color: var(--gold);
    margin-right: 6px;
}

.admin-login-form input[type="text"],
.admin-login-form input[type="password"] {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
}

.admin-login-form input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.admin-login-footer {
    text-align: center;
    margin-top: 24px;
}

.admin-login-footer a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
}

.admin-login-footer a:hover {
    color: var(--gold);
}

/* Dashboard Layout */
.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background: #12122a;
    border-right: 1px solid rgba(212, 175, 55, 0.08);
    display: flex;
    flex-direction: column;
    z-index: 100;
    transition: var(--transition);
}

.admin-sidebar.collapsed {
    transform: translateX(-250px);
}

.sidebar-header {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-header .logo-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.sidebar-header .logo-text {
    font-size: 1.2rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
}

.sidebar-nav {
    flex: 1;
    padding: 16px 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold);
    border-left-color: var(--gold);
}

.sidebar-link.logout {
    margin-top: auto;
    color: var(--danger);
}

.sidebar-link.logout:hover {
    background: rgba(231, 76, 60, 0.08);
    border-left-color: var(--danger);
}

.sidebar-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
}

.admin-user i {
    font-size: 1.5rem;
    color: var(--gold);
}

/* Admin Main */
.admin-main {
    margin-left: 250px;
    min-height: 100vh;
    transition: var(--transition);
    padding: 24px;
}

.admin-main.expanded {
    margin-left: 0;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sidebar-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.sidebar-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.admin-header h1 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.4rem;
}

.admin-header h1 i {
    color: var(--gold);
    margin-right: 10px;
}

.admin-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
}

.admin-date i {
    color: var(--gold);
    margin-right: 6px;
}

/* Alerts */
.alert {
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    transition: var(--transition);
}

.alert-success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: var(--success);
}

.alert-danger {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: var(--danger);
}

/* Admin Content Grid */
.admin-content-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 24px;
    align-items: start;
}

.admin-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.admin-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-card-header h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.1rem;
}

.admin-card-header h2 i {
    color: var(--gold);
    margin-right: 8px;
}

/* Admin Form */
.admin-form {
    padding: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.admin-form label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.admin-form input[type="text"],
.admin-form input[type="number"],
.admin-form input[type="file"],
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-size: 0.92rem;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.admin-form select option {
    background: #1a1a2e;
    color: var(--white);
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.checkbox-row {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    accent-color: var(--gold);
    width: 18px;
    height: 18px;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.form-actions .btn-outline {
    color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
}

/* Admin Table */
.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-weight: 600;
}

.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.admin-table tr:hover td {
    background: rgba(212, 175, 55, 0.03);
}

.table-thumb {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.05);
}

.text-gold {
    color: var(--gold) !important;
}

.text-muted {
    color: rgba(255, 255, 255, 0.3);
}

.table-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.table-badge.badge-cok_satan {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
}

.table-badge.badge-yeni {
    background: rgba(46, 204, 113, 0.15);
    color: var(--success);
}

.table-badge.badge-ozel {
    background: rgba(155, 89, 182, 0.15);
    color: #9B59B6;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
}

.status-dot.active {
    background: var(--success);
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.4);
}

.status-dot.inactive {
    background: var(--danger);
}

.action-cell {
    display: flex;
    gap: 8px;
}

.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.85rem;
}

.btn-edit {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.btn-edit:hover {
    background: rgba(212, 175, 55, 0.2);
}

.btn-delete {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger);
}

.btn-delete:hover {
    background: rgba(231, 76, 60, 0.2);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer {
    background: linear-gradient(180deg, var(--burgundy-dark) 0%, #1A0101 100%);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px 0;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--burgundy-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    color: var(--gold);
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-hours {
    list-style: none;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.92rem;
}

.footer-hours li span:first-child {
    color: rgba(255, 255, 255, 0.6);
}

.footer-hours li span:last-child {
    color: var(--gold);
    font-weight: 600;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 3px;
    min-width: 16px;
}

.footer-bottom {
    text-align: center;
    padding: 28px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-pattern {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--gold);
    opacity: 0.5;
    font-size: 0.8rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-tagline {
    color: var(--gold);
    font-style: italic;
}




/* Footer column visibility fix */
.footer-col {
    min-width: 0;
}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .admin-content-grid {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        transform: translateX(-250px);
    }

    .admin-sidebar.show {
        transform: translateX(0);
    }

    .admin-main {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(42, 2, 2, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: var(--transition);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hero {
        min-height: 500px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-image {
        height: 350px;
    }

    .about-badge {
        right: 10px;
        bottom: -10px;
        width: 90px;
        height: 90px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .badge-number {
        font-size: 1.4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 20px;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-socials {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }

    .category-cards {
        grid-template-columns: 1fr 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .menu-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }

    .page-hero {
        height: 35vh;
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .category-cards {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        flex-direction: row;
        text-align: left;
        gap: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-row {
        flex-direction: column;
    }
}

/*  Logo & Text Readability Improvements  */
.nav-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .nav-logo-img {
        height: 40px;
    }
}

/* Enhanced Hero Text Readability */
.hero-title {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(2px);
    display: inline-block;
}

/* Ensure other texts on image backgrounds are readable */
.product-card .product-overlay button {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-title,
.cta-text {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Price unit label (/kg) */
.price-unit {
    font-size: 0.7em;
    font-weight: 500;
    color: var(--gold);
    opacity: 0.85;
    margin-left: 2px;
    vertical-align: middle;
}

/* Product footer layout */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

/* Footer Admin Link */
.footer-admin-link {
    display: inline-block;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-admin-link:hover {
    color: var(--gold);
    opacity: 0.8;
}

/* Extra Mobile Polish */
@media (max-width: 576px) {
    .section-header {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.3rem);
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 2.8rem);
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 8px 15px;
        margin-bottom: 30px;
    }

    .category-card {
        padding: 25px 15px;
    }

    .menu-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        margin: 0 -15px;
        padding: 5px 15px 15px;
    }

    .filter-btn {
        white-space: nowrap;
    }

    .nav-logo .logo-text {
        font-size: 1.5rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
}

/* Glassmorphism Navbar Enhancement */
.navbar {
    background: rgba(42, 2, 2, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Fix iOS Button Tap Gray Box & Global Polish */
* {
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}