/* ============================================================
   KayseriÇiçekçisi — Ana Stil Dosyası
   Tasarım: Sıcak Gül Tonları + Derin Erik Gradyanları
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ════════════════════════════════════════════════════════════
   CSS DEĞİŞKENLERİ
════════════════════════════════════════════════════════════ */
:root {
    --rose:          #C44569;
    --rose-dark:     #962048;
    --rose-light:    #E07090;
    --rose-xlight:   #FAE8EF;
    --rose-subtle:   #FDF3F6;

    --plum:          #5C2750;
    --plum-light:    #8B4575;
    --gold:          #D4921F;
    --gold-light:    #F5C76A;

    --bg:            #FBF7F8;
    --card:          #FFFFFF;
    --muted:         #F2EAEd;
    --muted-fg:      #8A6875;
    --fg:            #2A1420;
    --fg-secondary:  #5C3D4A;
    --border:        #EDD8E2;

    --grad-primary:  linear-gradient(135deg, #C44569 0%, #962048 100%);
    --grad-plum:     linear-gradient(135deg, #5C2750 0%, #962048 60%, #C44569 100%);
    --grad-warm:     linear-gradient(135deg, #C44569 0%, #D4921F 100%);
    --grad-soft:     linear-gradient(145deg, #FDF3F6 0%, #FAE8EF 100%);
    --grad-hero:     linear-gradient(160deg, rgba(92,39,80,.55) 0%, rgba(196,69,105,.35) 100%);

    --font-display:  'Cormorant Garamond', Georgia, serif;
    --font-body:     'DM Sans', system-ui, sans-serif;

    --radius-sm:     0.5rem;
    --radius:        0.875rem;
    --radius-lg:     1.25rem;
    --radius-xl:     1.75rem;

    --shadow-sm:     0 1px 4px rgba(196,69,105,.08);
    --shadow-card:   0 4px 24px rgba(196,69,105,.10), 0 1px 4px rgba(0,0,0,.04);
    --shadow-hover:  0 10px 40px rgba(196,69,105,.18), 0 2px 8px rgba(0,0,0,.06);
    --shadow-deep:   0 20px 60px rgba(92,39,80,.20);

    --ease:          0.24s cubic-bezier(.4,0,.2,1);

    /* Eski değişken isimleri — geriye dönük uyumluluk */
    --color-primary:       var(--rose);
    --color-primary-dark:  var(--rose-dark);
    --color-primary-light: var(--rose-light);
    --color-secondary:     var(--plum-light);
    --color-accent:        var(--gold);
    --color-bg:            var(--bg);
    --color-card:          var(--card);
    --color-muted:         var(--muted);
    --color-muted-fg:      var(--muted-fg);
    --color-foreground:    var(--fg);
    --color-border:        var(--border);
    --color-destructive:   #DC2626;
    --transition:          var(--ease);
}

/* ════════════════════════════════════════════════════════════
   RESET & TEMEL
════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--fg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.25; color: var(--fg); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--muted); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--rose-light), var(--plum-light));
    border-radius: 3px;
}

/* ════════════════════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════════════════════ */
.container { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4rem 0; }
.section--muted { background: var(--grad-soft); }

/* ════════════════════════════════════════════════════════════
   TİPOGRAFİ
════════════════════════════════════════════════════════════ */
.text-primary { color: var(--rose); }
.text-muted { color: var(--muted-fg); }
.text-center { text-align: center; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--rose-xlight);
    color: var(--rose-dark);
    border: 1.5px solid rgba(196,69,105,.2);
    padding: 5px 18px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}
.section-subtitle {
    font-size: 0.95rem;
    color: var(--muted-fg);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   BUTONLAR
════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    transition: all var(--ease);
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
}
.btn--primary {
    background: var(--grad-primary);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(196,69,105,.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}
.btn--primary:hover {
    box-shadow: 0 8px 32px rgba(196,69,105,.5);
    transform: translateY(-2px);
    filter: brightness(1.08);
}
.btn--primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(196,69,105,.3);
}
.btn--outline {
    background: transparent;
    color: var(--rose);
    border: 1.5px solid var(--rose);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}
.btn--outline:hover {
    background: var(--rose);
    color: #fff;
    box-shadow: 0 4px 16px rgba(196,69,105,.3);
    transform: translateY(-1px);
}
.btn--outline:active {
    transform: translateY(0);
}
.btn--ghost {
    background: transparent;
    color: var(--muted-fg);
    border: 1.5px solid transparent;
}
.btn--ghost:hover { background: var(--rose-xlight); color: var(--rose); }
.btn--lg   { padding: 0.85rem 2rem; font-size: 1rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); transform: translateY(0); }
.btn--lg:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(196,69,105,.4); }
.btn--lg:active { transform: translateY(0); }
.btn--sm   { padding: 0.4rem 0.9rem; font-size: 0.82rem; }
.btn--icon { padding: 0.5rem; width: 2.3rem; height: 2.3rem; border-radius: 50%; }
.btn--full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }
.btn--destructive { color: #DC2626; border: 1.5px solid transparent; }
.btn--destructive:hover { background: #FEF2F2; }

/* ════════════════════════════════════════════════════════════
   FORM ELEMANLARI
════════════════════════════════════════════════════════════ */
.input, .textarea {
    width: 100%;
    padding: 0.65rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.92rem;
    background: var(--card);
    color: var(--fg);
    transition: border-color var(--ease), box-shadow var(--ease);
    outline: none;
}
.input:focus, .textarea:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(196,69,105,.12);
}
.textarea { resize: vertical; min-height: 7rem; }

/* ════════════════════════════════════════════════════════════
   KART & ROZET
════════════════════════════════════════════════════════════ */
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-card); }
.badge { display: inline-block; padding: 0.2rem 0.7rem; border-radius: 999px; font-size: 0.7rem; font-weight: 700; background: var(--grad-primary); color: #fff; }
.badge--accent { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--fg); }

/* ════════════════════════════════════════════════════════════
   ÜST BİLGİ BANDI
════════════════════════════════════════════════════════════ */
.topbar {
    background: var(--grad-plum);
    color: rgba(255,255,255,.9);
    text-align: center;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.45rem 1rem;
}

/* ════════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════ */
.header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,251,253,.96);
    backdrop-filter: blur(12px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(196,69,105,.06);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 4.25rem; gap: 1rem; }
.header__logo { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--fg); white-space: nowrap; }
.header__logo .accent { color: var(--rose); }
.header__logo span.accent { color: var(--rose); }
.header__nav { display: flex; align-items: center; gap: 0.15rem; }
.header__nav a { padding: 0.5rem 0.85rem; font-size: 0.875rem; font-weight: 500; color: var(--fg-secondary); border-radius: var(--radius-sm); transition: color var(--ease), background var(--ease); }
.header__nav a:hover, .header__nav a.active { color: var(--rose); background: var(--rose-xlight); }
.header__actions { display: flex; align-items: center; gap: 0.3rem; }
.header__badge {
    position: absolute; top: -4px; right: -4px;
    background: var(--grad-primary);
    color: #fff; font-size: 0.6rem; font-weight: 700;
    width: 1.1rem; height: 1.1rem;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 6px rgba(196,69,105,.4);
}
.header__icon-btn {
    position: relative; display: flex; align-items: center; justify-content: center;
    width: 2.25rem; height: 2.25rem;
    border-radius: 50%;
    color: var(--fg-secondary);
    transition: color var(--ease), background var(--ease);
}
.header__icon-btn:hover { color: var(--rose); background: var(--rose-xlight); }
.header__hamburger { display: none; }

.cat-dropdown { position: relative; }
.cat-dropdown > a { display: flex; align-items: center; gap: 4px; pointer-events: none; cursor: default; }
.cat-dropdown > a::after { content: '▾'; font-size: .72rem; opacity: .6; }
.cat-dropdown-menu {
    display: none; position: absolute;
    top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-deep);
    min-width: 230px; z-index: 9999; padding: 10px 0;
}
.cat-dropdown-menu::before { content: ''; position: absolute; top: -14px; left: 0; width: 100%; height: 14px; background: transparent; }
.cat-dropdown:hover .cat-dropdown-menu,
.cat-dropdown:focus-within .cat-dropdown-menu { display: block; }
.cat-dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 20px; color: var(--fg-secondary); font-size: 0.85rem; white-space: nowrap; transition: background var(--ease), color var(--ease); }
.cat-dropdown-menu a:hover { background: var(--rose-subtle); color: var(--rose); }
.mobile-cat-list { border-top: 1px solid var(--border); margin-top: 4px; padding-top: 4px; }
.mobile-cat-list a { padding-left: 28px !important; font-size: .82rem !important; }

.search-bar { padding: 0.75rem 0; border-top: 1px solid var(--border); animation: fadeIn 0.2s ease; }
.search-bar form { display: flex; gap: 0.5rem; }
.search-bar .input { flex: 1; }

.mobile-nav { padding-bottom: 1rem; animation: fadeIn 0.2s ease; }
.mobile-nav a { display: block; padding: 0.5rem 0.75rem; font-size: 0.9rem; font-weight: 500; color: var(--fg-secondary); border-radius: var(--radius-sm); transition: color var(--ease), background var(--ease); }
.mobile-nav a:hover { color: var(--rose); background: var(--rose-xlight); }

/* ════════════════════════════════════════════════════════════
   HERO SLIDER
════════════════════════════════════════════════════════════ */
.hero { position: relative; height: 520px; overflow: hidden; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.75s ease; }
.hero__slide.active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: var(--grad-hero); }
.hero__content { position: relative; z-index: 10; height: 100%; display: flex; align-items: center; }
.hero__text { max-width: 540px; }
.hero__title { font-family: var(--font-display); font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 700; color: #fff; margin-bottom: 1rem; text-shadow: 0 3px 12px rgba(0,0,0,.3); letter-spacing: -0.02em; }
.hero__subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.88); margin-bottom: 1.75rem; text-shadow: 0 1px 4px rgba(0,0,0,.2); }
.hero__buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero__nav-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; width: 2.75rem; height: 2.75rem; border-radius: 50%; background: rgba(255,255,255,.18); backdrop-filter: blur(6px); color: #fff; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.25); transition: background var(--ease); }
.hero__nav-btn:hover { background: rgba(255,255,255,.35); }
.hero__nav-btn--prev { left: 1.25rem; }
.hero__nav-btn--next { right: 1.25rem; }
.hero__dots { position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; gap: 0.5rem; }
.hero__dot { width: 0.65rem; height: 0.65rem; border-radius: 999px; background: rgba(255,255,255,.45); border: none; cursor: pointer; transition: background var(--ease), width var(--ease); }
.hero__dot.active { background: #fff; width: 2rem; }

/* ════════════════════════════════════════════════════════════
   ÖZELLİK BARI + SAYAÇ
════════════════════════════════════════════════════════════ */
.features-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 0.9rem 0; box-shadow: 0 2px 12px rgba(196,69,105,.05); }
.features-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.features-bar__items { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.features-bar__item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; color: var(--fg-secondary); }
.features-bar__item svg { color: var(--rose); flex-shrink: 0; }
.features-bar__countdown-wrap { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }
.features-bar__phone { display: flex; align-items: center; gap: 7px; font-size: 0.875rem; font-weight: 700; color: var(--rose-dark); background: var(--rose-xlight); padding: 7px 18px; border-radius: 999px; border: 1.5px solid rgba(196,69,105,.2); transition: all var(--ease); white-space: nowrap; }
.features-bar__phone:hover { background: var(--rose); color: #fff; border-color: var(--rose); box-shadow: 0 4px 16px rgba(196,69,105,.3); transform: translateY(-1px); }
.countdown-badge { display: flex; align-items: center; gap: 10px; background: var(--grad-primary); color: #fff; padding: 7px 18px; border-radius: 999px; font-size: 0.77rem; font-weight: 600; white-space: nowrap; box-shadow: 0 4px 16px rgba(196,69,105,.3); }
.countdown-badge__label { opacity: 0.88; }
.countdown-badge__timer { display: flex; align-items: center; gap: 4px; }
.countdown-unit { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.countdown-num { font-size: 1.05rem; font-weight: 800; min-width: 26px; text-align: center; font-variant-numeric: tabular-nums; }
.countdown-lbl { font-size: 0.58rem; opacity: 0.78; margin-top: 2px; }
.countdown-sep { font-size: 1rem; font-weight: 800; opacity: 0.65; margin-bottom: 6px; }
.countdown-badge__closed { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; opacity: 0.95; }

/* ════════════════════════════════════════════════════════════
   ÜCRETSİZ KARGO BANNER
════════════════════════════════════════════════════════════ */
.free-shipping-banner { padding: 0; background: #fff; }
.free-shipping-banner__img { width: 100%; max-height: 130px; object-fit: cover; display: block; }

/* ════════════════════════════════════════════════════════════
   ÖZEL GÜNLER
════════════════════════════════════════════════════════════ */
.special-occasions { background: var(--grad-soft); }
.occasions-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.occasion-card { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 1.75rem 1rem; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); cursor: pointer; transition: all var(--ease); text-decoration: none; color: var(--fg); box-shadow: var(--shadow-sm); }
.occasion-card:hover { border-color: var(--rose); box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.occasion-card__icon { font-size: 1.9rem; width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; background: var(--rose-xlight); border-radius: 50%; transition: background var(--ease), transform var(--ease); }
.occasion-card:hover .occasion-card__icon { background: var(--rose); transform: scale(1.1); }
.occasion-card__label { font-size: 0.81rem; font-weight: 600; color: var(--rose-dark); text-align: center; }

/* ════════════════════════════════════════════════════════════
   KATEGORİ SLIDER
════════════════════════════════════════════════════════════ */
.category-slider { position: relative; }
.category-scroll { display: flex; gap: 1rem; overflow-x: auto; scroll-behavior: smooth; padding: 0.25rem 0.25rem 0.5rem; scrollbar-width: thin; scrollbar-color: rgba(196,69,105,.2) transparent; }
.category-scroll::-webkit-scrollbar { height: 3px; }
.category-scroll::-webkit-scrollbar-track { background: transparent; }
.category-scroll::-webkit-scrollbar-thumb { background: rgba(196,69,105,.2); border-radius: 2px; }
.category-card { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 1.1rem; border-radius: var(--radius); background: var(--card); border: 1.5px solid var(--border); min-width: 115px; text-align: center; transition: all var(--ease); font-size: 0.79rem; font-weight: 500; color: var(--fg-secondary); box-shadow: var(--shadow-sm); }
.category-card:hover { border-color: var(--rose); box-shadow: var(--shadow-card); color: var(--rose); background: var(--rose-subtle); transform: translateY(-2px); }
.category-card span.icon { font-size: 2rem; }
.category-slider__btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 2.1rem; height: 2.1rem; border-radius: 50%; background: var(--card); border: 1.5px solid var(--border); box-shadow: var(--shadow-card); color: var(--fg-secondary); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: all var(--ease); }
.category-slider__btn:hover { color: var(--rose); border-color: var(--rose); background: var(--rose-xlight); }
.category-slider__btn--prev { left: -0.5rem; }
.category-slider__btn--next { right: -0.5rem; }

/* ════════════════════════════════════════════════════════════
   ÜRÜN KARTLARI
════════════════════════════════════════════════════════════ */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.product-card { position: relative; background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); transform: translateY(0); }
.product-card:hover { box-shadow: 0 20px 40px rgba(196,69,105,.15), 0 8px 16px rgba(0,0,0,.1); transform: translateY(-8px); border-color: rgba(196,69,105,.3); }
.product-card__thumb { position: relative; aspect-ratio: 1; overflow: hidden; }
.product-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.product-card:hover .product-card__thumb img { transform: scale(1.07); }
.product-card__badge { position: absolute; top: 0.75rem; left: 0.75rem; }
.product-card__fav { position: absolute; top: 0.75rem; right: 0.75rem; width: 2.1rem; height: 2.1rem; border-radius: 50%; background: rgba(255,251,253,.88); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; color: var(--fg-secondary); font-size: 1rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: none; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.1); transform: scale(1); }
.product-card__fav:hover { transform: scale(1.1); background: rgba(196,69,105,.1); box-shadow: 0 4px 16px rgba(196,69,105,.3); }
.product-card__fav.active { background: var(--rose); color: #fff; box-shadow: 0 4px 12px rgba(196,69,105,.4); animation: heartPulse 0.6s ease; }
.detail-fav-btn { background: rgba(255,251,253,.88); border: 1px solid var(--border); color: var(--fg-secondary); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); transform: scale(1); }
.detail-fav-btn:hover { transform: scale(1.05); background: rgba(196,69,105,.1); border-color: rgba(196,69,105,.3); box-shadow: 0 4px 16px rgba(196,69,105,.2); }
.detail-fav-btn.active { background: var(--rose); color: #fff; border-color: var(--rose); box-shadow: 0 4px 12px rgba(196,69,105,.4); animation: heartPulse 0.6s ease; }
.product-card__discount { position: absolute; bottom: 0.75rem; left: 0.75rem; }
.product-card__body { padding: 1.1rem; }
.product-card__name { font-size: 0.9rem; font-weight: 600; color: var(--fg); margin-bottom: 0.3rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card__rating { display: flex; align-items: center; gap: 0.25rem; margin-bottom: 0.5rem; }
.product-card__stars { color: var(--gold); font-size: 0.8rem; }
.product-card__rating-val { font-size: 0.72rem; color: var(--muted-fg); }
.product-card__price-row { display: flex; align-items: center; justify-content: space-between; }
.product-card__price { font-size: 1.15rem; font-weight: 700; color: var(--rose); }
.product-card__old-price { font-size: 0.82rem; color: var(--muted-fg); text-decoration: line-through; margin-left: 0.3rem; }

/* Ürün kartı butonları */
.product-card .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}
.product-card .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(196,69,105,.3);
}
.product-card .btn:active {
    transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════
   BÜTÇE BÖLÜMÜ
════════════════════════════════════════════════════════════ */
.budget-section { background: #fff; }
.budget-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.budget-card { padding: 1.5rem; background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); text-align: center; transition: all var(--ease); display: block; box-shadow: var(--shadow-sm); }
.budget-card:hover { border-color: var(--rose); box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.budget-card__icon { font-size: 2rem; margin-bottom: 0.5rem; }
.budget-card__label { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--fg); transition: color var(--ease); }
.budget-card:hover .budget-card__label { color: var(--rose); }

.budget-grid-new { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.budget-card-new { display: flex; flex-direction: column; align-items: center; gap: 0.65rem; padding: 2.25rem 1.5rem; border: 2px solid var(--border); border-radius: var(--radius-xl); background: #fff; text-decoration: none; color: var(--fg); transition: all var(--ease); text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.budget-card-new::after { content: ''; position: absolute; inset: 0; background: var(--grad-soft); opacity: 0; transition: opacity var(--ease); z-index: 0; }
.budget-card-new > * { position: relative; z-index: 1; }
.budget-card-new:hover { border-color: var(--rose); box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.budget-card-new:hover::after { opacity: 1; }
.budget-card-new__icon { font-size: 2.5rem; }
.budget-card-new__price { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--rose-dark); }
.budget-card-new__desc { font-size: 0.79rem; color: var(--muted-fg); line-height: 1.5; }
.budget-card-new__arrow { font-size: 0.78rem; font-weight: 700; color: var(--rose); margin-top: 0.35rem; }

/* ════════════════════════════════════════════════════════════
   NEDEN BİZ — İSTATİSTİKLER
════════════════════════════════════════════════════════════ */
.why-us-stats { background: var(--grad-plum); padding: 3rem 0; position: relative; overflow: hidden; }
.why-us-stats::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='%23fff' stroke-width='1' stroke-opacity='.04'/%3E%3C/svg%3E") repeat; }
.why-us-stats__grid { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }
.why-stat { flex: 1; text-align: center; color: #fff; padding: 0.5rem 1rem; }
.why-stat__num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; line-height: 1; margin-bottom: 0.5rem; }
.why-stat__label { font-size: 0.82rem; opacity: 0.78; font-weight: 500; }
.why-stat-divider { width: 1px; height: 55px; background: rgba(255,255,255,.18); flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   NEDEN BİZ — AVANTAJ KARTLARI
════════════════════════════════════════════════════════════ */
.why-us-features { background: var(--grad-soft); }
.why-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-feature-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 2.25rem 1.75rem; text-align: center; transition: all var(--ease); box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.why-feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-primary); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.why-feature-card:hover::before { transform: scaleX(1); }
.why-feature-card:hover { border-color: rgba(196,69,105,.2); box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.why-feature-card__icon { font-size: 2.2rem; margin-bottom: 1.1rem; display: inline-flex; align-items: center; justify-content: center; width: 68px; height: 68px; background: var(--rose-xlight); border-radius: 50%; transition: background var(--ease), transform var(--ease); }
.why-feature-card:hover .why-feature-card__icon { background: var(--rose); transform: scale(1.08); }
.why-feature-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-bottom: 0.65rem; color: var(--fg); }
.why-feature-card p { font-size: 0.83rem; color: var(--muted-fg); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer { background: linear-gradient(160deg, #1E0D17 0%, #2E1422 100%); color: rgba(255,255,255,.65); padding: 3.5rem 0 1.5rem; border-top: 1px solid rgba(196,69,105,.15); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer__logo { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.footer__desc { font-size: 0.84rem; color: rgba(255,255,255,.4); line-height: 1.6; }
.footer__heading { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 0.85rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.45rem; }
.footer__links a { font-size: 0.875rem; color: rgba(255,255,255,.5); transition: color var(--ease); }
.footer__links a:hover { color: var(--rose-light); }
.footer__contact { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__contact-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,.55); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.25rem; text-align: center; font-size: 0.75rem; color: rgba(255,255,255,.28); }

/* ════════════════════════════════════════════════════════════
   SEPET SAYFASI
════════════════════════════════════════════════════════════ */
.cart-grid { display: grid; gap: 2rem; }
.cart-item { display: flex; gap: 1rem; padding: 1.1rem; background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.cart-item__img { width: 6rem; height: 6rem; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.cart-item__info { flex: 1; }
.cart-item__name { font-weight: 600; margin-bottom: 0.25rem; }
.cart-item__price { color: var(--rose); font-weight: 700; margin-bottom: 0.5rem; }
.qty-row { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.qty-row span { min-width: 2rem; text-align: center; font-weight: 600; }
.order-summary { background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 1.75rem; height: fit-content; box-shadow: var(--shadow-card); }
.order-summary h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.order-summary__row { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 0.5rem; }
.order-summary__row .label { color: var(--muted-fg); }
.order-summary__total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.15rem; padding-top: 0.75rem; border-top: 1.5px solid var(--border); margin-top: 0.5rem; margin-bottom: 1rem; }
.order-summary__total .price { color: var(--rose); }

/* ════════════════════════════════════════════════════════════
   ADMİN PANELİ
════════════════════════════════════════════════════════════ */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; background: linear-gradient(180deg, #1E0D17 0%, #2E1422 100%); color: rgba(255,255,255,.75); flex-shrink: 0; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.06); }
.admin-sidebar__logo { padding: 1.5rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,.08); font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 0.5rem; }
.admin-sidebar__nav { padding: 0.75rem; flex: 1; }
.admin-sidebar__nav a { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 0.85rem; border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,.6); margin-bottom: 0.15rem; transition: all var(--ease); }
.admin-sidebar__nav a:hover { background: rgba(196,69,105,.2); color: #fff; }
.admin-sidebar__nav a.active { background: var(--rose); color: #fff; box-shadow: 0 3px 12px rgba(196,69,105,.3); }
.admin-content { flex: 1; overflow: auto; padding: 2rem; background: #F9F4F6; }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.75rem; flex-wrap: wrap; gap: 1rem; }
.stat-card { background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); transition: all var(--ease); }
.stat-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.stat-card__icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.stat-card__val { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--rose); line-height: 1; }
.stat-card__label { font-size: 0.8rem; color: var(--muted-fg); margin-top: 0.25rem; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.admin-table th { text-align: left; padding: 0.65rem 0.85rem; font-size: 0.78rem; font-weight: 700; color: var(--muted-fg); border-bottom: 2px solid var(--border); background: var(--rose-subtle); letter-spacing: 0.03em; text-transform: uppercase; }
.admin-table td { padding: 0.75rem 0.85rem; border-bottom: 1px solid var(--border); color: var(--fg); vertical-align: middle; }
.admin-table tr:hover td { background: var(--rose-subtle); }
.admin-table tr:last-child td { border-bottom: none; }

/* ════════════════════════════════════════════════════════════
   ÇEREZ ONAY BANDI
════════════════════════════════════════════════════════════ */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: linear-gradient(135deg, #1E0D17 0%, #2E1422 100%); color: rgba(255,255,255,.88); padding: 1.1rem 1.75rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; box-shadow: 0 -6px 30px rgba(92,39,80,.35); border-top: 1px solid rgba(196,69,105,.2); transform: translateY(100%); transition: transform 0.4s cubic-bezier(.4,0,.2,1); }
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__text { font-size: 0.85rem; line-height: 1.55; flex: 1; min-width: 200px; }
.cookie-banner__text a { color: var(--rose-light); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn-accept { background: var(--grad-primary); color: #fff; border: none; padding: 9px 24px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 700; cursor: pointer; transition: all var(--ease); box-shadow: 0 4px 14px rgba(196,69,105,.35); }
.cookie-btn-accept:hover { filter: brightness(1.08); box-shadow: 0 6px 18px rgba(196,69,105,.45); transform: translateY(-1px); }
.cookie-btn-reject { background: transparent; color: rgba(255,255,255,.55); border: 1.5px solid rgba(255,255,255,.18); padding: 9px 18px; border-radius: var(--radius); font-size: 0.85rem; cursor: pointer; transition: all var(--ease); }
.cookie-btn-reject:hover { background: rgba(255,255,255,.07); color: #fff; border-color: rgba(255,255,255,.35); }

/* ════════════════════════════════════════════════════════════
   YARDIMCILAR & ANİMASYONLAR
════════════════════════════════════════════════════════════ */
.empty-state { text-align: center; padding: 4rem 1rem; }
.empty-state__icon { font-size: 3.5rem; display: block; margin-bottom: 1rem; }
.empty-state__title { font-size: 1.1rem; font-weight: 600; color: var(--muted-fg); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fadeIn 0.5s ease forwards; }

/* ════════════════════════════════════════════════════════════
   RESPONSİVE
════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .budget-grid  { grid-template-columns: repeat(4, 1fr); }
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .product-grid { grid-template-columns: repeat(4, 1fr); }
    .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}
@media (max-width: 1024px) {
    .occasions-grid    { grid-template-columns: repeat(4, 1fr); }
    .why-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .occasions-grid        { grid-template-columns: repeat(3, 1fr); }
    .budget-grid-new       { grid-template-columns: repeat(2, 1fr); }
    .features-bar__inner   { flex-direction: column; align-items: flex-start; }
    .features-bar__countdown-wrap { width: 100%; }
    .header__nav           { display: none; }
    .header__hamburger     { display: flex; }
    .admin-sidebar         { display: none; }
}
@media (max-width: 600px) {
    .section               { padding: 2.5rem 0; }
    .occasions-grid        { grid-template-columns: repeat(2, 1fr); }
    .budget-grid-new       { grid-template-columns: 1fr 1fr; }
    .why-features-grid     { grid-template-columns: 1fr; }
    .why-us-stats__grid    { flex-wrap: wrap; }
    .why-stat-divider      { display: none; }
    .countdown-badge       { flex-wrap: wrap; justify-content: center; }
    .features-bar__items   { gap: 1rem; }
    .hero                  { height: 420px; }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --bg-body: #f4f5fa;
    --sidebar-bg: #2a2b3d;
    --brand-color: #f7278d; /* Sol üst köşedeki pembe */
    --card-bg: #ffffff;
    --text-main: #333333;
    --text-muted: #888888;
    --border-color: #e9e9ef;
    --radius: 16px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: var(--bg-body); color: var(--text-main); font-size: 14px; }
a { text-decoration: none; }

/* SİDEBAR */
.sidebar { position: fixed; top: 0; left: 0; width: 260px; height: 100vh; background: var(--sidebar-bg); z-index: 100; color: #a5a5b5; }
.sidebar-logo { background: var(--brand-color); color: white; padding: 20px; font-size: 1.2rem; font-weight: 600; text-align: center; height: 75px; display: flex; align-items: center; justify-content: center;}
.sidebar ul { list-style: none; padding: 20px 0; }
.sidebar ul li a { display: block; padding: 12px 25px; color: #a5a5b5; font-size: 14px; transition: 0.3s; }
.sidebar ul li a:hover { color: white; background: rgba(255,255,255,0.05); }

/* MAIN AREA */
.main { margin-left: 260px; min-height: 100vh; }

/* TOPBAR */
.topbar { background: var(--card-bg); height: 75px; display: flex; align-items: center; justify-content: space-between; padding: 0 30px; border-bottom: 1px solid var(--border-color); box-shadow: var(--shadow); }
.topbar h2 { font-size: 1.2rem; font-weight: 600; }
.topbar-right { display: flex; align-items: center; gap: 15px; }
.btn-site { background: #6c5ce7; color: white; padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 500;}

/* ════════════════════════════════════════════════════════════
   ANIMASYONLAR
════════════════════════════════════════════════════════════ */
@keyframes heartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes buttonBounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

.add-to-cart-btn.success {
    animation: buttonBounce 0.6s ease;
    background: linear-gradient(135deg, #4CAF50, #45a049) !important;
}
.user-profile { display: flex; align-items: center; gap: 10px; background: #f8f9fa; padding: 5px 15px 5px 5px; border-radius: 30px; border: 1px solid var(--border-color); }
.user-avatar { width: 35px; height: 35px; background: var(--brand-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; }
.user-info { font-size: 12px; line-height: 1.2; }
.user-info strong { display: block; color: var(--text-main); font-size: 13px; }

/* CONTENT */
.content { padding: 30px; }
.section-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
.section-desc { color: var(--text-muted); margin-bottom: 20px; font-size: 13px; }

/* 9'LU İSTATİSTİK KUTULARI (Resimdeki gibi) */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 15px; margin-bottom: 30px; }
.stat-box { background: var(--card-bg); border-radius: 12px; padding: 20px 10px; text-align: center; box-shadow: var(--shadow); }
.stat-icon { width: 45px; height: 45px; border-radius: 12px; margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; }
.stat-val { font-size: 22px; font-weight: 700; color: var(--text-main); margin-bottom: 2px; }
.stat-label { font-size: 12px; color: var(--text-muted); }

/* RENKLİ HIZLI ERİŞİM BUTONLARI (Resimdeki gibi) */
.quick-access { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.quick-btn { padding: 25px 20px; border-radius: var(--radius); color: white !important; display: flex; align-items: center; gap: 15px; font-size: 16px; font-weight: 600; box-shadow: var(--shadow); transition: 0.2s; cursor: pointer; border: none; text-align: left;}
.quick-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.quick-btn span { font-size: 12px; font-weight: 400; opacity: 0.8; margin-left: 5px; }
.quick-icon { width: 35px; height: 35px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; }

/* RENK PALETLERİ (Görseldeki gradientler) */
.bg-pink { background: linear-gradient(135deg, #ff41a8, #f7278d); }
.bg-green { background: linear-gradient(135deg, #2dd4bf, #14b8a6); }
.bg-yellow { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.bg-blue { background: linear-gradient(135deg, #60a5fa, #3b82f6); }
.bg-purple { background: linear-gradient(135deg, #a78bfa, #8b5cf6); }
.bg-orange { background: linear-gradient(135deg, #fdba74, #f97316); }
.bg-cyan { background: linear-gradient(135deg, #22d3ee, #06b6d4); }
.bg-red { background: linear-gradient(135deg, #fb7185, #f43f5e); }
.bg-indigo { background: linear-gradient(135deg, #818cf8, #6366f1); }
.bg-dark { background: linear-gradient(135deg, #4b5563, #374151); }

/* ════════════════════════════════════════════════════════════
   WHATSAPP BUTONU
════════════════════════════════════════════════════════════ */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #20BA58);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    cursor: pointer;
    border: none;
}

.whatsapp-btn i {
    font-size: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    background: linear-gradient(135deg, #20BA58, #1FA151);
}

.whatsapp-btn:hover i {
    transform: scale(1.1);
}

.whatsapp-btn:active {
    transform: translateY(-1px);
}

/* ════════════════════════════════════════════════════════════
   ÜRÜN DETAY SAYFASI - MOBİL RESPONSIVE
════════════════════════════════════════════════════════════ */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
}

.product-detail-image {
    position: sticky;
    top: 20px;
}

.product-detail-body h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--fg);
    margin: 0;
}

.product-detail-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--rose);
}

.product-detail-old-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: var(--muted-fg);
}

.product-detail-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.product-detail-buttons .btn {
    flex: 1;
    min-width: 140px;
}

.detail-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 12px;
}

/* MOBİL: 600px altı */
@media (max-width: 600px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .product-detail-image {
        position: static;
    }

    .product-detail-body h1 {
        font-size: 1.4rem;
    }

    .product-detail-price {
        font-size: 1.8rem;
    }

    .product-detail-buttons .btn {
        min-width: auto;
        flex: 1 1 auto;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .detail-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* TABLETLERİN ÇOK KÜCÜK OLANLAR: 800px altı */
@media (max-width: 800px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-detail-image {
        position: static;
    }

    .detail-related-grid {
        grid-template-columns: repeat(3, minmax(150px, 1fr));
        gap: 12px;
    }
}