/* Cici Züccaciye — close replica theme */

:root {
    --cici-navy: #1a2744;
    --cici-navy-light: #243558;
    --cici-magenta: #8B1A5C;
    --cici-olive: #4A5D23;
    --cici-olive-dark: #3D4E1C;
    --cici-red: #C41E3A;
    --cici-bg: #f3f4f6;
    --cici-gold: #C5A059;
    /* Cici: mobilde 40vw yükseklik (5/2), masaüstünde ~2.2 */
    --hero-aspect-mobile: 5 / 2;
    --hero-aspect-desktop: 221 / 100;
    --hero-aspect: var(--hero-aspect-desktop);
    --product-aspect: 2 / 3;
    --product-card-width: 13.75rem;
    --product-card-width-mobile: calc(46vw - 0.25rem);
    --product-card-border: #c5cad3;
    --promo-card-width-mobile: calc(68vw - 0.25rem);
}

html, body { overflow-x: hidden; }
body {
    background: #fff;
    font-family: 'Poppins', system-ui, sans-serif;
    padding-bottom: env(safe-area-inset-bottom);
}

/* Typography */
.font-display { font-family: 'Playfair Display', Georgia, serif; }

/* Logo */
.logo-mark--cici { align-items: center; text-align: center; line-height: 1.05; }
.logo-mark--cici .logo-mark__brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: var(--cici-magenta);
    font-style: italic;
    letter-spacing: 0.01em;
}
.logo-mark--cici .logo-mark__sub {
    font-size: 0.38em;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #333;
    margin-top: 3px;
}
.logo-mark__sub--dark { color: rgba(255,255,255,0.65); }

/* Marquee */
.marquee-bar {
    display: block;
    background: #0A0909;
    color: #fff;
    overflow: hidden;
    text-decoration: none;
}
.marquee-bar__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}
.marquee-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 2rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.marquee-bar__item i { color: #25D366; }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Header */
.site-header { box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
.top-util a { text-decoration: none; color: #888; font-size: 11px; }
.top-util a:hover { color: #111; }

.main-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0 0.875rem;
    flex-wrap: wrap;
}
.main-header__logo {
    flex: 1;
    display: flex;
    justify-content: center;
    text-decoration: none;
    order: 2;
}
.main-header__menu { order: 1; flex-shrink: 0; }
.main-header__actions {
    order: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.main-header__search {
    position: relative;
    width: min(100%, 14rem);
}
.main-header__search input {
    width: 100%;
    padding: 0.5rem 2.25rem 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 9999px;
    font-size: 0.75rem;
    background: #fff;
}
.main-header__search input:focus {
    outline: none;
    border-color: var(--cici-navy);
}
.main-header__search button {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
}
.main-header__icon {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    text-decoration: none;
    position: relative;
}
.main-header__mobile-search {
    width: 100%;
    order: 4;
    padding-bottom: 0.75rem;
}
.main-header__mobile-search input {
    width: 100%;
    padding: 0.625rem 2.5rem 0.625rem 1rem;
    border: 1px solid #ddd;
    border-radius: 9999px;
    font-size: 0.8125rem;
}

.category-nav {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
}
.category-nav__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.15rem;
    padding: 0.55rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
}
.category-nav__inner::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) {
    .category-nav__inner {
        justify-content: center;
        flex-wrap: nowrap;
        overflow: visible;
        gap: 0.35rem 0.15rem;
        padding: 0.7rem 0;
    }
}
.category-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    font-size: 0.6875rem;
    font-weight: 650;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #2a2a2a;
    text-decoration: none;
    white-space: nowrap;
    padding: 0.45rem 0.7rem;
    border-radius: 9999px;
    transition: color 0.15s, background 0.15s;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    scroll-snap-align: start;
}
@media (min-width: 768px) {
    .category-nav__link { font-size: 0.72rem; padding: 0.5rem 0.85rem; }
}
.category-nav__link:hover {
    color: var(--cici-magenta);
    background: #faf7f9;
}
.category-nav__link.is-active {
    color: #fff;
    background: var(--cici-navy);
}
.category-nav__link--accent { color: var(--cici-olive); }
.category-nav__link--accent:hover { color: var(--cici-olive-dark); background: #f4f6ef; }
.category-nav__link--deal { color: var(--cici-red); }
.category-nav__link--deal:hover { color: #fff; background: var(--cici-red); }

.category-nav__dropdown { position: relative; flex-shrink: 0; }
.category-nav__toggle i {
    font-size: 0.55rem;
    transition: transform 0.2s;
}
.category-nav__dropdown.is-open .category-nav__toggle i { transform: rotate(180deg); }
.category-nav__dropdown.is-open .category-nav__toggle {
    color: var(--cici-magenta);
    background: #faf7f9;
}
.category-nav__mega {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 50%;
    transform: translateX(-50%);
    width: min(92vw, 42rem);
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 18px 48px rgba(26, 39, 68, 0.12);
    border-radius: 1rem;
    padding: 0.85rem;
    z-index: 80;
}
@media (max-width: 1023px) {
    .category-nav__mega {
        left: 0;
        right: auto;
        transform: none;
        width: min(88vw, 22rem);
    }
}
.category-nav__mega-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    max-height: min(60vh, 22rem);
    overflow-y: auto;
}
@media (min-width: 768px) {
    .category-nav__mega-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .category-nav__mega-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); max-height: none; }
}
.category-nav__mega-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: #333;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}
.category-nav__mega-item i {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.5rem;
    background: #f3f4f6;
    color: var(--cici-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.category-nav__mega-item:hover,
.category-nav__mega-item.is-active {
    background: #f7f8fa;
    color: var(--cici-navy);
}
.category-nav__mega-item.is-active i { background: var(--cici-navy); color: #fff; }

/* Mobile drawer */
.mobile-menu { position: fixed; inset: 0; z-index: 200; pointer-events: none; visibility: hidden; }
.mobile-menu.is-open { pointer-events: auto; visibility: visible; }
.mobile-menu-backdrop {
    position: absolute; inset: 0;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0; transition: opacity 0.28s ease;
    backdrop-filter: blur(2px);
}
.mobile-menu.is-open .mobile-menu-backdrop { opacity: 1; }
.mobile-menu-panel {
    position: absolute; top: 0; left: 0; bottom: 0;
    width: min(22rem, 90vw);
    background: #fff;
    display: flex; flex-direction: column;
    overflow: hidden;
    transform: translateX(-104%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 12px 0 40px rgba(0,0,0,0.14);
}
.mobile-menu.is-open .mobile-menu-panel { transform: translateX(0); }

.mnav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(180deg, #fbfbfc 0%, #fff 100%);
}
.mnav-close {
    width: 2.35rem; height: 2.35rem;
    border: 1px solid #e8e8e8;
    border-radius: 9999px;
    background: #fff;
    color: #444;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
}
.mnav-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 0.85rem 1rem 1.25rem;
    -webkit-overflow-scrolling: touch;
}
.mnav-quick {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.mnav-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.7rem 0.35rem;
    border-radius: 0.85rem;
    background: #f5f6f8;
    color: #333;
    text-decoration: none;
    font-size: 0.6875rem;
    font-weight: 650;
    letter-spacing: 0.02em;
}
.mnav-chip i { font-size: 0.95rem; }
.mnav-chip--new { background: #eef4ea; color: var(--cici-olive); }
.mnav-chip--deal { background: #fdecee; color: var(--cici-red); }

.mnav-main {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1.1rem;
}
.mnav-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.8rem 0.75rem;
    border-radius: 0.8rem;
    text-decoration: none;
    color: #222;
    font-size: 0.9rem;
    font-weight: 550;
}
.mnav-link i {
    width: 2rem; height: 2rem;
    border-radius: 0.6rem;
    background: #f3f4f6;
    color: var(--cici-navy);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
}
.mnav-link:hover { background: #f7f8fa; }

.mnav-section { margin-bottom: 1rem; }
.mnav-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8a8a;
    margin: 0 0 0.55rem 0.15rem;
}
.mnav-primary { display: flex; flex-direction: column; gap: 0.4rem; }
.mnav-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 0.85rem;
    border: 1px solid #ececec;
    border-radius: 0.9rem;
    text-decoration: none;
    color: #1c1c1c;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.mnav-card:hover {
    border-color: #d5d9e2;
    box-shadow: 0 6px 18px rgba(26,39,68,0.06);
}
.mnav-card__icon {
    width: 2.35rem; height: 2.35rem;
    border-radius: 0.7rem;
    background: var(--cici-navy);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mnav-card__text { flex: 1; font-size: 0.875rem; font-weight: 600; line-height: 1.25; }
.mnav-card__arrow { color: #bbb; font-size: 0.7rem; }

.mnav-accordion {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
    border: 1px solid #ececec;
    border-radius: 0.9rem;
    background: #fafafa;
    color: #222;
    font-size: 0.875rem;
    font-weight: 650;
    cursor: pointer;
    font-family: inherit;
}
.mnav-accordion i { font-size: 0.7rem; transition: transform 0.2s; color: #777; }
.mnav-accordion.is-open i { transform: rotate(180deg); }
.mnav-acc-panel {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 0.45rem;
    padding: 0.25rem;
    border: 1px solid #f0f0f0;
    border-radius: 0.9rem;
    background: #fff;
    max-height: 16rem;
    overflow-y: auto;
}
.mnav-sublink {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 0.75rem;
    border-radius: 0.7rem;
    text-decoration: none;
    color: #333;
    font-size: 0.8125rem;
    font-weight: 500;
}
.mnav-sublink i { width: 1.1rem; color: var(--cici-navy); text-align: center; font-size: 0.75rem; }
.mnav-sublink:hover { background: #f6f7f9; }

.mnav-foot {
    padding: 0.85rem 1rem 1.1rem;
    border-top: 1px solid #f0f0f0;
    background: #fff;
}
.mnav-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 9999px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}
.mnav-wa:hover { filter: brightness(0.97); color: #fff; }

/* Product list toolbar */
.plist-toolbar {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding: 0.95rem 1rem;
    background: #f7f8fa;
    border: 1px solid #eceef2;
    border-radius: 1rem;
}
@media (min-width: 768px) {
    .plist-toolbar { padding: 1rem 1.15rem; gap: 1rem; }
}
.plist-toolbar__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .plist-toolbar__row { grid-template-columns: 1.4fr 1fr; }
}
.plist-field { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.plist-field__label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8b8f97;
}
.plist-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #e2e4e8;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 0.9rem center;
    border-radius: 0.75rem;
    padding: 0.7rem 2.25rem 0.7rem 0.9rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2430;
    font-family: inherit;
    cursor: pointer;
}
.plist-select:focus {
    outline: none;
    border-color: var(--cici-navy);
    box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.1);
}
.plist-toolbar__chips {
    display: flex;
    gap: 0.45rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.plist-toolbar__chips::-webkit-scrollbar { display: none; }
.plist-chip {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid #e3e5ea;
    background: #fff;
    color: #4b5160;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.plist-chip:hover { border-color: #cfd3db; color: var(--cici-navy); }
.plist-chip.is-active {
    background: var(--cici-navy);
    border-color: var(--cici-navy);
    color: #fff;
}
.plist-chip--deal.is-active { background: var(--cici-red); border-color: var(--cici-red); }
.plist-chip--new.is-active { background: var(--cici-olive); border-color: var(--cici-olive); }
.plist-active {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: -0.35rem 0 1rem;
    font-size: 0.8125rem;
    color: #6b7280;
}
.plist-active a {
    color: var(--cici-magenta);
    font-weight: 600;
    text-decoration: none;
}
.plist-active a:hover { text-decoration: underline; }


/* Hero — Cici full-bleed image slider (metin görselin içinde) */
.hero-section--cici {
    padding: 0;
    margin: 0;
    background: #fff;
    width: 100%;
}
.hero-shell--cici {
    position: relative;
    border-radius: 0 !important;
    min-height: unset !important;
    width: 100%;
    height: 40vw; /* Cici: repeat(10, 4vw) */
    max-height: none;
    aspect-ratio: unset;
    box-shadow: none !important;
    background: #e8e8e8;
    overflow: hidden;
}
@media (min-width: 768px) {
    .hero-shell--cici {
        height: auto;
        aspect-ratio: var(--hero-aspect-desktop);
        max-height: min(520px, 42vw);
    }
}
.hero-shell--cici .hero-slide {
    display: block;
    text-decoration: none;
    color: inherit;
}
.hero-shell--cici .hero-slide__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-shell--cici .hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.08);
    color: #333;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
}
@media (min-width: 768px) {
    .hero-shell--cici .hero-nav { display: inline-flex; }
}
.hero-shell--cici .hero-nav:hover { background: #fff; }
.hero-shell--cici .hero-nav--prev { left: 0.75rem; }
.hero-shell--cici .hero-nav--next { right: 0.75rem; }

.hero-dots--cici {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.65rem;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 0.35rem;
}
.hero-dots--cici .hero-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.65);
    border: none;
    padding: 0;
    cursor: pointer;
}
.hero-dots--cici .hero-dot.is-active {
    background: #fff;
    width: 1.1rem;
}

/* Product sections */
.cici-section {
    padding: 1.5rem 0 1.25rem;
    background: #fff;
}
.cici-section--white { background: #fff; }
.cici-section__title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .cici-section__title { font-size: 1.5rem; }
}
.cici-section__title a {
    color: var(--cici-navy);
    text-decoration: none;
}
.cici-section__title a:hover { opacity: 0.85; }
.cici-section__title--accent a { color: var(--cici-magenta); }

.cici-carousel {
    position: relative;
    padding: 0 2.75rem;
}
@media (min-width: 1280px) {
    .cici-carousel { padding: 0 3rem; }
}
.cici-carousel__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 0.25rem 0 0.75rem;
    -webkit-overflow-scrolling: touch;
}
.cici-carousel__item {
    flex: 0 0 11.25rem;
    scroll-snap-align: start;
}
@media (min-width: 640px) {
    .cici-carousel__item { flex: 0 0 12.5rem; }
}
@media (min-width: 768px) {
    .cici-carousel__item { flex: 0 0 13.75rem; }
}
@media (min-width: 1024px) {
    .cici-carousel__item { flex: 0 0 14.5rem; }
}
@media (min-width: 1280px) {
    .cici-carousel__item {
        flex: 0 0 var(--product-card-width);
        min-width: var(--product-card-width);
        max-width: var(--product-card-width);
    }
}
.cici-carousel__nav {
    position: absolute;
    top: 34%;
    transform: translateY(-50%);
    z-index: 2;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background: rgba(255, 255, 255, 0.96);
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.625rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: background 0.15s, color 0.15s;
}
@media (min-width: 768px) {
    .cici-carousel__nav {
        width: 2.125rem;
        height: 2.125rem;
        border-radius: 0;
        border: none;
        background: #111;
        color: #fff;
        box-shadow: none;
        font-size: 0.6875rem;
        top: 38%;
    }
}
.cici-carousel__nav:hover {
    background: #fff;
    color: #374151;
}
@media (min-width: 768px) {
    .cici-carousel__nav:hover { background: #000; color: #fff; }
}
.cici-carousel__nav--prev { left: 0.125rem; }
.cici-carousel__nav--next { right: 0.125rem; }
@media (min-width: 768px) {
    .cici-carousel__nav--prev { left: 0.25rem; }
    .cici-carousel__nav--next { right: 0.25rem; }
}

/* Product card — Cici ilan kartı */
.cici-product {
    background: #fff;
    border: 1px solid var(--product-card-border);
    border-radius: 0.9375rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0.625rem;
    gap: 0.5rem;
    box-shadow: none;
}
.cici-product__media {
    display: block;
    aspect-ratio: var(--product-aspect);
    width: 100%;
    background: #fff;
    overflow: hidden;
    border-radius: 0.5rem;
    border: 1px solid #e8eaed;
}
.cici-product__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.cici-product__body {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.375rem;
}
.cici-product__title {
    font-size: 13px;
    font-weight: 400;
    color: #101010;
    line-height: 1.35;
    margin: 0;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 1.35em;
}
.cici-product__title:hover { color: #000; }
.cici-product__price-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0;
    min-height: 2.75rem;
}
.cici-product__discount {
    flex-shrink: 0;
    background: var(--cici-navy);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    padding: 0.35rem 0.45rem;
    line-height: 1.1;
    min-width: 2rem;
    text-align: center;
    align-self: flex-start;
    border-radius: 0;
}
.cici-product__price-col {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}
.cici-product__price-old {
    font-size: 13px;
    font-weight: 400;
    color: #aaa;
    text-decoration: line-through;
    line-height: 1.25;
}
.cici-product__price {
    font-size: 15px;
    font-weight: 900;
    color: #101010;
    line-height: 1.25;
    white-space: nowrap;
    letter-spacing: -0.01em;
}
.cici-product__btn {
    margin-top: auto;
    width: 100%;
    border: 1px solid var(--cici-navy);
    background: #fff;
    color: var(--cici-navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 0.5rem 0.375rem;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: border-color 0.15s, color 0.15s;
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .cici-product__title {
        font-size: 14px;
        min-height: 1.35em;
    }
    .cici-product__price-row {
        min-height: 3rem;
    }
    .cici-product__price-old {
        font-size: 16px;
        color: #343434;
    }
    .cici-product__price {
        font-size: 18px;
    }
    .cici-product__btn {
        font-size: 14px;
        padding: 0.625rem 0.5rem;
    }
}
.cici-product__btn:hover {
    background: #fff;
    color: #111;
    border-color: #111;
}

/* Ürün listesi grid — aynı kart oranı */
.cici-products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .cici-products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
}
@media (min-width: 1024px) {
    .cici-products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1280px) {
    .cici-products-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

/* Series banner (full width) — aynı oranlar */
.cici-series {
    padding: 0;
    margin: 0;
    background: #fff;
    width: 100%;
}
.cici-series__banner {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 40vw;
}
@media (min-width: 768px) {
    .cici-series__banner {
        height: auto;
        aspect-ratio: var(--hero-aspect-desktop);
        max-height: min(520px, 42vw);
    }
}
.cici-series__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.cici-series__features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    padding: 1.25rem 1rem;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.cici-series__feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    text-align: center;
    max-width: 5.5rem;
}
.cici-series__feat i {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--cici-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cici-gold);
    font-size: 0.875rem;
}
.cici-series__feat span {
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #555;
}

/* Circle categories */
.cici-circles { padding: 1.5rem 0; background: #fff; }
.cici-circles__scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0.25rem 0;
}
@media (min-width: 768px) {
    .cici-circles__scroll { justify-content: center; flex-wrap: wrap; overflow: visible; }
}
.cici-circles__item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    width: 5.5rem;
}
.cici-circles__img-wrap {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #eee;
    background: #fafafa;
}
.cici-circles__img { width: 100%; height: 100%; object-fit: cover; }
.cici-circles__label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #333;
    text-align: center;
    line-height: 1.25;
}

/* Promo banners — desktop grid, mobile yatay kaydırma */
.cici-promo-grid { padding: 1rem 0 1.5rem; background: #fff; }
.cici-promo-grid__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .cici-promo-grid__inner {
        grid-template-columns: repeat(3, 1fr);
        overflow: visible;
    }
}
.cici-promo-grid__item {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 3 / 4;
    border-radius: 0;
}
.cici-promo-grid__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cici-promo-grid__bar {
    position: absolute;
    inset: auto 0 0 0;
    background: var(--cici-red);
    color: #fff;
    padding: 0.625rem 0.5rem;
    text-align: center;
}
.cici-promo-grid__bar strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.25;
}
.cici-promo-grid__bar span {
    display: block;
    font-size: 0.625rem;
    opacity: 0.9;
    margin-top: 0.125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Footer — Cici style */
.cici-trust, .cici-seo, .site-footer { display: none; }

.cici-footer-trust {
    padding: 2.5rem 0;
    background: linear-gradient(180deg, #f7f5f6 0%, #fff 55%);
    border-top: 1px solid #ece8ea;
}
.cici-footer-trust__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}
@media (min-width: 768px) {
    .cici-footer-trust__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.1rem;
    }
}
.cici-footer-trust__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.2rem;
    background: #fff;
    border: 1px solid #ebe6e8;
    border-radius: 1.15rem;
    text-align: left;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.cici-footer-trust__item:hover {
    border-color: #e2d5da;
    box-shadow: 0 12px 30px rgba(90, 40, 60, 0.07);
    transform: translateY(-2px);
}
.cici-footer-trust__icon {
    width: 3.25rem;
    height: 3.25rem;
    flex-shrink: 0;
    border-radius: 9999px;
    background: linear-gradient(145deg, #faf3f6 0%, #f0e4ea 100%);
    color: var(--cici-magenta, #9b3a5c);
    border: 1px solid #ead9e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}
.cici-footer-trust__copy {
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
    min-width: 0;
}
.cici-footer-trust__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--cici-navy, #1a2744);
    letter-spacing: 0.01em;
    line-height: 1.25;
}
.cici-footer-trust__desc {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.45;
}
.cici-footer-trust__label { display: none; }

.cici-footer-seo {
    padding: 1.5rem 0 2rem;
    background: #fff;
    border-top: 1px solid #eee;
}
.cici-footer-seo__inner {
    max-width: 52rem;
    margin: 0 auto;
    color: #444;
    font-size: 0.8125rem;
    line-height: 1.75;
}
.cici-footer-seo__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 0.625rem;
}
.cici-footer-seo__subtitle {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #2563EB;
    margin: 1rem 0 0.375rem;
}

.cici-footer { background: #fff; }
.cici-footer__main {
    padding: 2.5rem 0 2rem;
    border-top: 1px solid #eee;
}
.cici-footer__logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.cici-footer__line {
    flex: 1;
    max-width: 12rem;
    height: 1px;
    background: #ddd;
}
.cici-footer__logo { text-decoration: none; flex-shrink: 0; }
.cici-footer-monogram {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 500;
    color: #333;
    letter-spacing: -0.02em;
    line-height: 1;
}

.cici-footer__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
}
@media (min-width: 768px) {
    .cici-footer__grid {
        grid-template-columns: repeat(4, 1fr) auto;
        gap: 2rem;
        align-items: start;
    }
}
.cici-footer__heading {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 0.875rem;
}
.cici-footer__links { list-style: none; margin: 0; padding: 0; }
.cici-footer__links li { margin-bottom: 0.5rem; }
.cici-footer__links a {
    font-size: 0.75rem;
    color: #666;
    text-decoration: none;
    transition: color 0.15s;
}
.cici-footer__links a:hover { color: var(--cici-magenta); }

.cici-footer__col--social {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
}
@media (min-width: 768px) {
    .cici-footer__col--social {
        grid-column: auto;
        justify-content: flex-end;
    }
}
.cici-footer__social {
    display: flex;
    flex-direction: row;
    gap: 0.625rem;
}
@media (min-width: 768px) {
    .cici-footer__social { flex-direction: column; }
}
.cici-footer__social a {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1.5px solid #8B1A5C;
    color: #8B1A5C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.15s;
}
.cici-footer__social a:hover { background: #8B1A5C; color: #fff; }

.cici-footer__bottom {
    border-top: 1px solid #eee;
    padding: 1rem 0 1.5rem;
    text-align: center;
}
.cici-footer__bottom p { font-size: 0.6875rem; color: #999; margin: 0; }

/* Floating widgets */
.fab-whatsapp {
    background: #25D366;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}
.fab-deals {
    position: fixed;
    z-index: 119;
    right: 1rem;
    bottom: calc(var(--mobile-bar-h) + 4.5rem);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--cici-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.5625rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.35);
    transition: transform 0.2s;
}
.fab-deals:hover { transform: scale(1.05); color: #fff; }
@media (min-width: 768px) {
    .fab-deals { bottom: 5.5rem; }
}
body:not(.has-mobile-bar) .fab-deals { bottom: 5.5rem; }

.btn-primary { background: var(--cici-navy); border-radius: 0; }
.btn-primary:hover { background: var(--cici-navy-light); }
.cart-badge { background: var(--cici-red); }
.announcement-bar { display: none; }

/* —— Mobile (Cici-style) —— */
@media (max-width: 767px) {
    .page-wrap {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .cici-section {
        padding: 1.25rem 0 1rem;
    }
    .cici-section .page-wrap {
        padding-left: 0;
        padding-right: 0;
    }
    .cici-section__title {
        font-size: 1.0625rem;
        margin-bottom: 1rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .cici-carousel {
        padding: 0 1.625rem;
    }
    .cici-carousel__track {
        gap: 0.625rem;
        padding: 0.125rem 0 0.625rem;
        scroll-padding-inline: 0;
    }
    .cici-carousel__item {
        flex: 0 0 var(--product-card-width-mobile);
        min-width: var(--product-card-width-mobile);
        max-width: var(--product-card-width-mobile);
        scroll-snap-align: start;
    }

    .cici-product {
        border-color: #e0e0e0;
        border-radius: 0.9375rem;
        padding: 0.625rem;
    }
    .cici-product__title {
        font-size: 13px;
        -webkit-line-clamp: 2;
        min-height: 2.7em;
        line-height: 1.35;
    }

    .hero-section--cici,
    .hero-section { padding-top: 0; margin: 0; }
    .hero-shell.hero-shell--cici {
        min-height: unset !important;
        border-radius: 0 !important;
        height: auto !important;
        aspect-ratio: 5 / 2 !important;
        max-height: 220px;
        box-shadow: none !important;
    }
    .cici-series__banner {
        height: auto !important;
        aspect-ratio: 5 / 2 !important;
        max-height: 220px;
    }
    .hero-dots--cici {
        bottom: 0.4rem;
    }

    .main-header__inner {
        padding: 0.75rem 0 0.625rem;
    }
    .logo-mark--cici .logo-mark__brand {
        font-size: 1.55rem;
    }
    .main-header__icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.15rem;
    }
    .main-header__mobile-search input {
        font-size: 16px;
        min-height: 2.75rem;
    }
    .category-nav__link {
        padding: 0.65rem 0.85rem;
        font-size: 0.72rem;
    }
    .cici-footer-trust__grid {
        gap: 0.65rem;
    }
    .cici-footer-trust__item {
        padding: 0.9rem 1rem;
    }
    .fab-whatsapp,
    .fab-deals {
        right: max(0.75rem, env(safe-area-inset-right));
    }
    .fab-whatsapp {
        bottom: max(5.5rem, calc(var(--mobile-bar-h, 4rem) + env(safe-area-inset-bottom)));
    }
    .fab-deals {
        width: 3.25rem;
        height: 3.25rem;
        font-size: 0.5rem;
        bottom: calc(var(--mobile-bar-h, 4rem) + 3.75rem + env(safe-area-inset-bottom));
    }
    .mobile-bar-inner {
        padding-bottom: env(safe-area-inset-bottom);
    }

    .cici-promo-grid {
        padding: 0.75rem 0 1rem;
    }
    .cici-promo-grid .page-wrap {
        padding-left: 0;
        padding-right: 0;
    }
    .cici-promo-grid__inner {
        display: flex;
        flex-direction: row;
        gap: 0.625rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        padding: 0.125rem 0.75rem 0.25rem;
        scroll-padding-inline: 0.75rem;
        -webkit-overflow-scrolling: touch;
    }
    .cici-promo-grid__item {
        flex: 0 0 var(--promo-card-width-mobile);
        min-width: var(--promo-card-width-mobile);
        max-width: var(--promo-card-width-mobile);
        scroll-snap-align: start;
        aspect-ratio: 3 / 4;
    }
    .cici-promo-grid__bar {
        padding: 0.5rem 0.375rem;
    }
    .cici-promo-grid__bar strong {
        font-size: 0.6875rem;
    }
    .cici-promo-grid__bar span {
        font-size: 0.5625rem;
    }

    .cici-footer__trust {
        gap: 1rem;
        padding: 1rem 0.75rem;
    }
}
