:root {
    --tefal-red: #e30613;
    --tefal-red-dark: #b8050f;
    --tefal-ink: #1a1a1a;
    --tefal-muted: #5c6570;
    --tefal-bg: #f6f3ef;
    --tefal-surface: #ffffff;
    --tefal-sand: #e8e0d5;
    --tefal-accent: #ffc72c;
    --tefal-teal: #0d7377;
    --radius: 16px;
    --shadow: 0 16px 48px rgba(26, 26, 26, 0.1);
    --font-display: "Outfit", system-ui, sans-serif;
    --font-body: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { min-height: 100%; }

body {
    font-family: var(--font-body);
    color: var(--tefal-ink);
    background:
        radial-gradient(1100px 520px at 8% -8%, rgba(227, 6, 19, 0.12), transparent 55%),
        radial-gradient(900px 480px at 100% 0%, rgba(255, 199, 44, 0.1), transparent 50%),
        radial-gradient(700px 400px at 50% 100%, rgba(13, 115, 119, 0.07), transparent 55%),
        linear-gradient(180deg, #faf8f5 0%, var(--tefal-bg) 40%, #efe9e1 100%);
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

h1, h2, h3, h4, .display-font {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

/* Floating ambient orbs */
.ambient-layer {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: .35;
    animation: orbFloat 14s ease-in-out infinite alternate;
}

.ambient-orb.o1 {
    width: 280px; height: 280px;
    background: var(--tefal-red);
    top: 12%; left: -60px;
    animation-duration: 16s;
}

.ambient-orb.o2 {
    width: 220px; height: 220px;
    background: var(--tefal-accent);
    top: 55%; right: -40px;
    animation-duration: 12s;
    animation-delay: -3s;
}

.ambient-orb.o3 {
    width: 180px; height: 180px;
    background: var(--tefal-teal);
    bottom: 8%; left: 35%;
    animation-duration: 18s;
    animation-delay: -6s;
}

@keyframes orbFloat {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(40px, -50px) scale(1.15); }
}

.site-nav,
main,
.hero,
.section-pad,
.site-footer,
.auth-wrap,
.pb-5 {
    position: relative;
    z-index: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    box-shadow: 0 8px 28px rgba(26, 26, 26, 0.06);
}

.site-nav {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: .7rem;
    padding-bottom: .7rem;
    transition: box-shadow .3s ease;
}

.site-header.is-scrolled,
.site-nav.is-scrolled {
    box-shadow: 0 10px 28px rgba(26, 26, 26, 0.1);
}

.mega-menu,
.mega-menu-mobile {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-nav .nav-link {
    color: #2a2a2a !important;
    font-weight: 600;
    position: relative;
    transition: color .25s ease;
}

.site-nav .nav-link::after {
    content: "";
    position: absolute;
    left: .75rem; right: .75rem; bottom: .2rem;
    height: 2px;
    background: var(--tefal-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.site-nav .nav-link:hover { color: var(--tefal-red) !important; }
.site-nav .nav-link:hover::after { transform: scaleX(1); }

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
}

.brand-logo {
    height: 36px;
    width: auto;
    max-width: 150px;
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
}

.navbar-brand:hover .brand-logo {
    transform: scale(1.06) rotate(-2deg);
}

.brand-divider {
    display: block;
    width: 2px;
    height: 34px;
    background: #111;
    flex-shrink: 0;
    border-radius: 1px;
}

.brand-text-stack {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
    gap: .08rem;
}

.brand-text-main {
    color: var(--tefal-ink);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .95rem;
}

.brand-text-sub {
    color: #333;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .01em;
}

.brand-text {
    color: var(--tefal-ink);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .95rem;
}

.user-chip { opacity: .85; font-size: .9rem; color: #444 !important; }

.header-search {
    position: relative;
    width: min(360px, 100%);
}

.header-search i {
    position: absolute;
    left: .85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #8a8a8a;
    pointer-events: none;
}

.header-search .form-control {
    padding-left: 2.35rem;
    height: 42px;
    border-radius: 999px;
    border: 1.5px solid #e5e5e5;
    background: #f7f7f7;
    font-size: .92rem;
}

.header-search .form-control:focus {
    background: #fff;
    border-color: var(--tefal-red);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, .12);
}

.site-nav .navbar-toggler {
    border-color: rgba(0, 0, 0, .12);
}

.site-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 26, 26, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mega menu — popüler aramalar + kategori + ikon rail */
.mega-menu {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding: .85rem 0 1rem;
}

.mega-menu-mobile {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: .75rem 0 .9rem;
}

.popular-searches {
    display: flex;
    align-items: center;
    gap: .85rem;
    flex-wrap: wrap;
    margin-bottom: .85rem;
}

.popular-label {
    font-weight: 700;
    font-size: .95rem;
    color: var(--tefal-ink);
    white-space: nowrap;
}

.popular-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.popular-pill {
    display: inline-flex;
    align-items: center;
    padding: .38rem .95rem;
    border-radius: 999px;
    background: var(--tefal-red);
    color: #fff !important;
    font-size: .82rem;
    font-weight: 650;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.popular-pill:hover {
    background: var(--tefal-red-dark);
    color: #fff !important;
    transform: translateY(-1px);
}

.category-text-nav {
    display: none;
}

/* Tefal-style mega menu */
.tefal-mega {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    margin-bottom: .95rem;
    z-index: 30;
}

.tefal-mega-top {
    list-style: none;
    margin: 0;
    padding: .35rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: .15rem 1.25rem;
    position: relative;
    z-index: 50;
}

.tefal-mega-item {
    position: static;
}

.tefal-mega-link {
    display: inline-block;
    position: relative;
    z-index: 51;
    color: #2b2b2b;
    text-decoration: none;
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .04em;
    padding: .45rem 0 .55rem;
    border-bottom: 2px solid transparent;
}

.tefal-mega-item:hover > .tefal-mega-link,
.tefal-mega-item.is-open > .tefal-mega-link {
    color: var(--tefal-red);
    border-bottom-color: var(--tefal-red);
}

.tefal-mega-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 40;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    padding: 1.25rem 1.35rem 1.4rem;
    pointer-events: none;
}

.tefal-mega-item.is-open > .tefal-mega-panel,
.tefal-mega:not(.is-js) .tefal-mega-item:hover > .tefal-mega-panel {
    display: block;
    pointer-events: auto;
}

.tefal-mega-cols {
    display: grid;
    gap: 1.25rem 1.5rem;
}

.tefal-mega-cols.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tefal-mega-cols.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tefal-mega-cols.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tefal-mega-cols.cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.tefal-mega-col-title {
    display: block;
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .04em;
    color: #1e3a6e;
    text-decoration: none;
    margin-bottom: .65rem;
}

.tefal-mega-col-title:hover {
    color: var(--tefal-red);
}

.tefal-mega-sub {
    display: inline-block;
    color: #445;
    text-decoration: none;
    font-size: .88rem;
}

.tefal-mega-sub:hover {
    color: var(--tefal-red);
}

.tefal-mega-card {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    max-width: 180px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.tefal-mega-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12%;
    background: #fff;
}

.tefal-mega-panel.type-lists {
    background: #fff;
}

.tefal-mega-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tefal-mega-list li + li {
    margin-top: .28rem;
}

.tefal-mega-list a {
    color: #3a3f4b;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    line-height: 1.35;
}

.tefal-mega-list a:hover {
    color: var(--tefal-red);
}

.tefal-mega-col.is-featured {
    background: #f3f5f7;
    border-radius: 10px;
    padding: .85rem 1rem 1rem;
}

.tefal-mega-col.is-card .tefal-mega-col-title {
    color: #1e3a6e;
}

.tefal-mega-col.is-list .tefal-mega-col-title {
    color: #222;
    margin-bottom: .55rem;
}

.mobile-cat-list {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.mobile-cat-list a {
    display: inline-flex;
    padding: .35rem .75rem;
    border-radius: 999px;
    background: #f3f3f3;
    color: #222;
    text-decoration: none;
    font-size: .8rem;
    font-weight: 650;
}

.mobile-cat-list a:hover {
    background: var(--tefal-red);
    color: #fff;
}


.cat-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: .35rem;
}

.category-icon-rail {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: .85rem 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: .35rem .25rem .55rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    min-width: 0;
}

.category-icon-rail::-webkit-scrollbar {
    display: none;
}

.cat-carousel-btn {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, .1);
    background: #fff;
    color: var(--tefal-ink);
    display: grid;
    place-items: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
    z-index: 2;
    transition: background .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
}

.cat-carousel-btn:hover:not(:disabled) {
    background: var(--tefal-red);
    border-color: var(--tefal-red);
    color: #fff;
    transform: scale(1.05);
}

.cat-carousel-btn:disabled {
    opacity: .35;
    cursor: default;
}

.cat-carousel:not(.is-scrollable) .cat-carousel-btn {
    visibility: hidden;
    pointer-events: none;
}

.cat-icon-item {
    flex: 0 0 auto;
    width: 88px;
    text-align: center;
    text-decoration: none;
    color: var(--tefal-ink);
    scroll-snap-align: start;
    transition: transform .2s ease;
}

.cat-icon-item:hover {
    transform: translateY(-3px);
    color: var(--tefal-ink);
}

.cat-icon-ring {
    width: 70px;
    height: 70px;
    margin: 0 auto .45rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    border: 3px solid var(--tefal-red);
    box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px rgba(227, 6, 19, .35);
    overflow: hidden;
    position: relative;
}

.cat-icon-ring.tone-dark {
    background: #1a1a1a;
    border-color: var(--tefal-red);
    color: #fff;
}

.cat-icon-ring.tone-red {
    background: var(--tefal-red);
    border-color: var(--tefal-red);
    color: #fff;
}

.cat-icon-ring img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12%;
    background: #f7f4ef;
}

.cat-icon-ring i {
    font-size: 1.55rem;
}

.cat-icon-label {
    display: block;
    font-size: .72rem;
    font-weight: 650;
    line-height: 1.2;
    max-width: 92px;
    margin: 0 auto;
}

.btn-accent {
    background: var(--tefal-red);
    border-color: var(--tefal-red);
    color: #fff;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-accent::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.28) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform .55s ease;
}

.btn-accent:hover {
    background: var(--tefal-red-dark);
    border-color: var(--tefal-red-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(227, 6, 19, .35);
}

.btn-accent:hover::before { transform: translateX(120%); }

.btn-dark-soft {
    background: var(--tefal-ink);
    border: none;
    color: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-dark-soft:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.2);
}

/* Marquee */
.campaign-marquee {
    background: #111;
    color: #fff;
    overflow: hidden;
    border-bottom: 3px solid var(--tefal-red);
    white-space: nowrap;
}

.campaign-marquee-track {
    display: inline-flex;
    gap: 3rem;
    padding: .7rem 0;
    animation: marquee 28s linear infinite;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: .85rem;
}

.campaign-marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
}

.campaign-marquee-track .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--tefal-red);
    box-shadow: 0 0 0 0 rgba(227,6,19,.5);
    animation: pulseDot 1.6s infinite;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(227,6,19,.55); }
    70% { box-shadow: 0 0 0 10px rgba(227,6,19,0); }
    100% { box-shadow: 0 0 0 0 rgba(227,6,19,0); }
}

/* Hero */
.hero {
    position: relative;
    min-height: min(82vh, 720px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #111;
}

.hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8,8,8,.9) 0%, rgba(8,8,8,.5) 45%, rgba(8,8,8,.18) 100%),
        linear-gradient(0deg, rgba(8,8,8,.62), transparent 48%);
}

.hero-glow {
    position: absolute;
    width: 420px; height: 420px;
    right: 8%; bottom: -80px;
    background: radial-gradient(circle, rgba(227,6,19,.45), transparent 70%);
    filter: blur(20px);
    animation: glowPulse 5s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes glowPulse {
    from { opacity: .45; transform: scale(1); }
    to { opacity: .85; transform: scale(1.15); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4.5rem 0 3.5rem;
    color: #fff;
    max-width: 640px;
}

.hero-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 6.5vw, 4.2rem);
    line-height: .95;
    margin-bottom: .85rem;
    text-transform: uppercase;
    animation: brandIn .9s cubic-bezier(.2,.8,.2,1) both;
}

.hero-brand span {
    color: var(--tefal-red);
    display: inline-block;
    animation: brandPop 2.4s ease-in-out infinite;
}

@keyframes brandIn {
    from { opacity: 0; transform: translateY(24px) scale(.96); }
    to { opacity: 1; transform: none; }
}

@keyframes brandPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.hero-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,.88);
    max-width: 34rem;
    margin-bottom: 1.5rem;
    animation: fadeUp .8s .15s ease both;
}

.hero-content .btn {
    animation: fadeUp .8s .28s ease both;
}

@keyframes heroZoom {
    from { transform: scale(1.05) translate(0, 0); }
    to { transform: scale(1.12) translate(-1.5%, -1%); }
}

.corner-frame {
    position: relative;
    display: inline-block;
    padding: .45rem .2rem;
}

.corner-frame::before,
.corner-frame::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--tefal-red);
    animation: cornerPulse 2.8s ease-in-out infinite;
}

.corner-frame::before {
    top: -10px; left: -12px;
    border-right: 0; border-bottom: 0;
}

.corner-frame::after {
    bottom: -10px; right: -12px;
    border-left: 0; border-top: 0;
    animation-delay: 1.4s;
}

@keyframes cornerPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .55; transform: scale(1.08); }
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* Sections */
.section-pad { padding: 4rem 0; }

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin-bottom: .4rem;
}

.section-sub {
    color: var(--tefal-muted);
    margin-bottom: 1.75rem;
}

.promo-strip {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 991px) {
    .promo-strip { grid-template-columns: 1fr; }
}

.promo-tile {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 280px;
    box-shadow: var(--shadow);
    display: block;
    text-decoration: none;
    color: #fff;
}

.promo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

.promo-tile:hover img { transform: scale(1.08); }

.promo-tile .promo-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.4rem;
    background: linear-gradient(transparent, rgba(0,0,0,.8));
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    transform: translateY(6px);
    transition: transform .35s ease;
}

.promo-tile:hover .promo-caption { transform: translateY(0); }

/* Product cards */
.product-grid .product-card {
    background: var(--tefal-surface);
    border: 1px solid rgba(0,0,0,.05);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 18px rgba(0,0,0,.04);
}

.product-grid .product-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 22px 50px rgba(227, 6, 19, .14);
    color: inherit;
}

.product-thumb {
    aspect-ratio: 1 / 1;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.9), transparent 45%),
        linear-gradient(145deg, #f7f2eb, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-thumb::after {
    content: "";
    position: absolute;
    inset: -40% 40% 40% -40%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
    transform: translateX(-120%) rotate(20deg);
    transition: transform .8s ease;
    pointer-events: none;
}

.product-card:hover .product-thumb::after {
    transform: translateX(180%) rotate(20deg);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8%;
    transition: transform .55s cubic-bezier(.2,.8,.2,1);
}

.product-card:hover .product-thumb img {
    transform: scale(1.06);
}

.detail-image img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    padding: 1.5rem;
    transition: transform .6s ease;
}

.product-thumb .placeholder-icon {
    font-size: 3rem;
    color: rgba(227,6,19,.25);
}

.product-body {
    padding: 1rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    flex: 1;
}

.product-code {
    font-size: .75rem;
    color: var(--tefal-muted);
    letter-spacing: .02em;
}

.product-name {
    font-family: var(--font-display);
    font-weight: 650;
    font-size: 1rem;
    line-height: 1.25;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    margin-top: auto;
    padding-top: .5rem;
    font-family: var(--font-display);
    font-weight: 750;
    font-size: 1.15rem;
    color: var(--tefal-red);
}

.product-price.locked {
    color: var(--tefal-muted);
    font-size: .95rem;
    font-weight: 600;
}

.badge-promo {
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: var(--tefal-accent);
    color: #111;
    font-weight: 700;
    font-size: .7rem;
    padding: .35rem .55rem;
    border-radius: 6px;
    z-index: 2;
    animation: badgeBounce 2.5s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.badge-stock {
    position: absolute;
    top: .75rem;
    right: .75rem;
    background: rgba(255,255,255,.94);
    color: var(--tefal-teal);
    font-size: .7rem;
    font-weight: 650;
    padding: .3rem .5rem;
    border-radius: 6px;
    z-index: 2;
    backdrop-filter: blur(6px);
}

/* Filters */
.filter-bar {
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: var(--radius);
    padding: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,.04);
}

/* Auth */
.auth-wrap {
    min-height: calc(100vh - 72px);
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
}

.auth-card {
    width: min(440px, 100%);
    background: #fff;
    border-radius: calc(var(--radius) + 4px);
    box-shadow: var(--shadow);
    padding: 2rem;
    border: 1px solid rgba(0,0,0,.04);
    animation: fadeUp .6s ease both;
}

.auth-logo {
    height: 44px;
    width: auto;
    max-width: 180px;
    margin-bottom: 1rem;
}

/* Admin */
.admin-shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
    background: #f0ece6;
}

@media (max-width: 991px) {
    .admin-shell { grid-template-columns: 1fr; }
}

.admin-sidebar {
    background: #171717;
    color: #fff;
    padding: 1.25rem 1rem;
}

.admin-sidebar .brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .5rem .75rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 1rem;
}

.admin-sidebar .brand img {
    height: 28px;
    width: auto;
    max-width: 120px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    padding: .7rem .85rem;
    border-radius: 10px;
    margin-bottom: .2rem;
    font-weight: 500;
    transition: background .2s ease, transform .2s ease;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(227,6,19,.2);
    color: #fff;
    transform: translateX(4px);
}

.admin-main { padding: 1.5rem; }

.stat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.25rem;
    border: 1px solid rgba(0,0,0,.04);
    box-shadow: 0 6px 20px rgba(0,0,0,.04);
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.stat-card .stat-value {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 750;
    line-height: 1;
}

.stat-card .stat-label {
    color: var(--tefal-muted);
    font-size: .9rem;
    margin-top: .35rem;
}

.admin-table-wrap {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,.05);
    overflow: hidden;
}

.table thead th {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--tefal-muted);
    background: #faf8f5;
}

.price-red { color: var(--tefal-red); font-weight: 700; }

.newsletter-section {
    background: #e8eef2;
    padding: 2.75rem 0 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.2vw, 1.55rem);
    font-weight: 700;
    color: #1f2a37;
    margin: 0 0 1.15rem;
    max-width: 52rem;
    line-height: 1.35;
}

.newsletter-form {
    max-width: 640px;
}

.newsletter-row {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1 1 260px;
    height: 46px;
    border: 1px solid #cfd6dd;
    border-radius: 4px;
    padding: 0 .95rem;
    background: #fff;
    font-size: .95rem;
    color: #333;
}

.newsletter-input::placeholder {
    color: #9aa3ad;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--tefal-red);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, .12);
}

.newsletter-submit {
    height: 46px;
    padding: 0 1.35rem;
    border: 1.5px solid #3a4654;
    border-radius: 4px;
    background: #fff;
    color: #1e3a6e;
    font-weight: 800;
    font-size: .88rem;
    letter-spacing: .04em;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.newsletter-submit:hover {
    background: #1e3a6e;
    border-color: #1e3a6e;
    color: #fff;
}

.newsletter-consents {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.newsletter-check {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .86rem;
    color: #3a4553;
    line-height: 1.4;
    margin: 0;
    cursor: pointer;
}

.newsletter-check input {
    margin-top: .2rem;
    flex: 0 0 auto;
    accent-color: var(--tefal-red);
}

.newsletter-check a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.newsletter-check a:hover {
    color: var(--tefal-red);
}

@media (max-width: 575.98px) {
    .newsletter-submit {
        width: 100%;
    }
}

.site-footer {
    background: #141414;
    color: rgba(255,255,255,.75);
    margin-top: 3rem;
}

.footer-logo { height: 36px; width: auto; max-width: 150px; }

.footer-title {
    color: #fff;
    font-family: var(--font-display);
    margin-bottom: .85rem;
}

.footer-links a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: color .2s ease, padding-left .2s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-text { color: rgba(255,255,255,.65); }
.footer-hr { border-color: rgba(255,255,255,.1); }
.footer-meta { color: rgba(255,255,255,.45); }

.fade-up {
    animation: fadeUp .7s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    padding: .5rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(0,0,0,.08);
    color: var(--tefal-ink);
    text-decoration: none;
    font-weight: 600;
    font-size: .88rem;
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.cat-pill:hover,
.cat-pill.active {
    background: var(--tefal-red);
    border-color: var(--tefal-red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(227,6,19,.28);
}

.detail-hero {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,.05);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.detail-image {
    background: linear-gradient(145deg, #f4efe8, #fff);
    min-height: 420px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    padding: 1.5rem;
    transition: transform .6s ease;
}

.detail-image:hover img {
    transform: scale(1.04);
}

.contact-map-frame {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #ddd;
    aspect-ratio: 21 / 9;
    min-height: 280px;
}

.contact-map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-list a {
    color: inherit;
    text-decoration: none;
}

.contact-list a:hover {
    color: var(--tefal-red);
}

/* Product detail action area */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: .25rem;
}

.product-action-quote {
    margin: 0;
}

.quote-row {
    display: flex;
    align-items: center;
    gap: .65rem;
    flex-wrap: wrap;
}

.qty-label {
    font-weight: 700;
    font-size: .95rem;
    margin: 0;
    color: var(--tefal-ink);
}

.qty-input {
    width: 64px;
    height: 46px;
    border: 1.5px solid #d7d7d7;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    background: #fff;
}

.qty-input:focus {
    outline: none;
    border-color: var(--tefal-red);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, .12);
}

.btn-quote {
    flex: 1;
    min-width: 220px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: #ffd200;
    color: #111;
    font-weight: 800;
    font-size: .92rem;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 8px 18px rgba(255, 210, 0, .35);
}

.btn-quote:hover {
    background: #ffc400;
    color: #111;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(255, 210, 0, .45);
}

.btn-wa-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    width: 100%;
    height: 48px;
    border-radius: 999px;
    background: #25d366;
    color: #fff !important;
    font-weight: 800;
    font-size: .92rem;
    letter-spacing: .02em;
    text-decoration: none;
    text-transform: uppercase;
    border: 0;
    box-shadow: 0 8px 18px rgba(37, 211, 102, .3);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-wa-full:hover {
    background: #1ebe57;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(37, 211, 102, .4);
}

.action-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
}

.btn-outline-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 46px;
    padding: .55rem 1rem;
    border-radius: 999px;
    border: 1.5px solid #1a1a1a;
    background: #fff;
    color: #111 !important;
    font-weight: 750;
    font-size: .82rem;
    letter-spacing: .02em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.btn-outline-action:hover {
    background: #111;
    color: #fff !important;
    transform: translateY(-1px);
}

.product-action-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .85rem;
    margin-top: .35rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.btn-print {
    flex: 1 1 220px;
    text-transform: none;
    font-size: .88rem;
    letter-spacing: 0;
    font-weight: 700;
}

.share-block {
    display: flex;
    align-items: center;
    gap: .45rem;
}

.share-label {
    font-weight: 700;
    font-size: .92rem;
    margin-right: .15rem;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 0;
    display: grid;
    place-items: center;
    color: #fff !important;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease;
}

.share-btn:hover {
    transform: scale(1.08);
    color: #fff !important;
    opacity: .92;
}

.share-wa { background: #25d366; }
.share-ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.share-copy { background: #1f2a44; }

.quote-list-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 650;
    font-size: .9rem;
    color: var(--tefal-red);
    text-decoration: none;
}

.quote-list-link:hover {
    text-decoration: underline;
    color: var(--tefal-red-dark);
}

.compare-thumb {
    width: 110px;
    height: 110px;
    object-fit: contain;
    background: #f7f4ef;
    border-radius: 12px;
    padding: .5rem;
}

.compare-table th,
.compare-table td {
    vertical-align: middle;
    padding: .85rem 1rem;
}

.compare-table tbody th {
    background: #faf8f5;
    font-weight: 650;
    width: 140px;
}

@media (max-width: 575.98px) {
    .action-pair {
        grid-template-columns: 1fr;
    }

    .btn-quote {
        width: 100%;
        min-width: 0;
    }

    .product-action-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .share-block {
        justify-content: flex-start;
    }
}

@media print {
    .campaign-marquee,
    .site-header,
    .site-nav,
    .site-footer,
    .whatsapp-float,
    .quote-side-tab,
    .chatbot,
    .ambient-layer,
    .breadcrumb,
    .product-actions,
    .modal,
    .alert {
        display: none !important;
    }

    .detail-hero {
        box-shadow: none;
        border: 0;
    }

    body {
        background: #fff;
    }
}

/* Sol kenar — Teklif İste sekmesi */
.quote-side-tab {
    position: fixed;
    left: 0;
    top: 50%;
    z-index: 1045;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: var(--tefal-red);
    color: #fff !important;
    text-decoration: none !important;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    line-height: 1;
    padding: 1.15rem 0.55rem;
    border-radius: 0 12px 12px 0;
    writing-mode: vertical-rl;
    transform: translateY(-50%) rotate(180deg);
    box-shadow: 4px 0 16px rgba(227, 6, 19, 0.28);
    transition: background 0.15s ease, padding 0.15s ease;
}

.quote-side-tab:hover,
.quote-side-tab.is-active {
    background: var(--tefal-red-dark);
    color: #fff !important;
    padding-right: 0.7rem;
}

.quote-side-tab__label { display: block; }

.quote-side-tab__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.2rem;
    height: 1.2rem;
    padding: 0 0.28rem;
    border-radius: 999px;
    background: #fff;
    color: var(--tefal-red);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0;
    writing-mode: horizontal-tb;
    transform: rotate(180deg);
}

@media (max-width: 575.98px) {
    .quote-side-tab {
        top: auto;
        bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
        left: 0;
        writing-mode: horizontal-tb;
        transform: none;
        border-radius: 0 14px 14px 0;
        padding: 0.72rem 0.95rem;
        font-size: 0.82rem;
        letter-spacing: 0.04em;
        gap: 0.4rem;
        box-shadow: 4px 4px 18px rgba(227, 6, 19, 0.28);
    }

    .quote-side-tab__count {
        writing-mode: horizontal-tb;
        transform: none;
    }
}

.whatsapp-float {
    position: fixed;
    left: 1.15rem;
    right: auto;
    bottom: 1.15rem;
    z-index: 1040;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
    animation: waPulse 2.4s ease-in-out infinite;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 16px 36px rgba(37, 211, 102, .55);
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .45); }
    50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* Canlı destek chatbot — sağ alt */
.chatbot {
    position: fixed;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 1050;
}

.chatbot-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--tefal-red-dark), var(--tefal-red));
    color: #fff;
    font-size: 1.45rem;
    box-shadow: 0 10px 28px rgba(227, 6, 19, .45);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.chatbot-toggle:hover {
    transform: scale(1.07);
    box-shadow: 0 14px 32px rgba(227, 6, 19, .55);
}

.chatbot-toggle.is-open {
    background: #334155;
    box-shadow: 0 10px 24px rgba(51, 65, 85, .4);
}

.chatbot-panel {
    position: absolute;
    right: 0;
    bottom: 68px;
    width: min(340px, calc(100vw - 1.5rem));
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 26, 26, .28);
    border: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    max-height: 420px;
}

.chatbot-panel[hidden] {
    display: none !important;
}

.chatbot-head {
    background: linear-gradient(135deg, #1a1a1a, var(--tefal-red));
    color: #fff;
    padding: 0.85rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.chatbot-online {
    display: block;
    font-size: 0.72rem;
    opacity: 0.85;
    margin-top: 0.15rem;
}

.chatbot-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    padding: .15rem;
    line-height: 1;
}

.chatbot-body {
    padding: 0.85rem;
    overflow-y: auto;
    flex: 1;
    background: #faf7f3;
}

.chat-bubble {
    max-width: 90%;
    padding: 0.65rem 0.8rem;
    border-radius: 12px;
    font-size: 0.86rem;
    margin-bottom: 0.55rem;
    line-height: 1.4;
}

.chat-bubble.bot {
    background: #fff;
    border: 1px solid #ebe4db;
    color: var(--tefal-ink);
}

.chat-bubble.user {
    background: var(--tefal-red);
    color: #fff;
    margin-left: auto;
}

.chat-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.35rem;
}

.chat-quick button {
    border: 1px solid #e2d5c8;
    background: #fff;
    color: var(--tefal-red);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 650;
    padding: 0.35rem 0.65rem;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

.chat-quick button:hover {
    background: var(--tefal-red);
    color: #fff;
    border-color: var(--tefal-red);
}

.chatbot-input {
    display: flex;
    gap: 0.35rem;
    padding: 0.65rem;
    border-top: 1px solid #ebe4db;
    background: #fff;
}

.chatbot-input input {
    flex: 1;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    font-size: 0.86rem;
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--tefal-red);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, .12);
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--tefal-red);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.chatbot-input button:hover {
    background: var(--tefal-red-dark);
}

@media (max-width: 575.98px) {
    .whatsapp-float {
        left: 1rem;
        bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    }

    .chatbot {
        right: 1rem;
        bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    }

    .chatbot-panel {
        width: min(340px, calc(100vw - 1.25rem));
        max-height: min(420px, calc(100vh - 7rem));
    }

    .quote-side-tab {
        bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
