:root {
    /* sampled from logo background: RGB(25,182,223) */
    --color-brand-cyan: #19b6df;
    --color-brand-cyan-deep: #0ea2cc;
    --color-orange: #e85d04;
    --color-orange-hover: #d35400;
    --color-black: #0d0d0d;
    --color-text: #212529;
    --color-muted: #6c757d;
    --color-green: #198754;
    --color-footer-bg: #f1f3f5;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --radius: 12px;
    --shadow-sm: 0 1px 3px rgb(0 0 0 / 0.06);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background: #fff;
    padding-bottom: 96px;
}

.announcement-bar {
    background: var(--color-black);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    overflow: hidden;
    white-space: nowrap;
}

.announcement-marquee {
    display: inline-block;
    animation: marquee 40s linear infinite;
    padding: 6px 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.announcement-marquee__inner {
    padding-right: 4rem;
}

.top-links__list a {
    color: var(--color-muted);
    text-decoration: none;
}

.top-links__list a:hover {
    color: var(--color-orange);
}

.logo--image {
    line-height: 0;
    display: inline-flex;
    align-items: center;
    overflow: visible;
}

.main-header__brand-strip {
    background: var(--color-brand-cyan);
    border-bottom: none;
}

.logo__img {
    display: block;
    height: auto;
    width: auto;
    max-height: 130px;
    max-width: min(520px, 62vw);
    transform-origin: left center;
    filter: none;
}

.logo__svg {
    display: block;
    height: auto;
    width: auto;
    max-height: 56px;
    max-width: min(400px, 72vw);
}

.logo__img--brand {
    max-height: 64px;
    max-width: min(420px, 82vw);
    width: auto;
    height: auto;
    aspect-ratio: 1024 / 585;
    object-fit: contain;
}

.logo__object {
    display: block;
    max-height: 56px;
    width: min(300px, 78vw);
    border: 0;
    pointer-events: none;
}

.main-header__brand-strip .header-actions__item--on-brand {
    color: #fff;
}

.main-header__brand-strip .header-actions__muted {
    color: rgb(255 255 255 / 0.78);
}

.main-header__brand-strip .header-actions__icon {
    color: rgb(255 255 255 / 0.92);
}

@media (max-width: 576px) {
    .logo__img {
        max-height: 92px;
        max-width: min(360px, 84vw);
    }

    .logo__svg {
        max-height: 48px;
        max-width: min(320px, 88vw);
    }

    .logo__img--brand {
        max-height: 52px;
        max-width: min(340px, 90vw);
    }

    .logo__object {
        max-height: 48px;
        width: min(260px, 88vw);
    }
}

@media (max-width: 768px) {
    .main-header__brand-strip .container {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    .logo--image {
        width: 100%;
        justify-content: center;
    }

    .search-bar {
        width: 100%;
    }

    .header-actions {
        justify-content: center !important;
        gap: 1.25rem !important;
        margin-top: 0.25rem;
    }

    .header-actions__item {
        align-items: center;
    }

    .header-actions__item > div {
        display: none;
    }

    .header-actions__item svg {
        width: 24px;
        height: 24px;
    }

    .cart-badge {
        top: -8px;
        left: 12px;
    }
}

.logo__main {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--color-black);
    letter-spacing: -0.02em;
}

.logo__tld {
    display: inline-block;
    background: var(--color-orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.12rem 0.4rem;
    border-radius: 6px;
    margin-left: 2px;
    vertical-align: middle;
    letter-spacing: -0.01em;
}

.logo__tagline {
    font-size: 0.7rem;
    color: var(--color-muted);
    margin-top: 2px;
    max-width: 280px;
    line-height: 1.3;
}

.search-bar {
    position: relative;
}

.search-bar .form-control {
    border-radius: 999px;
    background: #f1f3f5;
    border: none;
    padding: 0.65rem 3rem 0.65rem 1.25rem;
    box-shadow: none;
}

.search-bar .form-control:focus {
    background: #fff;
    box-shadow: 0 0 0 2px rgb(232 93 4 / 0.25);
}

.search-bar--on-brand .form-control {
    background: #fff;
    color: var(--color-text);
    box-shadow: 0 1px 4px rgb(0 0 0 / 0.08);
}

.search-bar--on-brand .form-control::placeholder {
    color: var(--color-muted);
}

.search-bar--on-brand .form-control:focus {
    box-shadow: 0 0 0 2px rgb(255 255 255 / 0.65), 0 2px 8px rgb(0 0 0 / 0.12);
}

.search-bar--on-brand .search-bar__btn {
    color: var(--color-muted);
}

.search-bar--on-brand .search-bar__btn:hover {
    color: var(--color-orange);
}

.search-bar__btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: var(--color-muted);
    padding: 4px 8px;
    line-height: 1;
}

.search-bar__btn:hover {
    color: var(--color-orange);
}

.header-actions__item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.cart-badge {
    position: absolute;
    top: -6px;
    left: 14px;
    background: var(--color-orange);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.main-header .header-actions__item {
    position: relative;
}

.main-nav {
    background: #fafafa;
}

.main-nav__list a {
    color: var(--color-black);
    text-decoration: none;
    padding: 0.25rem 0.35rem;
    display: inline-block;
}

.main-nav__list a:hover {
    color: var(--color-orange);
}

.hero-carousel {
    position: relative;
    min-height: 320px;
    background: linear-gradient(
        165deg,
        var(--color-black) 0%,
        color-mix(in srgb, var(--color-brand-cyan) 26%, var(--color-black)) 100%
    );
}

@media (min-width: 992px) {
    .hero-carousel {
        min-height: 380px;
    }
}

.hero-carousel__viewport {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

@media (min-width: 992px) {
    .hero-carousel__viewport {
        min-height: 380px;
    }
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgb(0 0 0 / 0.08) 0%, rgb(0 0 0 / 0.44) 100%);
    z-index: 0;
}

.hero-slide > .container {
    position: relative;
    z-index: 1;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

/* 7 slider icin 7 farkli renk tonu */
.hero-carousel__viewport .hero-slide:nth-child(1)::before {
    background: linear-gradient(155deg, rgb(220 53 69 / 0.45) 0%, rgb(0 0 0 / 0.50) 100%);
}

.hero-carousel__viewport .hero-slide:nth-child(2)::before {
    background: linear-gradient(155deg, rgb(13 110 253 / 0.45) 0%, rgb(0 0 0 / 0.50) 100%);
}

.hero-carousel__viewport .hero-slide:nth-child(3)::before {
    background: linear-gradient(155deg, rgb(111 66 193 / 0.45) 0%, rgb(0 0 0 / 0.50) 100%);
}

.hero-carousel__viewport .hero-slide:nth-child(4)::before {
    background: linear-gradient(155deg, rgb(253 126 20 / 0.45) 0%, rgb(0 0 0 / 0.50) 100%);
}

.hero-carousel__viewport .hero-slide:nth-child(5)::before {
    background: linear-gradient(155deg, rgb(25 135 84 / 0.45) 0%, rgb(0 0 0 / 0.50) 100%);
}

.hero-carousel__viewport .hero-slide:nth-child(6)::before {
    background: linear-gradient(155deg, rgb(13 202 240 / 0.45) 0%, rgb(0 0 0 / 0.50) 100%);
}

.hero-carousel__viewport .hero-slide:nth-child(7)::before {
    background: linear-gradient(155deg, rgb(214 51 132 / 0.45) 0%, rgb(0 0 0 / 0.50) 100%);
}

.hero-slide__title {
    text-shadow:
        0 2px 32px rgb(0 0 0 / 0.45),
        0 1px 4px rgb(0 0 0 / 0.55);
}

.hero-slide__badge {
    display: inline-block;
    background: rgb(255 255 255 / 0.12);
    border: 2px solid rgb(255 255 255 / 0.4);
    border-left: 4px solid var(--color-orange);
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 28px color-mix(in srgb, var(--color-brand-cyan) 22%, transparent);
}

.hero-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: rgb(255 255 255 / 0.2);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.hero-carousel__nav:hover {
    background: color-mix(in srgb, var(--color-orange) 55%, rgb(255 255 255 / 0.35));
}

.hero-carousel__nav--prev { left: 12px; }
.hero-carousel__nav--next { right: 12px; }

.hero-carousel__dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
}

.hero-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: rgb(255 255 255 / 0.4);
    padding: 0;
    cursor: pointer;
}

.hero-carousel__dot.is-active {
    background: var(--color-orange);
    width: 22px;
}

.brand-strip {
    background: var(--color-orange);
}

.promo-tile {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 140px;
    border-radius: var(--radius);
    padding: 0.85rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgb(255 255 255 / 0.26);
}

.promo-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgb(0 0 0 / 0.12);
    color: #fff;
}

.promo-tile__title {
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.promo-tile__sub {
    font-size: 0.65rem;
    opacity: 0.95;
    margin-top: 0.35rem;
    line-height: 1.25;
}

.promo-tile--photo .promo-tile__title,
.promo-tile--photo .promo-tile__sub {
    text-shadow: 0 2px 10px rgb(0 0 0 / 0.45);
}

/* Promo kutulari: 2. gorseldeki gibi canli renk paleti */
.promo-grid > div:nth-child(1) .promo-tile {
    background: linear-gradient(180deg, #7b4bc1 0%, #f36f21 100%) !important;
}

.promo-grid > div:nth-child(2) .promo-tile {
    background: linear-gradient(180deg, #ff8a00 0%, #e85d04 100%) !important;
}

.promo-grid > div:nth-child(3) .promo-tile {
    background: linear-gradient(180deg, #ffb703 0%, #fb8500 100%) !important;
}

.promo-grid > div:nth-child(4) .promo-tile {
    background: linear-gradient(180deg, #e3c46b 0%, #c08a2f 100%) !important;
}

.promo-grid > div:nth-child(5) .promo-tile {
    background: linear-gradient(180deg, #b79af6 0%, #8e6be8 100%) !important;
}

.promo-grid > div:nth-child(6) .promo-tile {
    background: linear-gradient(180deg, #e7e7e7 0%, #8f8f8f 100%) !important;
}

.section-superlux {
    background: linear-gradient(180deg, #fff 0%, #f8fafb 100%);
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.section-superlux__all {
    color: var(--color-orange);
}

.section-superlux__all:hover {
    color: var(--color-orange-hover);
}

.superlux-strip {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
}

.superlux-strip__item {
    flex: 0 0 148px;
    scroll-snap-align: start;
    min-width: 0;
}

@media (min-width: 768px) {
    .superlux-strip__item {
        flex: 0 0 168px;
    }
}

.superlux-strip .product-card__name--superlux {
    font-size: 0.8rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-products {
    background: #fafafa;
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}

.product-card:hover {
    box-shadow: 0 10px 28px rgb(0 0 0 / 0.08);
}

.product-card__media {
    display: block;
    aspect-ratio: 1 / 1;
    background: #f8f9fa;
    overflow: hidden;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__body {
    padding: 0.85rem 1rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.35;
    margin-bottom: auto;
}

.product-card__name:hover {
    color: var(--color-orange);
}

.product-card__price {
    margin-top: 0.65rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
}

.product-card__compare {
    font-size: 0.78rem;
    color: var(--color-muted);
    text-decoration: line-through;
}

.product-card__current {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-green);
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-pill__icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgb(232 93 4 / 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-pill__emoji {
    font-size: 1.35rem;
    line-height: 1;
}

.site-footer {
    background: var(--color-footer-bg);
}

.footer-links a {
    color: var(--color-muted);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    padding: 0.2rem 0;
}

.footer-links a:hover {
    color: var(--color-orange);
}

.factory-badge {
    display: inline-block;
    background: linear-gradient(115deg, #c2410c, #ea580c);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.65rem;
    transform: skewX(-8deg);
    border-radius: 4px;
}

.newsletter-form .form-control {
    border-radius: 999px 0 0 999px;
    background: #fff;
    border: 1px solid #dee2e6;
}

.btn-newsletter {
    border-radius: 0 999px 999px 0;
    background: var(--color-orange);
    color: #fff;
    font-weight: 600;
    border: none;
    padding-inline: 1rem;
}

.btn-newsletter:hover {
    background: var(--color-orange-hover);
    color: #fff;
}

#haber-listesi {
    scroll-margin-top: 6rem;
}

.newsletter-form__notice {
    border-radius: var(--radius);
}

.cart-checkout-card,
.checkout-summary {
    top: 5.5rem;
}

@media (max-width: 991.98px) {
    .cart-checkout-card,
    .checkout-summary {
        position: static !important;
    }
}

.fab {
    position: fixed;
    z-index: 1040;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.fab:hover {
    transform: scale(1.02);
}

.fab--whatsapp {
    left: max(16px, env(safe-area-inset-left));
    bottom: max(24px, env(safe-area-inset-bottom));
    background: #25d366;
    color: #fff;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    font-size: 0.72rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgb(37 211 102 / 0.45);
}

.fab__wa-icon {
    width: 22px;
    height: 22px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.881 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.fab--help {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(24px, env(safe-area-inset-bottom));
    background: var(--color-orange);
    color: #fff;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    box-shadow: 0 8px 24px rgb(232 93 4 / 0.35);
}

.fab__q {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.fab--top {
    right: max(22px, env(safe-area-inset-right));
    bottom: max(76px, env(safe-area-inset-bottom));
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #dee2e6;
    box-shadow: var(--shadow-sm);
    font-size: 1.1rem;
    line-height: 1;
    color: var(--color-orange);
}

.fab--top:hover {
    background: #fff;
}

.product-detail__photo img {
    display: block;
    max-height: 520px;
    object-fit: cover;
}

.cart-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
}
