:root {
    --brand: #176b5b;
    --brand-dark: #0e3f38;
    --accent: #d58a1f;
    --ink: #1f2933;
    --muted: #667085;
    --soft: #f4f8f7;
    --line: #d9e4e1;
}

body {
    min-height: 100vh;
    color: var(--ink);
    background: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body:not(.admin-login-body) {
    display: flex;
    flex-direction: column;
}

body:not(.admin-login-body) main {
    flex: 1 0 auto;
}

.js-enabled body:not(.admin-login-body) main {
    animation: page-enter .42s ease-out both;
}

@keyframes page-enter {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

a {
    color: var(--brand);
    text-decoration: none;
}

a:hover {
    color: var(--brand-dark);
}

.brand-logo-link {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    max-width: 190px;
    padding: 0;
}

.brand-logo {
    display: block;
    width: 170px;
    max-width: 42vw;
    height: auto;
    max-height: 76px;
    object-fit: contain;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(14, 63, 56, .1);
    background: rgba(255, 255, 255, .96);
    transition: box-shadow .25s ease, background-color .25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 10px 30px rgba(14, 63, 56, .1);
}

@supports (backdrop-filter: blur(12px)) {
    .site-header {
        background: rgba(255, 255, 255, .9);
        backdrop-filter: blur(12px);
    }
}

.navbar {
    min-height: 88px;
}

.navbar .container {
    gap: 18px;
}

.nav-link {
    position: relative;
    margin: 0 3px;
    padding-right: 10px !important;
    padding-left: 10px !important;
    color: var(--ink);
    font-weight: 600;
    transition: color .2s ease;
}

.nav-link::after {
    position: absolute;
    right: 10px;
    bottom: 3px;
    left: 10px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
    color: var(--brand-dark);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.admin-entry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(14, 63, 56, .18);
    border-radius: 8px;
    color: var(--brand-dark);
    font-weight: 700;
    background: rgba(244, 248, 247, .86);
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.admin-entry:hover {
    color: #ffffff;
    border-color: var(--brand);
    background: var(--brand);
    transform: translateY(-1px);
}

.btn-primary {
    --bs-btn-bg: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-bg: var(--brand-dark);
    --bs-btn-hover-border-color: var(--brand-dark);
}

.btn-outline-primary {
    --bs-btn-color: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-bg: var(--brand);
    --bs-btn-hover-border-color: var(--brand);
}

.hero-section {
    padding: 72px 0;
    background: linear-gradient(180deg, #f7fbfa 0%, #ffffff 100%);
}

.hero-section h1,
.page-title h1 {
    max-width: 760px;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.05;
    font-weight: 800;
}

.hero-image,
.placeholder-visual {
    width: 100%;
    min-height: 320px;
    border-radius: 8px;
    object-fit: cover;
}

.placeholder-visual,
.product-placeholder {
    display: grid;
    place-items: center;
    background: var(--soft);
    border: 1px solid var(--line);
    color: var(--muted);
    font-weight: 700;
}

.section,
.page-title {
    padding: 56px 0;
}

.soft-section {
    background: var(--soft);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading h2,
.content-card h2,
.content-card h3,
.gallery-card h2,
.trust-item h3 {
    color: var(--brand-dark);
}

.eyebrow {
    color: var(--accent);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.content-card,
.trust-item,
.gallery-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    padding: 24px;
}

.product-card {
    padding: 0;
    overflow: hidden;
}

.product-card img,
.product-placeholder,
.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.product-body {
    padding: 20px;
}

.category-block + .category-block {
    margin-top: 56px;
}

.gallery-card {
    padding: 0;
    overflow: hidden;
}

.gallery-card div {
    padding: 20px;
}

.map-frame iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: 8px;
}

.site-footer {
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, .78);
    background:
        radial-gradient(circle at 88% 12%, rgba(213, 138, 31, .14), transparent 28%),
        linear-gradient(145deg, #0e3f38 0%, #082d29 100%);
}

.site-footer a {
    color: #ffffff;
}

.footer-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #f1c05b 48%, var(--brand));
}

.footer-main {
    padding: 56px 0 44px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 10px;
    background: #ffffff;
}

.footer-logo {
    display: block;
    width: 145px;
    height: auto;
}

.footer-subtitle {
    margin: 18px 0 9px;
    color: #f1c05b;
    font-weight: 800;
}

.footer-description {
    max-width: 360px;
    margin: 0;
    line-height: 1.7;
}

.footer-heading {
    position: relative;
    margin: 0 0 20px;
    padding-bottom: 11px;
    color: #ffffff;
    font-size: .96rem;
    font-weight: 800;
}

.footer-heading::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    content: "";
}

.footer-nav,
.footer-contact-list {
    display: grid;
    gap: 12px;
}

.footer-nav a {
    width: fit-content;
    color: rgba(255, 255, 255, .76);
    transition: color .2s ease, transform .2s ease;
}

.footer-nav a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.5;
}

a.footer-contact-item:hover {
    color: #ffffff;
}

.footer-icon {
    display: inline-grid;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    color: #f1c05b;
    background: rgba(255, 255, 255, .06);
}

.footer-icon svg,
.footer-social svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-column-copy {
    margin: -3px 0 17px;
    font-size: .92rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    color: #ffffff;
    font-size: .9rem;
    font-weight: 700;
    background: rgba(255, 255, 255, .07);
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.footer-social:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .13);
    transform: translateY(-2px);
}

.footer-social--instagram:hover {
    border-color: rgba(225, 48, 108, .7);
    background: rgba(193, 53, 132, .28);
}

.footer-social--store:hover {
    border-color: rgba(242, 122, 26, .72);
    background: rgba(242, 122, 26, .25);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .11);
    font-size: .88rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #f1c05b;
    font-weight: 700;
}

.footer-bottom a span {
    display: inline-block;
    transition: transform .2s ease;
}

.footer-bottom a:hover span {
    transform: translateX(4px);
}

.contact-info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.contact-card {
    padding: clamp(24px, 4vw, 48px);
}

.contact-card-heading {
    max-width: 680px;
}

.contact-card-heading h2 {
    margin: 6px 0 8px;
}

.contact-card-heading p {
    margin: 0;
    color: var(--muted);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 96px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--soft);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-info-item:hover {
    color: var(--brand-dark);
    border-color: rgba(23, 107, 91, .34);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(14, 63, 56, .08);
    transform: translateY(-2px);
}

.contact-info-icon {
    display: inline-grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
    background: var(--brand);
}

.contact-info-icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info-copy {
    min-width: 0;
}

.contact-info-copy strong {
    display: block;
    margin-bottom: 3px;
    color: var(--brand-dark);
    font-size: 1rem;
}

.contact-info-copy > span {
    display: block;
    overflow-wrap: anywhere;
    color: var(--muted);
}

.contact-info-item--trendyol .contact-info-icon {
    background: #f27a1a;
}

.contact-info-item--whatsapp {
    border-color: #1fa855;
    color: #ffffff;
    background: #25a85a;
}

.contact-info-item--whatsapp:hover {
    border-color: #158442;
    color: #ffffff;
    background: #188d49;
    box-shadow: 0 10px 24px rgba(24, 141, 73, .2);
}

.contact-info-item--whatsapp .contact-info-icon {
    background: rgba(255, 255, 255, .16);
}

.contact-info-item--whatsapp .contact-info-icon svg {
    fill: currentColor;
    stroke: none;
}

.contact-info-item--whatsapp .contact-info-copy strong,
.contact-info-item--whatsapp .contact-info-copy > span {
    color: #ffffff;
}

.contact-info-item--instagram {
    border-color: #c13584;
    color: #ffffff;
    background: linear-gradient(135deg, #833ab4 0%, #c13584 48%, #e1306c 72%, #f77737 100%);
}

.contact-info-item--instagram:hover {
    border-color: #9b2e70;
    color: #ffffff;
    background: linear-gradient(135deg, #702f9b 0%, #aa2f75 48%, #c62b5e 72%, #dd672f 100%);
    box-shadow: 0 10px 24px rgba(193, 53, 132, .22);
}

.contact-info-item--instagram .contact-info-icon {
    background: rgba(255, 255, 255, .16);
}

.contact-info-item--instagram .contact-info-copy strong,
.contact-info-item--instagram .contact-info-copy > span {
    color: #ffffff;
}

.contact-info-item--instagram .instagram-dot {
    fill: currentColor;
    stroke: none;
}

.contact-info-item--address {
    grid-column: 1 / -1;
}

.contact-info-item--address:hover {
    transform: none;
}

.contact-card .map-frame {
    margin-top: 28px;
}

@media (max-width: 767px) {
    .hero-section,
    .section,
    .page-title {
        padding: 40px 0;
    }

    .brand-logo {
        width: 145px;
        max-width: 54vw;
        max-height: 65px;
    }

    .contact-info-list {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 22px;
    }

    .contact-info-item--address {
        grid-column: auto;
    }

    .contact-info-item {
        min-height: 88px;
        padding: 16px;
    }

    .footer-main {
        padding: 42px 0 32px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin: 10px -12px -8px;
        padding: 10px 12px 18px;
        border-top: 1px solid var(--line);
        background: #ffffff;
    }

    .nav-link {
        margin: 0;
        padding: 11px 4px !important;
    }

    .nav-link::after {
        right: auto;
        bottom: 5px;
        left: 4px;
        width: 38px;
        transform-origin: left;
    }

    .admin-entry {
        margin-top: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
