:root {
    /* Sıcak nötr tonlar — ekmek/krem ailesi */
    --ep-bg: #FAF6F0;
    --ep-bg-alt: #F0E8DC;
    --ep-bg-warm: #F5EDE3;
    --ep-surface: #FFFCF7;
    --ep-surface-elevated: #FFFFFF;

    /* Sıcak metin renkleri — soğuk gri yerine kahve tonları */
    --ep-text: #3D342B;
    --ep-text-muted: #6B5F52;
    --ep-text-light: #9C8F82;

    /* Marka altını — logodaki #c59b4e ile uyumlu */
    --ep-accent: #C59B4E;
    --ep-accent-hover: #A8833A;
    --ep-accent-dark: #8B6D2F;
    --ep-accent-light: rgba(197, 155, 78, 0.14);
    --ep-accent-softer: rgba(197, 155, 78, 0.07);

    /* Sıcak kenarlık ve gölgeler */
    --ep-border: #E5D9C9;
    --ep-border-light: #EDE4D8;
    --ep-shadow-sm: 0 1px 4px rgba(61, 52, 43, 0.06);
    --ep-shadow-md: 0 4px 20px rgba(61, 52, 43, 0.08);
    --ep-shadow-lg: 0 12px 36px rgba(61, 52, 43, 0.1);
    --ep-shadow-accent: 0 6px 20px rgba(197, 155, 78, 0.25);

    --ep-radius-sm: 10px;
    --ep-radius-md: 16px;
    --ep-radius-lg: 24px;
    --ep-radius-full: 999px;
    --ep-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --ep-navbar-height: 80px;

    /* Sıcak koyu tonlar — soğuk siyah yerine espresso kahve */
    --ep-dark: #2E261E;
    --ep-dark-muted: #4A3F34;
    --ep-footer-bg: #2E261E;

    /* Overlay — hero ve banner için sıcak kahve filtre */
    --ep-overlay-heavy: rgba(46, 38, 30, 0.78);
    --ep-overlay-mid: rgba(46, 38, 30, 0.52);
    --ep-overlay-light: rgba(46, 38, 30, 0.35);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ep-text);
    background-color: var(--ep-bg);
    -webkit-font-smoothing: antialiased;
}

main {
    background-color: var(--ep-bg);
    overflow-x: clip;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

/* ============================================= */
/*                 NAVBAR                        */
/* ============================================= */
body.ep-has-navbar main {
    padding-top: var(--ep-navbar-height);
}

.navbar.ep-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    min-height: var(--ep-navbar-height);
    background-color: rgba(255, 252, 247, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0 !important;
    border-bottom: 1px solid transparent;
    transition: border-color var(--ep-transition), box-shadow var(--ep-transition);
}

.ep-navbar > .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: var(--ep-navbar-height);
    position: relative;
}

.ep-navbar .ep-navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 1rem;
    flex-shrink: 0;
}

.ep-navbar .navbar-collapse {
    flex-grow: 1;
}

.ep-navbar .ep-navbar-nav {
    align-items: center;
}

.ep-navbar .ep-nav-item.dropdown {
    position: relative;
}

.ep-navbar.ep-navbar-scrolled {
    border-bottom-color: var(--ep-border-light);
    box-shadow: var(--ep-shadow-sm);
    background-color: rgba(255, 252, 247, 0.98);
}

.ep-navbar .ep-navbar-logo {
    display: block;
    height: auto;
    max-height: calc(var(--ep-navbar-height) - 16px);
    width: auto;
    border-radius: var(--ep-radius-sm);
    transition: max-height var(--ep-transition);
}

.ep-navbar.ep-navbar-scrolled .ep-navbar-logo {
    max-height: calc(var(--ep-navbar-height) - 20px);
}

.ep-navbar .ep-navbar-nav .ep-nav-item {
    margin-left: 8px;
    margin-right: 8px;
}

.ep-navbar .ep-navbar-nav .ep-nav-link {
    color: var(--ep-text-muted) !important;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 14px !important;
    border-radius: var(--ep-radius-full);
    transition: color var(--ep-transition), background-color var(--ep-transition);
    position: relative;
}

.ep-navbar .ep-navbar-nav .ep-nav-link-cta {
    color: var(--ep-surface-elevated) !important;
}

.ep-navbar .ep-navbar-nav .ep-nav-item.active .ep-nav-link:not(.ep-nav-link-cta),
.ep-navbar .ep-navbar-nav .ep-nav-link:not(.ep-nav-link-cta):hover {
    color: var(--ep-accent-dark) !important;
    background-color: var(--ep-accent-softer);
}

.ep-navbar .ep-navbar-nav .ep-nav-item.active .ep-nav-link:not(.ep-nav-link-cta)::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2px;
    background: var(--ep-accent);
    border-radius: 2px;
}

.ep-navbar .ep-nav-link-cta {
    background-color: var(--ep-accent) !important;
    color: #FFFCF7 !important;
    margin-left: 8px;
    box-shadow: var(--ep-shadow-accent);
}

.ep-navbar .ep-nav-link-cta:hover,
.ep-navbar .ep-nav-item.active .ep-nav-link-cta {
    background-color: var(--ep-accent-hover) !important;
    color: #FFFCF7 !important;
    box-shadow: 0 4px 14px rgba(197, 155, 78, 0.3);
}

.ep-navbar .ep-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    border: 1px solid var(--ep-border);
    background: var(--ep-surface);
    box-shadow: var(--ep-shadow-lg);
    border-radius: var(--ep-radius-md) !important;
    padding: 8px;
    min-width: 260px !important;
    margin-top: 10px !important;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ep-navbar .ep-nav-item.dropdown.show .ep-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
    pointer-events: auto;
}

.ep-navbar .ep-dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ep-text-muted);
    text-decoration: none;
    border-radius: var(--ep-radius-sm);
    transition: all var(--ep-transition);
}

.ep-navbar .ep-dropdown-item::before {
    display: none;
}

.ep-navbar .ep-dropdown-item:hover {
    color: var(--ep-accent-dark) !important;
    background-color: var(--ep-accent-light);
    padding-left: 16px;
    text-decoration: none;
}

.ep-navbar .ep-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    line-height: inherit;
}

.ep-navbar .ep-dropdown-divider {
    height: 1px;
    margin: 6px 8px;
    background: var(--ep-border);
}

.ep-navbar .ep-dropdown-item-all:hover {
    color: var(--ep-accent-dark) !important;
    background-color: var(--ep-accent-light);
}

.ep-navbar .ep-dropdown-toggle::after {
    display: none !important;
}

.ep-navbar .ep-dropdown-icon {
    margin-left: 6px;
    font-size: 11px;
    transition: transform var(--ep-transition), color var(--ep-transition);
    color: inherit;
}

.ep-navbar .ep-nav-item.dropdown.show .ep-dropdown-icon {
    transform: rotate(180deg);
}

/* ============================================= */
/*                   FAB                         */
/* ============================================= */
.ep-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
}

.ep-fab .ep-fab-button {
    position: relative;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: var(--ep-accent);
    color: #FFFCF7;
    cursor: pointer;
    font-size: 20px;
    box-shadow: var(--ep-shadow-accent);
    transition: transform var(--ep-transition), background-color var(--ep-transition);
}

.ep-fab .ep-fab-button:hover {
    transform: scale(1.06);
    background: var(--ep-accent-hover);
}

.ep-fab .ep-fab-button-label {
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--ep-surface);
    color: var(--ep-text);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--ep-radius-sm);
    border: 1px solid var(--ep-border);
    box-shadow: var(--ep-shadow-md);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ep-transition);
}

.ep-fab .ep-fab-button:hover .ep-fab-button-label {
    opacity: 1;
    visibility: visible;
}

.ep-fab .ep-fab-button i {
    transition: transform var(--ep-transition);
}

.ep-fab .ep-fab-menu {
    position: absolute;
    bottom: 68px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--ep-transition);
}

.ep-fab.active .ep-fab-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ep-fab.active .ep-fab-button i {
    transform: rotate(45deg);
}

.ep-fab .ep-fab-item {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ep-surface);
    color: var(--ep-accent);
    text-decoration: none;
    box-shadow: var(--ep-shadow-md);
    transition: all var(--ep-transition);
}

.ep-fab .ep-fab-item:hover {
    background: var(--ep-accent);
    color: #fff;
    transform: scale(1.08);
    text-decoration: none;
}

/* ============================================= */
/*                 HERO                          */
/* ============================================= */
.ep-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

body.ep-has-navbar main > .ep-hero:first-child {
    margin-top: calc(-1 * var(--ep-navbar-height));
    padding-top: var(--ep-navbar-height);
}

body.ep-has-navbar main > .ep-about-page:first-child,
body.ep-has-navbar main > .ep-products-page:first-child {
    margin-top: calc(-1 * var(--ep-navbar-height));
}

body.ep-has-navbar main > .ep-about-page:first-child .ep-about-banner,
body.ep-has-navbar main > .ep-products-page:first-child .ep-about-banner {
    padding-top: calc(var(--ep-navbar-height) + 40px);
}

.ep-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ep-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(197, 155, 78, 0.15) 0%, transparent 60%),
        linear-gradient(160deg, var(--ep-overlay-heavy) 0%, var(--ep-overlay-mid) 45%, var(--ep-overlay-light) 100%);
    z-index: 1;
}

.ep-hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(197, 155, 78, 0.08) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.ep-hero .container {
    position: relative;
    z-index: 2;
}

.ep-hero-content {
    max-width: 760px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 60px 0 80px;
}

.ep-text-highlight {
    background: linear-gradient(135deg, #F5E6C8 0%, var(--ep-accent) 50%, #E8C97A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ep-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(197, 155, 78, 0.18);
    border: 1px solid rgba(197, 155, 78, 0.35);
    border-radius: var(--ep-radius-full);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
    color: #F5E6C8;
    backdrop-filter: blur(4px);
}

.ep-hero-badge i {
    color: var(--ep-accent);
}

.ep-hero-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ep-hero-description {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 36px;
    opacity: 0.9;
    max-width: 580px;
}

.ep-hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.ep-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
    height: 52px;
    padding: 0 28px;
    border-radius: var(--ep-radius-full);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all var(--ep-transition);
}

.ep-btn-primary {
    background: var(--ep-accent);
    color: #FFFCF7;
    border: 2px solid var(--ep-accent);
}

.ep-btn-primary:hover {
    background: var(--ep-accent-hover);
    border-color: var(--ep-accent-hover);
    color: #FFFCF7;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--ep-shadow-accent);
}

.ep-btn-secondary {
    border: 2px solid rgba(245, 230, 200, 0.55);
    color: #FFFCF7;
    background: rgba(46, 38, 30, 0.25);
    backdrop-filter: blur(4px);
}

.ep-btn-secondary:hover {
    background: var(--ep-accent);
    color: #FFFCF7;
    border-color: var(--ep-accent);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--ep-shadow-accent);
}

/* ============================================= */
/*              SECTION UTILITIES                */
/* ============================================= */
.ep-section-label {
    display: inline-block;
    color: var(--ep-accent-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ep-section-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--ep-text);
    line-height: 1.25;
    margin-bottom: 16px;
}

/* ============================================= */
/*              HOME ABOUT                       */
/* ============================================= */
.ep-home-abouts {
    padding: 80px 0 100px;
    background: var(--ep-surface);
}

.ep-home-about-image-wrapper {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: var(--ep-radius-lg);
    box-shadow: var(--ep-shadow-lg);
    border: 1px solid var(--ep-border-light);
}

.ep-home-about-image-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: var(--ep-accent);
    border-radius: var(--ep-radius-lg);
    opacity: 0.15;
    z-index: 0;
    transform: translate(25%, 25%);
    pointer-events: none;
}

.ep-home-about-image {
    width: 100%;
    height: 480px !important;
    object-fit: cover;
    border-radius: var(--ep-radius-lg);
    transition: transform 0.6s ease;
}

.ep-home-about-image-wrapper:hover .ep-home-about-image {
    transform: scale(1.03);
}

.ep-home-about-content {
    padding-left: 48px;
}

.ep-home-about-subtitle {
    display: inline-block;
    color: var(--ep-accent-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ep-home-about-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: var(--ep-text);
    line-height: 1.3;
    margin-bottom: 20px;
}

.ep-home-about-description {
    color: var(--ep-text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.ep-home-about-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 50px;
    padding: 0 28px;
    margin-top: 8px;
    border-radius: var(--ep-radius-full);
    background: var(--ep-accent);
    color: #FFFCF7;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--ep-transition);
}

.ep-home-about-button:hover {
    background: var(--ep-accent-hover);
    color: #FFFCF7;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--ep-shadow-accent);
}

/* ============================================= */
/*              HOME PRODUCTS                    */
/* ============================================= */
.ep-home-products {
    padding: 80px 0 100px;
    background: var(--ep-bg-warm);
    position: relative;
}

.ep-home-products.ep-page-content {
    padding-top: 56px;
}

.ep-home-products::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ep-border), transparent);
}

.ep-home-products-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.ep-home-products-subtitle {
    display: inline-block;
    color: var(--ep-accent-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ep-home-products-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--ep-text);
    margin-bottom: 0;
}

.ep-product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.ep-product-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.ep-product-card-horizontal {
    display: flex;
    align-items: stretch;
    height: 100%;
    background: var(--ep-surface);
    border: 1px solid var(--ep-border);
    border-radius: var(--ep-radius-md);
    overflow: hidden;
    transition: all var(--ep-transition);
}

.ep-product-card-horizontal:hover {
    transform: translateY(-4px);
    box-shadow: var(--ep-shadow-lg);
    border-color: rgba(197, 155, 78, 0.35);
}

.ep-product-image-wrapper {
    flex: 0 0 200px;
    overflow: hidden;
}

.ep-product-image {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ep-product-card-horizontal:hover .ep-product-image {
    transform: scale(1.05);
}

.ep-product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
}

.ep-product-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ep-text);
    margin-bottom: 10px;
}

.ep-product-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ep-text-muted);
    margin-bottom: 12px;
}

.ep-product-text-two {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ep-text-light);
    margin-bottom: 0;
    padding-left: 12px;
    border-left: 3px solid var(--ep-accent);
}

.ep-product-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ep-accent-dark);
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--ep-transition);
}

.ep-product-card-horizontal:hover .ep-product-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================= */
/*                   CTA                         */
/* ============================================= */
.ep-home-cta {
    padding: 80px 0;
    background: linear-gradient(
        180deg,
        var(--ep-bg) 0%,
        var(--ep-bg-alt) 100%
    );
}

.ep-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--ep-surface);
    border: 1px solid var(--ep-border);
    padding: 48px 56px;
    border-radius: var(--ep-radius-lg);
    box-shadow: var(--ep-shadow-md);
    position: relative;
    overflow: hidden;
}

.ep-cta-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(197, 155, 78, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.ep-cta-label {
    margin-bottom: 8px;
}

.ep-cta-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--ep-accent), var(--ep-accent-dark));
}

.ep-cta-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(24px, 2.5vw, 30px);
    font-weight: 700;
    color: var(--ep-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.ep-cta-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ep-text-muted);
    margin: 0;
}

.ep-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.ep-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    border-radius: var(--ep-radius-full);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--ep-transition);
    white-space: nowrap;
}

.ep-cta-btn.primary {
    background: var(--ep-accent);
    color: #FFFCF7;
    border: 2px solid var(--ep-accent);
}

.ep-cta-btn.primary:hover {
    background: var(--ep-accent-hover);
    border-color: var(--ep-accent-hover);
    color: #FFFCF7;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--ep-shadow-accent);
}

.ep-cta-btn.secondary {
    border: 2px solid var(--ep-border);
    color: var(--ep-text);
    background: var(--ep-bg);
}

.ep-cta-btn.secondary:hover {
    border-color: var(--ep-accent);
    color: var(--ep-accent-dark);
    background: var(--ep-accent-softer);
    text-decoration: none;
    transform: translateY(-2px);
}

/* ============================================= */
/*              PAGE BANNER                      */
/* ============================================= */
.ep-about-page {
    width: 100%;
}

.ep-about-banner {
    position: relative;
    width: 100%;
    min-height: 360px;
    background-image: url("/assets/images/banner.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.ep-about-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        var(--ep-overlay-heavy) 0%,
        var(--ep-overlay-mid) 60%,
        var(--ep-overlay-light) 100%
    );
}

.ep-about-banner .container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.ep-about-banner-content {
    text-align: center;
    color: #fff;
    max-width: 720px;
    margin: 0 auto;
}

.ep-about-banner-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
    color: #E8C97A;
    margin-bottom: 16px;
}

.ep-about-banner-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.ep-about-banner-description {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: rgba(250, 246, 240, 0.88);
    display: block;
}

/* ============================================= */
/*              ABOUT PAGE                       */
/* ============================================= */
.ep-about-whoareu {
    padding: 80px 0;
    background: var(--ep-bg);
}

.ep-about-whoareu-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ep-about-whoareu-text {
    font-size: 16px;
    line-height: 1.85;
    color: var(--ep-text-muted);
    margin-bottom: 20px;
}

.ep-about-cards {
    padding-bottom: 80px;
    background: var(--ep-surface);
}

.ep-about-cards-top {
    margin-bottom: 48px;
}

.ep-about-cards-box {
    position: relative;
    padding: 36px;
    padding-left: 48px;
    background: var(--ep-bg-warm);
    border: 1px solid var(--ep-border);
    border-radius: var(--ep-radius-md);
    height: 100%;
    transition: box-shadow var(--ep-transition), border-color var(--ep-transition);
}

.ep-about-cards-box:hover {
    box-shadow: var(--ep-shadow-md);
    border-color: rgba(197, 155, 78, 0.3);
}

.ep-about-cards-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 3px;
    background: var(--ep-accent);
    border-radius: 0 2px 2px 0;
}

.ep-about-cards-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ep-text);
    line-height: 1.4;
}

.ep-about-cards-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ep-text-muted);
    margin: 0;
}

.ep-about-card {
    text-align: center;
    border-radius: var(--ep-radius-md);
    overflow: hidden;
    background: var(--ep-surface);
    border: 1px solid var(--ep-border);
    transition: all var(--ep-transition);
}

.ep-about-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.ep-about-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--ep-text);
    padding: 16px 12px;
    margin: 0;
    background: var(--ep-bg-warm);
    border-top: 1px solid var(--ep-border-light);
}

.ep-about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ep-shadow-md);
    border-color: rgba(197, 155, 78, 0.3);
}

/* ============================================= */
/*              CONTACT PAGE                     */
/* ============================================= */
.ep-contact-page {
    background: var(--ep-bg);
    padding: 64px 0 80px;
}

.ep-contact-page-inner {
    max-width: 1140px;
}

.ep-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: 32px;
    align-items: start;
}

.ep-contact-sidebar {
    min-width: 0;
}

.ep-contact-main {
    min-width: 0;
}

.ep-contact-page-description {
    color: var(--ep-text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
    font-size: 16px;
}

.ep-contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.ep-contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--ep-surface);
    border: 1px solid var(--ep-border);
    border-radius: var(--ep-radius-sm);
    transition: border-color var(--ep-transition), box-shadow var(--ep-transition);
    min-width: 0;
}

.ep-contact-info-card-wide {
    grid-column: 1 / -1;
}

.ep-contact-info-content {
    min-width: 0;
    flex: 1;
}

.ep-contact-info-card:hover {
    border-color: rgba(197, 155, 78, 0.4);
    box-shadow: var(--ep-shadow-sm);
}

.ep-contact-info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ep-accent-light);
    color: var(--ep-accent);
    border-radius: var(--ep-radius-sm);
    font-size: 16px;
}

.ep-contact-info-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ep-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.ep-contact-info-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--ep-text);
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.ep-contact-info-value a {
    color: var(--ep-text);
    text-decoration: none;
    transition: color var(--ep-transition);
}

.ep-contact-info-value a:hover {
    color: var(--ep-accent-dark);
}

.ep-contact-hours {
    padding: 20px;
    background: var(--ep-bg-warm);
    border: 1px solid var(--ep-border);
    border-radius: var(--ep-radius-md);
}

.ep-contact-hours-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--ep-text);
}

.ep-contact-hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ep-contact-hours-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    color: var(--ep-text-muted);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ep-border);
}

.ep-contact-hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ep-contact-hours-item strong {
    color: var(--ep-text);
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

.ep-contact-form-wrapper {
    position: relative;
    padding: 32px;
    border-radius: var(--ep-radius-md);
    background: var(--ep-surface);
    border: 1px solid var(--ep-border);
    box-shadow: var(--ep-shadow-sm);
}

.ep-contact-form-header {
    margin-bottom: 24px;
}

.ep-contact-form-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--ep-text);
}

.ep-contact-form-subtitle {
    font-size: 14px;
    color: var(--ep-text-muted);
    margin: 0;
    line-height: 1.5;
}

.ep-contact-form {
    position: relative;
}

.ep-contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.ep-contact-form-field {
    margin-bottom: 16px;
}

.ep-contact-form-grid .ep-contact-form-field {
    margin-bottom: 0;
}

.ep-contact-form .form-control {
    width: 100%;
    height: 48px;
    border-radius: var(--ep-radius-sm);
    border: 1px solid var(--ep-border);
    font-size: 14px;
    padding: 10px 16px;
    transition: all var(--ep-transition);
    box-shadow: none;
    background: var(--ep-bg-warm);
    color: var(--ep-text);
}

.ep-contact-form .form-control::placeholder {
    color: var(--ep-text-light);
}

.ep-contact-form .form-control:focus {
    border-color: var(--ep-accent);
    background: var(--ep-surface);
    box-shadow: 0 0 0 3px var(--ep-accent-light);
}

.ep-contact-form textarea.form-control {
    height: auto;
    min-height: 130px;
    resize: vertical;
}

.ep-contact-submit {
    width: 100%;
    height: 48px;
    border-radius: var(--ep-radius-full);
    font-weight: 600;
    border: none;
    font-size: 15px;
    color: #FFFCF7 !important;
    background-color: var(--ep-accent) !important;
    transition: all var(--ep-transition);
    margin-top: 4px;
}

.ep-contact-submit:hover {
    background-color: var(--ep-accent-hover) !important;
    transform: translateY(-2px);
    box-shadow: var(--ep-shadow-accent);
    color: #FFFCF7 !important;
}

.ep-contact-submit:active {
    transform: translateY(0);
}

.ep-contact-kvkk {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--ep-text-muted);
    cursor: pointer;
}

.ep-contact-kvkk input {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--ep-accent);
    cursor: pointer;
}

.ep-contact-kvkk a {
    color: var(--ep-accent-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ep-contact-kvkk a:hover {
    color: var(--ep-accent-hover);
}

/* ============================================= */
/*              LEGAL / KVKK                     */
/* ============================================= */
.ep-legal-page {
    padding: 64px 0 80px;
    background: var(--ep-bg);
}

.ep-legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.ep-legal-updated {
    font-size: 13px;
    color: var(--ep-text-light);
    margin-bottom: 32px;
}

.ep-legal-section {
    margin-bottom: 32px;
}

.ep-legal-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ep-text);
    margin: 0 0 12px;
    line-height: 1.35;
}

.ep-legal-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ep-text-muted);
    margin: 0 0 12px;
}

.ep-legal-section ul {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--ep-text-muted);
    font-size: 15px;
    line-height: 1.8;
}

.ep-legal-section li {
    margin-bottom: 6px;
}

.ep-legal-section a {
    color: var(--ep-accent-dark);
    font-weight: 600;
}

.ep-legal-section a:hover {
    color: var(--ep-accent-hover);
}

.ep-contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.ep-contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.ep-contact-alert span {
    flex: 1;
}

.ep-contact-alert-success {
    background: rgba(76, 175, 125, 0.12);
    border: 1px solid rgba(76, 175, 125, 0.35);
    color: #2d6a4f;
}

.ep-contact-alert-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #a71d2a;
}

.ep-contact-map-wrap {
    margin-top: 48px;
}

.ep-contact-map {
    border-radius: var(--ep-radius-md);
    overflow: hidden;
    border: 1px solid var(--ep-border);
    box-shadow: var(--ep-shadow-sm);
}

.ep-contact-map iframe {
    display: block;
    width: 100%;
}

/* ============================================= */
/*                  FOOTER                       */
/* ============================================= */
.ep-footer {
    background: var(--ep-footer-bg);
    color: rgba(250, 246, 240, 0.72);
    padding: 72px 0 24px;
    border-top: 3px solid var(--ep-accent-dark);
}

.ep-footer-logo {
    width: 120px;
    margin-bottom: 16px;
    border-radius: var(--ep-radius-sm);
}

.ep-footer-text {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(250, 246, 240, 0.55);
    max-width: 300px;
}

.ep-footer-title {
    font-size: 15px;
    font-weight: 700;
    color: #F5E6C8;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.ep-footer-links,
.ep-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ep-footer-links li {
    margin-bottom: 10px;
}

.ep-footer-links a {
    color: rgba(250, 246, 240, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--ep-transition);
}

.ep-footer-links a:hover {
    color: #E8C97A;
    text-decoration: none;
}

.ep-footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ep-footer-contact i {
    color: var(--ep-accent);
    width: 16px;
    text-align: center;
}

.ep-footer-contact-links {
    color: rgba(250, 246, 240, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--ep-transition);
    min-width: 0;
    overflow-wrap: anywhere;
}

.ep-footer-contact-links:hover {
    color: #E8C97A;
    text-decoration: none;
}

.ep-footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(250, 246, 240, 0.1);
    text-align: center;
    font-size: 13px;
    color: rgba(250, 246, 240, 0.38);
}

/* ============================================= */
/*            MODERN UI ENHANCEMENTS             */
/* ============================================= */
.ep-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.ep-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ep-reveal-left {
    transform: translateX(-40px);
}

.ep-reveal-left.is-visible {
    transform: translateX(0);
}

.ep-reveal-right {
    transform: translateX(40px);
}

.ep-reveal-right.is-visible {
    transform: translateX(0);
}

.ep-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--ep-transition);
    animation: epBounce 2.5s ease-in-out infinite;
}

.ep-hero-scroll:hover {
    color: #F5E6C8;
    text-decoration: none;
}

.ep-hero-scroll-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ep-hero-scroll-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 12px;
    backdrop-filter: blur(4px);
}

@keyframes epBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.ep-stats-strip {
    position: relative;
    margin-top: -28px;
    z-index: 10;
    padding-bottom: 20px;
}

.ep-stats-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--ep-surface);
    border: 1px solid var(--ep-border);
    border-radius: var(--ep-radius-lg);
    padding: 32px 40px;
    box-shadow: var(--ep-shadow-lg);
}

.ep-stat-item {
    flex: 1;
    text-align: center;
    padding: 0 16px;
}

.ep-stat-number {
    display: block;
    font-family: 'Merriweather', serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: var(--ep-accent-dark);
    line-height: 1.2;
    margin-bottom: 4px;
}

.ep-stat-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--ep-text-muted);
    letter-spacing: 0.3px;
}

.ep-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--ep-border);
    flex-shrink: 0;
}

.ep-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 28px;
}

.ep-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--ep-accent-softer);
    border: 1px solid rgba(197, 155, 78, 0.2);
    border-radius: var(--ep-radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--ep-accent-dark);
}

.ep-feature-pill i {
    font-size: 10px;
    color: var(--ep-accent);
}

.ep-section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
}

.ep-section-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ep-text-muted);
    margin: 0;
}

.ep-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ep-product-card-modern {
    display: flex;
    flex-direction: column;
    background: var(--ep-surface);
    border: 1px solid var(--ep-border);
    border-radius: var(--ep-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color var(--ep-transition);
}

.ep-product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--ep-shadow-lg);
    border-color: rgba(197, 155, 78, 0.35);
    text-decoration: none;
    color: inherit;
}

.ep-product-card-modern-media {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.ep-product-card-modern-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ep-product-card-modern:hover .ep-product-card-modern-media img {
    transform: scale(1.06);
}

.ep-product-card-modern-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(46, 38, 30, 0.35) 0%, transparent 50%);
    pointer-events: none;
}

.ep-product-card-modern-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    padding: 6px 12px;
    background: rgba(255, 252, 247, 0.92);
    backdrop-filter: blur(8px);
    border-radius: var(--ep-radius-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--ep-accent-dark);
    letter-spacing: 1px;
}

.ep-product-card-modern-body {
    padding: 24px 28px 28px;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ep-product-card-modern-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--ep-text);
    margin: 0 0 8px;
}

.ep-product-card-modern-body p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ep-text-muted);
    margin: 0 0 auto;
    flex: 1;
}

.ep-product-card-modern-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ep-accent-dark);
    transition: gap var(--ep-transition);
}

.ep-product-card-modern:hover .ep-product-card-modern-link {
    gap: 12px;
}

.ep-product-card-modern-link i {
    font-size: 12px;
    transition: transform var(--ep-transition);
}

.ep-product-card-modern:hover .ep-product-card-modern-link i {
    transform: translateX(4px);
}

.ep-page-content {
    position: relative;
}

/* ============================================= */
/*              404 — BULUNAMADI                 */
/* ============================================= */
.ep-not-found {
    min-height: calc(100dvh - var(--ep-navbar-height) - 160px);
    padding: 48px 20px 64px;
}

.ep-not-found .svg-wrapper {
    max-width: min(100%, 420px);
}

.ep-not-found .svg-wrapper svg {
    width: 100%;
    height: auto;
}

.ep-not-found-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--ep-text);
    margin: 24px 0 12px;
}

.ep-not-found-text {
    font-size: 1.05rem;
    color: var(--ep-text-muted);
    max-width: 420px;
    margin: 0 auto 28px;
}

.ep-not-found-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ep-not-found #g6219 {
    transform-origin: 85px 4px;
    animation: epNotFoundSwing 12s 0.5s infinite ease-out;
}

@keyframes epNotFoundSwing {
    0%   { transform: rotate(0deg); }
    5%   { transform: rotate(3deg); }
    15%  { transform: rotate(-2.5deg); }
    25%  { transform: rotate(2deg); }
    35%  { transform: rotate(-1.5deg); }
    45%  { transform: rotate(1deg); }
    55%  { transform: rotate(-1.5deg); }
    65%  { transform: rotate(2deg); }
    75%  { transform: rotate(-2deg); }
    85%  { transform: rotate(2.5deg); }
    95%  { transform: rotate(-3deg); }
    100% { transform: rotate(0deg); }
}

.ep-about-banner-content {
    animation: epFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes epFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ep-reveal,
    .ep-reveal-left,
    .ep-reveal-right {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .ep-hero-scroll {
        animation: none;
    }

    .ep-about-banner-content {
        animation: none;
    }
}