/* ============================================================
   Kilis Kebapçısı - WordPress Vegan Teması İlhamsı CSS
   Geleneksel & Modern Açık Renk Restoran Tasarımı
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Dancing+Script:wght@600;700&display=swap');

/* === CSS VARIABLES === */
:root {
    --red:          #c0392b;
    --red-dark:     #922b21;
    --red-light:    #e74c3c;
    --gold:         #d4a017;
    --gold-dark:    #b8860b;
    --green:        #27ae60;
    --bg:           #f9f7f4;
    --bg-alt:       #ffffff;
    --card-bg:      #ffffff;
    --dark:         #1a1615;
    --text:         #2c2523;
    --text-muted:   #6e6562;
    --text-light:   #8c827e;
    --border:       #e8e2db;
    --border-dark:  #d6cecf;
    --shadow-sm:    0 4px 15px rgba(0,0,0,0.05);
    --shadow:       0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg:    0 20px 50px rgba(0,0,0,0.12);
    --radius:       12px;
    --radius-sm:    8px;
    --font-body:    'Plus Jakarta Sans', sans-serif;
    --font-head:    'Playfair Display', serif;
    --font-script:  'Dancing Script', cursive;
    --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* === UTILITY === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-title { text-align: center; margin-bottom: 3.5rem; position: relative; }
.section-title .eyebrow {
    font-family: var(--font-script);
    color: var(--red);
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}
.section-title h2 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}
.section-title .divider {
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    margin-top: 1rem;
}
.section-title .divider::before, .section-title .divider::after {
    content: ''; width: 60px; height: 2px; background: var(--gold); opacity: 0.6;
}
.section-title .divider span { font-size: 1.2rem; color: var(--red); }

/* === PRELOADER === */
#preloader {
    position: fixed; inset: 0;
    background: #ffffff;
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 1.5rem;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo { font-family: var(--font-head); font-size: 2.2rem; color: var(--red); font-weight: 700; }
.preloader-bar {
    width: 200px; height: 4px;
    background: #f0ebe5;
    border-radius: 2px; overflow: hidden;
}
.preloader-bar::after {
    content: ''; display: block; height: 100%; width: 0;
    background: linear-gradient(90deg, var(--red), var(--gold));
    animation: preload 1.5s ease forwards;
    border-radius: 2px;
}
@keyframes preload { to { width: 100%; } }

/* === TOP BAR (WordPress Theme Style) === */
.top-bar {
    background: var(--dark);
    color: #ffffff;
    padding: 0.5rem 0;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-bar .container {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 0.5rem;
}
.top-bar-left { display: flex; align-items: center; gap: 1.5rem; }
.top-bar-item { display: flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.85); }
.top-bar-item i { color: var(--gold); }
.top-bar-right { display: flex; align-items: center; gap: 1rem; }
.top-bar-social { display: flex; gap: 0.6rem; }
.top-bar-social a { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.top-bar-social a:hover { color: var(--gold); }

/* === NAVBAR (Light WordPress Header) === */
.navbar {
    position: sticky; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: #ffffff;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
}
.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow);
}
.navbar .container {
    display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo {
    display: flex; align-items: center; gap: 0.85rem;
}
.navbar-logo .logo-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(192,57,43,0.3);
    flex-shrink: 0;
}
.navbar-logo .logo-text .brand {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}
.navbar-logo .logo-text .sub {
    font-size: 0.7rem;
    color: var(--red);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    position: relative;
    padding: 0.5rem 0;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 100%;
    height: 3px;
    background: var(--red);
    transition: right 0.3s ease;
    border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

.nav-cta {
    display: flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #ffffff !important;
    padding: 0.65rem 1.35rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 4px 15px rgba(192,57,43,0.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(192,57,43,0.45); }
.nav-cta::after { display: none !important; }

/* Mobile Nav Button */
.hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    cursor: pointer; padding: 5px;
    background: none; border: none;
}
.hamburger span {
    display: block; width: 26px; height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* === HERO SLIDER (WordPress Banner Style) === */
.hero {
    position: relative;
    height: 580px;
    overflow: hidden;
    background: #111111;
}
.hero-slides { position: relative; height: 100%; }
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 7s ease;
}
.hero-slide.active img { transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.55) 60%,
        rgba(0,0,0,0.85) 100%
    );
}
.hero-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 2rem;
}
.hero-eyebrow {
    font-family: var(--font-script);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 6.5vw, 5.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.25rem;
    max-width: 600px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #ffffff;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(192,57,43,0.4);
    border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(192,57,43,0.55); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    color: #ffffff;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.7);
    transition: var(--transition);
    cursor: pointer;
}
.btn-outline:hover { background: #ffffff; color: var(--red); transform: translateY(-3px); }

.hero-indicators {
    position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: 0.5rem; z-index: 10;
}
.hero-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer; border: none; transition: var(--transition);
}
.hero-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* === FEATURES BAR === */
.features-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
    box-shadow: var(--shadow-sm);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.feature-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.5rem 1rem;
    border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
    width: 52px; height: 52px;
    background: #fdf6e9;
    border: 1px solid rgba(212,160,23,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; flex-shrink: 0;
}
.feature-text .label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.feature-text .value { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-top: 2px; }

/* === MENU SECTION === */
.menu-section { padding: 5rem 0; background: var(--bg); }
.menu-section.alt { background: var(--bg-alt); }

/* Category Filter Tabs (WordPress Vegan Theme Style) */
.category-tabs {
    display: flex; align-items: center; justify-content: center;
    gap: 0.75rem; flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.cat-tab {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 700;
    background: #ffffff;
    color: var(--text);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.cat-tab:hover { color: var(--red); border-color: var(--red); transform: translateY(-2px); }
.cat-tab.active {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(192,57,43,0.35);
}
.cat-tab .cat-emoji { font-size: 1.15rem; }

/* Product Cards Grid (WordPress WooCommerce Theme Layout) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 2rem;
}
.product-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.product-card.hidden { display: none; }
.product-img-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #f4efe9;
}
.product-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-cat-badge {
    position: absolute; top: 0.85rem; left: 0.85rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(5px);
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.product-featured-badge {
    position: absolute; top: 0.85rem; right: 0.85rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.product-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 4.5rem;
    background: linear-gradient(135deg, #f4efe9, #e8dfd5);
}
.product-body {
    padding: 1.35rem;
    display: flex; flex-direction: column; flex: 1;
}
.product-name {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.product-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.product-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}
.product-price {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--red);
}
.product-order-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #ffffff;
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: var(--transition);
}
.product-order-btn:hover { transform: scale(1.05); box-shadow: 0 4px 15px rgba(192,57,43,0.35); }

/* No results */
.no-results {
    text-align: center; padding: 4rem 0; color: var(--text-muted); display: none;
}
.no-results.show { display: block; }

/* === RESTORAN & DÜKKAN GÖRSELLERİ SLIDER === */
.shop-carousel {
    position: relative;
    padding: 0 3rem;
}
.shop-slider-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.shop-slide-card {
    background: #231f1d;
    border: 1px solid rgba(212,160,23,0.3);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: var(--transition);
}
.shop-slide-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.shop-slide-img {
    height: 260px;
    overflow: hidden;
    position: relative;
}
.shop-slide-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.shop-slide-card:hover .shop-slide-img img { transform: scale(1.1); }
.shop-slide-overlay {
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.6));
    position: absolute; bottom: 0; left: 0; right: 0;
}
.shop-slide-overlay h4 { font-family: var(--font-head); font-size: 1.15rem; color: #ffffff; margin-bottom: 0.25rem; }
.shop-slide-overlay p { font-size: 0.82rem; color: var(--gold); }

.shop-prev-btn, .shop-next-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    color: #ffffff; border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.1rem; transition: var(--transition);
    z-index: 10;
}
.shop-prev-btn { left: 0; }
.shop-next-btn { right: 0; }
.shop-prev-btn:hover, .shop-next-btn:hover { background: var(--red); border-color: transparent; }

/* === ABOUT SECTION === */
.about-section { padding: 6rem 0; background: #ffffff; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}
.about-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-img-wrap img {
    width: 100%; height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
}
.about-img-badge {
    position: absolute; bottom: 2rem; right: 2rem;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #ffffff;
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(192,57,43,0.4);
}
.about-img-badge .year { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; line-height: 1; }
.about-img-badge .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.about-content .eyebrow {
    font-family: var(--font-script);
    color: var(--red);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}
.about-content h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}
.about-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin: 2rem 0;
}
.stat-item {
    background: var(--bg);
    padding: 1.25rem 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid var(--border);
}
.stat-num {
    font-family: var(--font-head);
    font-size: 2.2rem; font-weight: 800;
    color: var(--red);
    display: block;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }

/* === CONTACT SECTION === */
.contact-section { padding: 6rem 0; background: var(--bg); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}
.contact-info-item {
    display: flex; gap: 1.25rem; align-items: flex-start;
    margin-bottom: 2rem;
}
.contact-info-item .icon-wrap {
    width: 52px; height: 52px; flex-shrink: 0;
    background: #fdf6e9;
    border: 1px solid rgba(212,160,23,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; color: var(--red);
}
.contact-info-item .info-label { font-size: 0.75rem; color: var(--red); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 800; }
.contact-info-item .info-val { font-size: 1rem; color: var(--dark); font-weight: 600; margin-top: 0.2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input, .form-group textarea {
    background: #ffffff;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.92rem;
    outline: none;
    transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* Map embed */
.map-wrap {
    margin-top: 3.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* === FOOTER === */
.footer {
    background: var(--dark);
    color: #ffffff;
    padding: 4.5rem 0 2rem;
    border-top: 4px solid var(--red);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.25rem; }
.footer-brand .logo-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
}
.footer-brand .brand-name { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: #ffffff; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: #ffffff;
    transition: var(--transition);
}
.social-link:hover { background: var(--red); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--gold); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 0.85rem; align-items: flex-start; margin-bottom: 1rem; font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.footer-contact-item .fc-icon { color: var(--gold); flex-shrink: 0; margin-top: 3px; font-size: 1rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
    font-size: 0.82rem; color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: var(--gold); }

/* === CALL BUTTON (floating) === */
.call-float {
    position: fixed; bottom: 2rem; right: 2rem;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #ffffff;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 30px rgba(192,57,43,0.5);
    z-index: 900;
    animation: pulse 2s infinite;
    transition: var(--transition);
}
.call-float:hover { transform: scale(1.1); }
@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(192,57,43,0.5); }
    50% { box-shadow: 0 8px 30px rgba(192,57,43,0.5), 0 0 0 14px rgba(192,57,43,0.15); }
}

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed; bottom: 2rem; left: 2rem;
    background: #ffffff;
    color: var(--dark);
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    border: 1px solid var(--border-dark);
    z-index: 900;
    opacity: 0; transform: translateY(10px);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--red); color: #ffffff; border-color: transparent; }

/* === PAGE HERO === */
.page-hero {
    height: 280px;
    background: linear-gradient(135deg, var(--dark) 0%, #2b1d1a 100%);
    color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .eyebrow { font-family: var(--font-script); color: var(--gold); font-size: 1.6rem; display: block; margin-bottom: 0.25rem; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; text-transform: uppercase; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; justify-content: center; margin-top: 0.75rem; font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }

/* === ANIMATIONS === */
.fade-in-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.in-view { opacity: 1; transform: translateY(0); }

/* === MOBILE MENU === */
.mobile-menu {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: min(320px, 85vw);
    background: #ffffff;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    padding: 5rem 1.75rem 2rem;
    box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column; gap: 0.5rem;
    overflow-y: auto;
}
.mobile-menu.open { right: 0; transform: translateX(0) !important; }
.mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.mobile-overlay.show { opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; }
/* Legacy mobile menu overrides removed for Tailwind compatibility */

/* === TOAST === */
.toast {
    position: fixed; top: 1.5rem; right: 1.5rem;
    background: #ffffff;
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    display: flex; align-items: center; gap: 0.75rem;
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    color: var(--dark);
}
.toast.show { transform: translateX(0); }
.toast.success { border-left: 4px solid var(--green); }
.toast.error { border-left: 4px solid var(--red); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-badge { right: 1rem; bottom: 1rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
    .feature-item:nth-child(odd) { border-right: 1px solid var(--border); }
    .feature-item:last-child, .feature-item:nth-last-child(2) { border-bottom: none; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-title { font-size: 2.5rem; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .about-stats { grid-template-columns: 1fr; gap: 1rem; }
    .form-row { grid-template-columns: 1fr; }
    .about-img-wrap img { height: 350px; }
    .top-bar-left { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.1rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-item { border-right: none !important; }
    .category-tabs { gap: 0.5rem; }
    .cat-tab { font-size: 0.82rem; padding: 0.6rem 1.1rem; }
    .products-grid { grid-template-columns: 1fr; }
}
