/* Tema 2 - Tazeçiçek Görsel Replika Tasarım Sistemi */
@import url('fonts.css');

:root {
    --color-primary: #0045a5;
    --color-primary-hover: #003682;
    --color-text-dark: #0a2240;
    --color-text-muted: #5e7185;
    --color-bg-light: #f8fafc;
    --color-bg-beige: #fff6e6;
    --color-bg-blue-light: #e8f1fd;
    --color-border: #d2dae2;
    --font-theme: 'Nunito', sans-serif;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 99px;
    --container-width: 1240px;
    --header-main-row-height: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-theme);
    background-color: #ffffff;
    color: var(--color-text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

button, input {
    font-family: var(--font-theme);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Promo Announcement Bar */
.promo-announcement-bar {
    height: 60px;
    background-color: rgba(183, 228, 199, 0.95); /* Pistachio green, semi-transparent */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1002;
    color: #0c3821; /* dark green text for readability */
}

.promo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    height: 100%;
}

.promo-title {
    font-size: 13.5px;
    font-weight: 800;
    color: #0c3821;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-desc {
    font-size: 12.5px;
    font-weight: 600;
    color: #0c3821;
    margin: 0;
    line-height: 1.2;
}

/* Header — logo + menü yapışır; üst bar header dışında kaybolur */
.replica-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 1px solid #eef2f6;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.header-top-bar {
    background-color: #f8fafc;
    border-bottom: 1px solid #eef2f6;
    padding: 10px 0;
    font-size: 13.5px;
    color: var(--color-text-muted);
}

.header-top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.top-bar-item svg {
    color: #94a3b8;
    width: 15px;
    height: 15px;
}

.top-bar-item.divider {
    color: #e2e8f0;
}

.header-top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-label {
    font-weight: 600;
}

.top-bar-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.social-link svg {
    width: 15px;
    height: 15px;
}

.social-link:hover {
    color: var(--color-primary);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    height: var(--header-main-row-height);
    min-height: var(--header-main-row-height);
    max-height: var(--header-main-row-height);
    margin: 0;
    box-sizing: border-box;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 100%;
    flex-shrink: 0;
    font-size: 26px;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.header-logo img {
    height: 46px;
    max-height: 46px;
    width: auto;
    object-fit: contain;
}

/* Search Form */
.header-search-form {
    flex: 1;
    max-width: 650px;
    display: flex;
    align-items: center;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 44px;
    transition: border-color 0.2s ease;
}

.header-search-form:focus-within {
    border-color: var(--color-primary);
}

.header-search-input {
    border: none;
    outline: none;
    padding: 0 16px;
    width: 100%;
    font-size: 14px;
    color: var(--color-text-dark);
    font-weight: 600;
}

.header-search-input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.header-search-btn {
    background-color: var(--color-primary);
    color: #ffffff;
    border: none;
    width: 52px;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.header-search-btn:hover {
    background-color: var(--color-primary-hover);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    height: 100%;
    flex-shrink: 0;
}

.header-action-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--color-text-dark);
    cursor: pointer;
}

.header-action-link:hover {
    color: var(--color-primary);
}

.header-action-link svg {
    color: #718096;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.header-action-link:hover svg {
    color: #718096;
}

.header-cart-circle {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background-color: #ffffff;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.header-cart-circle svg {
    color: var(--color-primary);
}

.header-cart-circle:hover {
    background-color: #ffffff;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.header-cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ff3366;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.header-cart-count[hidden] {
    display: none !important;
}

/* Bildirim + kalp + sepet ikonları tek grup, birbirine yakın */
.header-icon-cluster {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

/* Bildirim ikonu (kalpten önce) */
.header-notify-circle {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background-color: transparent;
    border: none;
    color: #5a6573;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    transition: color 0.15s;
}

.header-notify-circle svg {
    color: inherit;
    transition: color 0.15s;
}

.header-notify-circle:hover {
    color: var(--color-primary);
}

.header-notify-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    min-width: 15px;
    height: 15px;
    padding: 0 3px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-sizing: border-box;
    z-index: 10;
}

.header-notify-count[hidden] {
    display: none;
}

.header-fav-circle {
    width: 42px !important;
    height: 42px !important;
    border-radius: var(--radius-md) !important;
    background-color: transparent !important;
    border: none !important;
    color: #ff3366 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    text-decoration: none !important;
    transition: color 0.15s !important;
}

.header-fav-circle svg {
    color: #ff3366 !important;
    transition: color 0.15s, fill 0.15s !important;
}

.header-fav-circle:hover {
    color: #ff3366 !important;
}

.header-fav-circle:hover svg {
    color: #ff3366 !important;
    fill: rgba(255, 51, 102, 0.1) !important;
}

.header-fav-count {
    position: absolute !important;
    top: 2px !important;
    right: 2px !important;
    background-color: transparent !important;
    color: #ff3366 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    min-width: unset !important;
    height: auto !important;
    padding: 0 !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    z-index: 10 !important;
    line-height: 1 !important;
}

.header-fav-count[hidden] {
    display: none !important;
}

/* Kategori menüsü — sticky header dışında, sayfa ile birlikte kayar */
.category-nav-bar {
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #eef2f6;
    padding: 10px 0;
}

.category-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 30px;
}

.category-menu-link {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.category-menu-link:hover {
    color: var(--color-primary);
}

.category-menu-link.active {
    color: var(--color-primary);
}

/* Multi-Level Dropdown & Flyout Styles */
.category-menu .menu-item-has-children {
    position: relative;
}

.category-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f6;
    border-radius: var(--radius-md);
    padding: 10px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s ease;
    z-index: 1001;
    text-align: left;
}

.category-menu .menu-item-has-children:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Hover Bridge Area (Prevents dropdown from closing when moving mouse from menu link to dropdown container) */
.category-menu .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

/* Level 2 Submenu Items */
.category-menu .dropdown-menu li {
    position: relative;
    list-style: none;
}

.category-menu .dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--color-text-dark);
    transition: all 0.2s ease;
}

.category-menu .dropdown-menu a:hover {
    background-color: var(--color-bg-blue-light);
    color: var(--color-primary);
}

/* Level 3 Flyout Submenu */
.category-menu .dropdown-menu .submenu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f6;
    border-radius: var(--radius-md);
    padding: 10px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(10px);
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s ease;
    z-index: 1002;
}

.category-menu .dropdown-menu .menu-item-has-children:hover > .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

/* Flyout Bridge Area (Prevents menu from closing when moving mouse horizontally to the flyout) */
.category-menu .dropdown-menu .submenu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    bottom: 0;
    width: 15px;
    background: transparent;
}

/* Arrow SVGs */
.category-menu .menu-arrow {
    margin-left: 4px;
    color: var(--color-text-muted);
    transition: transform 0.2s ease, color 0.2s ease;
    display: inline-block;
    vertical-align: middle;
}

.category-menu .menu-item-has-children:hover > .category-menu-link > .menu-arrow {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.category-menu .dropdown-menu .menu-arrow-right {
    margin-left: auto;
    color: var(--color-text-muted);
    transition: transform 0.2s ease, color 0.2s ease;
}

.category-menu .dropdown-menu .menu-item-has-children:hover > a > .menu-arrow-right {
    transform: translateX(3px);
    color: var(--color-primary);
}


.menu-badge-icon {
    display: inline-flex;
    align-items: center;
}

/* Stories / Categories Circular Scroll */
.stories-container {
    padding: 24px 0;
    position: relative;
}

.stories-wrapper {
    display: flex;
    justify-content: space-between;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 4px 0;
    scroll-behavior: smooth;
}

.stories-wrapper::-webkit-scrollbar {
    display: none;
}

.story-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    width: 108px;
    cursor: pointer;
}

.story-circle-wrapper {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background-color: #ebf4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: background-color 0.2s ease;
}

.story-card:hover .story-circle-wrapper {
    background-color: #d1e5ff;
}

.story-circle-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #ffffff;
}

.story-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.3;
}

/* Stories navigation arrows */
.stories-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    z-index: 10;
    color: #4a5568;
    transition: all 0.2s ease;
}

.stories-nav-btn:hover {
    background-color: var(--color-bg-light);
    color: var(--color-primary);
}

.stories-nav-btn.prev-btn {
    left: -16px;
}

.stories-nav-btn.next-btn {
    right: -16px;
}

/* Banners Grid Section */
/* Dinamik anasayfa blokları — Vitrin Yönetimi sırasına (sort_order) göre dizilir */
.home-block {
    margin-bottom: 36px;
}

.home-block:last-child {
    margin-bottom: 0;
}

/* Grid'lerin kendi dış boşluklarını sıfırla; dikey ritim .home-block'tan gelir */
.home-block > .banners-top-grid,
.home-block > .banners-bottom-grid,
.home-block > .banners-mid-grid,
.home-block > .banners-lower-grid {
    margin: 0;
}

.home-block--story-banner {
    margin-bottom: 24px;
}

/* Header promo / kategori chip vitrinleri kendi boşluklarını yönetir */
.home-block--header-promo,
.home-block--category-chips {
    margin-bottom: 0;
}

/* ===== Header Promo Banner (header-promo vitrini) ===== */
.pb-header-promo {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: #fff;
    display: flex;
    align-items: center;
}

/* Arka plan görseli/GIF katmanı (resim efektleri burada uygulanır) */
.pb-header-promo-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transform-origin: center;
}

.pb-header-promo-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 10px 16px;
    display: flex;
}

.pb-header-promo--contained .pb-header-promo-inner {
    border-radius: 12px;
}

.pb-header-promo-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pb-hp-align-center .pb-header-promo-content { align-items: center; text-align: center; }
.pb-hp-align-left .pb-header-promo-content { align-items: flex-start; text-align: left; }
.pb-hp-align-right .pb-header-promo-content { align-items: flex-end; text-align: right; }

.pb-header-promo-title { font-weight: 700; line-height: 1.2; }
.pb-header-promo-desc { opacity: 0.95; line-height: 1.3; }

.pb-hp-size-sm { font-size: 0.8rem; }
.pb-hp-size-md { font-size: 0.95rem; }
.pb-hp-size-lg { font-size: 1.25rem; }
.pb-hp-size-xl { font-size: 1.6rem; }

.pb-header-promo-btn {
    display: inline-block;
    margin-top: 6px;
    padding: 6px 16px;
    background: #fff;
    color: #db2777;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pb-header-promo-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }

/* ===== Metin/buton efektleri (başlık, açıklama, buton için) ===== */
.pb-hp-fx-fade { animation: pbHpFade 0.7s ease both; }
.pb-hp-fx-slide-down { animation: pbHpSlideDown 0.6s ease both; }
.pb-hp-fx-slide-up { animation: pbHpSlideUp 0.6s ease both; }
.pb-hp-fx-slide-left { animation: pbHpSlideLeft 0.6s ease both; }
.pb-hp-fx-slide-right { animation: pbHpSlideRight 0.6s ease both; }
.pb-hp-fx-zoom { animation: pbHpZoom 0.6s ease both; }
.pb-hp-fx-pulse { animation: pbHpPulse 1.8s ease-in-out infinite; }
.pb-hp-fx-bounce { animation: pbHpBounce 1.8s ease-in-out infinite; }
.pb-hp-fx-shake { animation: pbHpShake 2.4s ease-in-out infinite; }
.pb-hp-fx-glow { animation: pbHpGlow 2s ease-in-out infinite; }
/* "slide" eski kayıtlar için geriye dönük uyumluluk */
.pb-hp-fx-slide { animation: pbHpSlideDown 0.6s ease both; }

@keyframes pbHpFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pbHpSlideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pbHpSlideUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pbHpSlideLeft { from { opacity: 0; transform: translateX(-18px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pbHpSlideRight { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pbHpZoom { from { opacity: 0; transform: scale(0.88); } to { opacity: 1; transform: scale(1); } }
@keyframes pbHpPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes pbHpBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes pbHpShake { 0%, 90%, 100% { transform: translateX(0); } 93% { transform: translateX(-3px); } 96% { transform: translateX(3px); } }
@keyframes pbHpGlow { 0%, 100% { text-shadow: 0 0 0 rgba(255, 255, 255, 0); } 50% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.85); } }

/* ===== Resim/GIF arka plan efektleri ===== */
.pb-hp-img-fx-zoom { animation: pbHpImgZoom 9s ease-in-out infinite alternate; }
.pb-hp-img-fx-fade { animation: pbHpFade 1s ease both; }
.pb-hp-img-fx-float { animation: pbHpImgFloat 7s ease-in-out infinite alternate; }
.pb-hp-img-fx-pulse { animation: pbHpImgPulse 4s ease-in-out infinite; }
.pb-hp-img-fx-rotate { animation: pbHpImgRotate 12s ease-in-out infinite alternate; }

@keyframes pbHpImgZoom { from { transform: scale(1); } to { transform: scale(1.12); } }
@keyframes pbHpImgFloat { from { transform: translateY(-3%) scale(1.06); } to { transform: translateY(3%) scale(1.06); } }
@keyframes pbHpImgPulse { 0%, 100% { transform: scale(1.02); } 50% { transform: scale(1.1); } }
@keyframes pbHpImgRotate { from { transform: rotate(-1.5deg) scale(1.08); } to { transform: rotate(1.5deg) scale(1.08); } }

/* ===== Kategori bağlantı chip'leri (category-chips vitrini) ===== */
.pb-showcase-chips {
    margin: 12px 0;
}

.pb-showcase-chips-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 10px;
    color: #1f2937;
}

.pb-showcase-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* sepet.css yüklenmeyen sayfalarda chip görünümü için temel stil */
.pb-showcase-chips-row .pb-sepet-empty-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid #d7dee8;
    background: #fff;
    color: #2d3748;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.pb-showcase-chips-row .pb-sepet-empty-chip:hover {
    border-color: var(--color-primary);
    background: #f8fbff;
    color: var(--color-primary);
}

.banners-section {
    padding-bottom: 40px;
}

/* Top grid: 1 large left, 2 stacked right */
.banners-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Large Main Banner (Left) */
.banner-main {
    background-color: var(--color-bg-beige);
    border-radius: var(--radius-lg);
    height: 480px;
    position: relative;
    overflow: hidden;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.banner-main-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.banner-main-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 20px;
}

.banner-main-title span {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-dark);
}

/* Banner metinleri (başlık/alt başlık) her zaman görselin üzerinde kalsın */
.banner-main-label,
.banner-main-title,
.banner-side-title {
    position: relative;
    z-index: 2;
}

.banner-main-img {
    position: absolute;
    bottom: 0;
    right: 40px;
    height: 85%;
    width: auto;
    object-fit: contain;
    z-index: 1;
    transition: transform 0.3s ease;
}

.banner-main:hover .banner-main-img {
    transform: scale(1.02);
}

.banner-main-btn {
    align-self: flex-start;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: background-color 0.2s ease;
}

.banner-main-btn:hover {
    background-color: var(--color-primary-hover);
}

/* Side Banners Column (Right) */
.banner-side-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 480px;
}

.banner-side {
    flex: 1;
    background-color: var(--color-bg-blue-light);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.banner-side-badge {
    align-self: flex-start;
    background-color: #ffb703;
    color: var(--color-text-dark);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.banner-side-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.2;
    max-width: 60%;
}

.banner-side-title span {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-dark);
    display: block;
}

.banner-side-img {
    position: absolute;
    bottom: 0;
    right: 20px;
    height: 90%;
    width: auto;
    object-fit: contain;
    z-index: 1;
    transition: transform 0.3s ease;
}

.banner-side:hover .banner-side-img {
    transform: scale(1.02);
}

.banner-side-btn {
    align-self: flex-start;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: background-color 0.2s ease;
}

.banner-side-btn:hover {
    background-color: var(--color-primary-hover);
}

/* Bottom grid: 3 equal banners */
.banners-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.banner-bottom {
    background-color: var(--color-bg-blue-light);
    border-radius: var(--radius-lg);
    height: 180px;
    position: relative;
    overflow: hidden;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.banner-bottom-meta {
    max-width: 60%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.banner-bottom-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-muted);
}

.banner-bottom-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
}

.banner-bottom-img {
    position: absolute;
    bottom: 0;
    right: 15px;
    height: 95%;
    width: auto;
    object-fit: contain;
    z-index: 1;
    transition: transform 0.3s ease;
}

.banner-bottom:hover .banner-bottom-img {
    transform: scale(1.02);
}

.banner-bottom-btn {
    align-self: flex-start;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: background-color 0.2s ease;
}

.banner-bottom-btn:hover {
    background-color: var(--color-primary-hover);
}

/* --- Premium Grid Footer --- */
.replica-footer {
    background-color: #fafafa;
    border-top: 1px solid #eef2f6;
    padding: 40px 0 30px 0; /* Adjusted top padding for ideal spacing */
    color: var(--color-text-dark);
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    text-align: left;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col.brand-col {
    gap: 20px;
}

.footer-logo {
    margin-bottom: 4px;
}

.footer-about-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: #718096;
    font-weight: 500;
}

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

.footer-social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    transition: all 0.2s ease;
}

.footer-social-link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 69, 165, 0.05);
}

.footer-col-title {
    font-size: 15px;
    font-weight: 800;
    color: #1a202c;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #eef2f6;
    padding-bottom: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: #718096;
    font-weight: 600;
    transition: color 0.2s ease; /* Removed padding-left transition */
}

.footer-links li a:hover {
    color: var(--color-primary);
    /* Removed padding-left slide effect */
}

.footer-links.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #718096;
    font-weight: 600;
}

.footer-links.contact-info li svg {
    color: #a0aec0;
    flex-shrink: 0;
}

/* Footer Bottom Area */
.footer-bottom {
    border-top: 1px solid #eef2f6;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a0aec0;
    font-size: 13px;
    font-weight: 600;
}

.footer-copyright {
    text-align: left;
}

.footer-credit {
    text-align: right;
}

/* Responsive Footer rules */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-copyright, .footer-credit {
        text-align: center;
    }
}

/* Sticky Bottom Nav (Mobile) */
.mobile-sticky-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #ffffff;
    border-top: 1px solid #eef2f6;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.04);
}

.mobile-sticky-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 800;
    color: #718096;
}

.mobile-sticky-item.active {
    color: var(--color-primary);
}

.mobile-sticky-item svg {
    width: 22px;
    height: 22px;
}

/* --- Mid Banners (2 columns beige banners) --- */
.banners-mid-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.banner-mid {
    background-color: var(--color-bg-beige);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    height: 230px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.banner-mid-content {
    flex: 1;
    max-width: 60%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-mid-year {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 2px;
}

.banner-mid-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.banner-mid-text {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.banner-mid-btn {
    align-self: flex-start;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 11px 24px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: background-color 0.2s ease;
}

.banner-mid-btn:hover {
    background-color: var(--color-primary-hover);
}

.banner-mid-img-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 45%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1;
}

.banner-mid-img {
    height: 95%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.banner-mid:hover .banner-mid-img {
    transform: scale(1.02);
}

/* --- Tag Ribbon (Category tags) --- */
.tag-ribbon-container {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 24px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.tag-ribbon-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.tag-ribbon-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: nowrap; /* Side-by-side single row */
    padding: 10px 4px;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
}

.tag-ribbon-wrapper.active {
    cursor: grabbing;
}

.tag-badge {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 4px 8px 4px 4px; /* Extra compact padding to fit 8 badges on desktop */
    gap: 5px;
    flex-shrink: 0;
    cursor: inherit;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: all 0.2s ease;
}

.tag-badge:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 5px rgba(0, 69, 165, 0.05);
}

.tag-badge-img {
    width: 22px; /* Extra compact image size */
    height: 22px;
    border-radius: 4px;
    object-fit: cover;
    pointer-events: none;
}

.tag-badge-text {
    font-size: 12px; /* Extra compact font size */
    font-weight: 700;
    color: var(--color-text-dark);
    pointer-events: none;
}

@media (max-width: 1024px) {
    .tag-ribbon-wrapper {
        justify-content: flex-start; /* Left aligned for horizontal scroll on mobile */
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* --- Lower Tall Cards Section --- */
.banners-lower-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
    align-items: start;
}

.card-tall-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-tall {
    background-color: var(--color-bg-beige);
    border-radius: var(--radius-lg);
    padding: 35px 20px 24px 20px;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card-tall-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.card-tall-subtitle {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

.card-tall-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.1;
}

.card-tall-img-wrapper {
    position: absolute;
    bottom: 65px;
    left: 0;
    right: 0;
    height: 55%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
}

.card-tall-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.card-tall:hover .card-tall-img {
    transform: scale(1.02);
}

.card-tall-btn {
    align-self: center;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    padding: 12px 36px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: background-color 0.2s ease;
}

.card-tall-btn:hover {
    background-color: var(--color-primary-hover);
}

/* App Promo Bar */
.app-promo-bar {
    background-color: var(--color-primary);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #ffffff;
}

.app-promo-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-promo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-promo-text {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
}

.app-promo-text strong {
    font-weight: 900;
}

.app-promo-btn {
    background-color: #ffffff;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 900;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    white-space: nowrap;
    text-align: center;
    transition: opacity 0.2s ease;
}

.app-promo-btn:hover {
    opacity: 0.9;
}

/* Products Section */
.products-section {
    margin-top: 5px;
    margin-bottom: 30px;
}

.products-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 14px;
    border-bottom: 1px solid #eef2f6;
    padding-bottom: 10px;
}

.products-header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.products-section-header .section-title {
    font-size: 22px;
    font-weight: 800;
    color: #2d3748; /* Koyu gri */
    margin: 0;
    line-height: 1.2;
}

.products-section-header .section-desc {
    font-size: 15px; /* 1 punto daha büyük */
    font-weight: 500;
    color: #718096; /* Biraz daha açık gri */
    margin: 0;
    line-height: 1.4;
}

.products-header-right {
    flex-shrink: 0;
}

.section-link-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    transition: color 0.2s ease, transform 0.2s ease;
}

.section-link-all:hover {
    color: var(--color-primary-hover);
    transform: translateX(3px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.products-grid--cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.products-grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Banner + Kaydırmalı Ürün Kartları */
.products-feature-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: stretch;
}

.products-feature-banner {
    grid-column: span 2;
    background-color: var(--color-bg-beige);
    border-radius: var(--radius-lg);
    border: 1px solid #eef2f6;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 100%;
}

.products-feature-banner-content {
    position: relative;
    z-index: 2;
    max-width: 58%;
}

.products-feature-banner-year {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.products-feature-banner-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.1;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.products-feature-banner-text {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin: 0 0 18px 0;
    line-height: 1.4;
}

.products-feature-banner-btn {
    align-self: flex-start;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 11px 24px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.products-feature-banner-btn:hover {
    background-color: var(--color-primary-hover);
}

.products-feature-banner-img-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 48%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1;
}

.products-feature-banner-img {
    height: 92%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.products-feature-banner:hover .products-feature-banner-img {
    transform: scale(1.02);
}

.products-feature-carousel {
    grid-column: span 3;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.products-feature-row--reversed .products-feature-banner-content {
    margin-left: auto;
    text-align: right;
}

.products-feature-row--reversed .products-feature-banner-btn {
    align-self: flex-end;
}

.products-feature-row--reversed .products-feature-banner-img-wrapper {
    right: auto;
    left: 0;
    justify-content: flex-start;
}

.products-feature-track-wrap {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.products-feature-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 2px 0;
}

.products-feature-track::-webkit-scrollbar {
    display: none;
}

.products-feature-track .product-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    scroll-snap-align: start;
}

.carousel-nav {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #eef2f6;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-primary);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.carousel-nav:hover:not(:disabled) {
    background-color: #f8fafc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.product-card {
    background-color: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: var(--radius-md);
    padding: 0 0 16px 0; /* No padding on top, left, and right */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    overflow: hidden; /* Ensure image border-radius fits the card */
}

.product-card:hover {
    border-color: var(--color-primary); /* Royal blue border on hover */
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.product-img-container {
    position: relative;
    width: 100%;
    height: 220px;
    background-color: #f8fafc;
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 12px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Fits transparent PNG images inside the box frame completely without cropping */
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, background-color 0.2s ease;
    z-index: 10;
}

.fav-btn:hover {
    transform: scale(1.08);
}

.heart-icon {
    width: 18px;
    height: 18px;
    color: #5e7185; /* dark grey outline */
    fill: transparent;
    transition: fill 0.2s ease, color 0.2s ease;
}

.fav-btn.is-favorite .heart-icon,
.fav-btn.active .heart-icon {
    color: #ff3366;
    fill: #ff3366;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 0 16px; /* Text padding */
}

.delivery-badge {
    font-size: 11.5px;
    font-weight: 600; /* Regular/Medium weight instead of bold */
    color: #10b981; /* green */
    margin-bottom: 6px;
    display: inline-block;
}

.product-brand {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--color-text-light, #9a8f86);
    margin-bottom: 2px;
}

.product-stock-status {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
    padding: 2px 8px;
    border-radius: 999px;
}

.product-stock-status.in-stock {
    color: #10b981;
    background: rgba(16, 185, 129, .12);
}

.product-stock-status.out-stock {
    color: #ef4444;
    background: rgba(239, 68, 68, .12);
}

.product-stock-code,
.product-barcode {
    display: block;
    font-size: 10.5px;
    color: var(--color-text-light, #9a8f86);
    margin-top: 3px;
}

.pb-card-order-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 9px 12px;
    border: none;
    border-radius: 10px;
    background: var(--color-primary, #c0392b);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: filter .15s ease, transform .15s ease;
}

.pb-card-order-btn:hover {
    filter: brightness(0.94);
}

.pb-card-order-btn:active {
    transform: translateY(1px);
}

.product-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
}

.star {
    font-size: 12px;
    color: #e2e8f0;
}

.star.filled {
    color: #ffb703;
}

.rating-text {
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 700;
    margin-left: 4px;
}

/* Product Badges (top left on product images) */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 900;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.product-badge.new {
    background-color: var(--color-primary); /* Royal blue */
}

.product-badge.discount {
    background-color: #dc143c; /* Crimson red */
}

.product-badge.special {
    background-color: #ffb703; /* Orange/Gold */
}

.product-campaign-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    z-index: 10;
    pointer-events: none;
}

.product-campaign-badge {
    font-size: 10px;
    font-weight: 900;
    color: #ffffff;
    background: linear-gradient(135deg, #d6336c, #f06595);
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(214, 51, 108, 0.3);
}

.product-tag-badges {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-width: calc(100% - 20px);
    z-index: 10;
    pointer-events: none;
}

.product-tag-badge {
    font-size: 10px;
    font-weight: 800;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.18);
    white-space: nowrap;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    margin-bottom: 2px;
}

.old-price {
    text-decoration: line-through;
    font-size: 14.5px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.discount-rate {
    font-size: 12.5px;
    color: #ffffff;
    font-weight: 500;
    background-color: #dc143c; /* Red background badge */
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
}

.current-price {
    font-size: 21px; /* Slightly larger, ideal dimensions */
    font-weight: 800;
    color: #dc143c; /* kırmızı */
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .banners-top-grid {
        grid-template-columns: 1.2fr 1fr;
    }
    
    .banner-main-title {
        font-size: 40px;
    }
    
    .banner-main-img {
        right: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .products-feature-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .products-feature-banner {
        grid-column: span 1;
    }

    .products-feature-carousel {
        grid-column: span 2;
    }

    .products-feature-row--reversed .products-feature-carousel {
        grid-column: span 2;
    }

    .products-feature-row--reversed .products-feature-banner {
        grid-column: span 1;
    }

    .products-feature-track .product-card {
        flex: 0 0 calc((100% - 16px) / 2);
    }
}

@media (max-width: 768px) {
    :root {
        --header-main-row-height: 72px;
    }

    .header-top-bar {
        display: none;
    }
    
    body {
        padding-bottom: 60px; /* space for mobile sticky nav */
    }
    
    .category-nav-bar {
        display: none; /* Hide category bar on mobile */
    }
    
    .header-actions .header-action-link {
        display: none; /* Hide text links on mobile */
    }
    
    .banners-top-grid {
        grid-template-columns: 1fr; /* Stack main and side banners */
        gap: 16px;
    }
    
    .banner-main {
        height: 380px;
        padding: 24px;
    }
    
    .banner-main-title {
        font-size: 32px;
    }
    
    .banner-main-img {
        right: 10px;
        height: 75%;
    }
    
    .banner-side-column {
        height: auto;
    }
    
    .banner-side {
        height: 180px;
        padding: 24px;
    }
    
    .banner-side-title {
        font-size: 20px;
    }
    
    .banners-bottom-grid {
        grid-template-columns: 1fr; /* Stack bottom banners */
        gap: 16px;
    }
    
    .banner-bottom {
        height: 150px;
    }
    
    .mobile-sticky-nav {
        display: flex; /* Show bottom bar */
    }
    
    /* Responsive styles for new sections */
    .banners-mid-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .banner-mid {
        height: auto;
        min-height: 200px;
        padding: 24px;
    }
    
    .banner-mid-content {
        max-width: 55%;
    }
    
    .banner-mid-title {
        font-size: 20px;
    }
    
    .banner-mid-year {
        font-size: 18px;
    }
    
    .banner-mid-text {
        margin-bottom: 15px;
    }

    .banners-lower-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-tall {
        height: 400px;
        padding: 25px 20px 20px 20px;
    }
    
    .card-tall-img-wrapper {
        bottom: 55px;
        height: 50%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .products-feature-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .products-feature-banner {
        grid-column: span 1;
        min-height: 220px;
        padding: 22px 24px;
    }

    .products-feature-banner-content {
        max-width: 62%;
    }

    .products-feature-banner-title {
        font-size: 22px;
    }

    .products-feature-carousel {
        grid-column: span 1;
        gap: 6px;
    }

    .products-feature-track {
        gap: 12px;
    }

    .products-feature-track .product-card {
        flex: 0 0 calc((100% - 12px) / 2);
    }

    .carousel-nav {
        width: 32px;
        height: 32px;
    }

    .product-img-container {
        height: 150px;
    }

    .current-price {
        font-size: 15.5px;
    }
}

@media (max-width: 1200px) {
    .stories-wrapper {
        justify-content: flex-start;
        gap: 20px;
    }
}

/* --- Advanced Footer Elements --- */
.footer-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eef2f6;
    padding-bottom: 30px;
    margin-bottom: 20px;
    gap: 30px;
    text-align: left;
}

.newsletter-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.newsletter-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a202c;
    margin: 0;
}

.newsletter-desc {
    font-size: 13.5px;
    color: #718096;
    margin: 0;
    font-weight: 500;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    width: 100%;
    max-width: 420px;
}

.newsletter-input {
    flex-grow: 1;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    height: 46px;
    padding: 0 16px;
    font-size: 14px;
    color: var(--color-text-dark);
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.newsletter-input:focus {
    border-color: var(--color-primary);
}

.newsletter-btn {
    background-color: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    height: 46px;
    padding: 0 24px;
    font-size: 13.5px;
    font-weight: 800;
    cursor: pointer;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.newsletter-btn:hover {
    background-color: var(--color-primary-hover);
}

.footer-payments {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.payment-badge {
    font-size: 11px;
    font-weight: 800;
    color: #718096;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 3px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.01);
}

.payment-badge.secure {
    color: #2d6b4a;
    border-color: rgba(111, 191, 138, 0.35);
    background-color: rgba(111, 191, 138, 0.08);
}

@media (max-width: 768px) {
    .footer-newsletter {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .newsletter-form {
        max-width: 100%;
    }
}





/* --- Floating Actions --- */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1001;
}

.floating-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-btn.whatsapp-btn {
    background-color: #25D366;
    color: #ffffff;
    width: 52px;
    height: 52px;
}

.floating-btn.whatsapp-btn:hover {
    background-color: #20ba5a;
    transform: scale(1.08);
}

.floating-btn.whatsapp-btn svg {
    width: 26px;
    height: 26px;
}

.floating-btn.scroll-to-top {
    background-color: #ffffff;
    color: #4a5568;
    border: 1px solid #e2e8f0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.floating-btn.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-btn.scroll-to-top:hover {
    background-color: #f7fafc;
    color: var(--color-primary);
    transform: scale(1.08);
}

/* Adjust position for mobile due to sticky bottom navigation bar */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 80px; /* Stay clear of mobile bottom navigation */
        right: 16px;
    }
}

/* Instagram tarzı story görüntüleyici */
.story-card[data-story-index] .story-circle-wrapper,
.story-card[data-story-index] {
    cursor: pointer;
}

.story-card[data-story-index] .story-circle-wrapper {
    background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
    padding: 3px;
}

.story-card[data-story-index] .story-circle-img {
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
}

body.story-viewer-open {
    overflow: hidden;
}

.story-viewer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-viewer[hidden] {
    display: none;
}

.story-viewer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 18, 0.92);
    backdrop-filter: blur(4px);
}

.story-viewer-stage {
    position: relative;
    width: min(420px, 100vw);
    height: min(92vh, 760px);
    max-height: 100vh;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 480px) {
    .story-viewer-stage {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }
}

.story-viewer-progress {
    position: absolute;
    top: 10px;
    left: 12px;
    right: 12px;
    z-index: 3;
    display: flex;
    gap: 4px;
}

.story-viewer-bar {
    flex: 1;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.35);
    overflow: hidden;
}

.story-viewer-bar-fill {
    display: block;
    height: 100%;
    width: 0;
    background: #fff;
    border-radius: 3px;
}

.story-viewer-header {
    position: absolute;
    top: 22px;
    left: 12px;
    right: 12px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.story-viewer-title {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.story-viewer-close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.story-viewer-close svg {
    width: 20px;
    height: 20px;
}

.story-viewer-media {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    min-height: 0;
}

.story-viewer-image,
.story-viewer-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.story-viewer-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    margin: 0;
    padding: 40px 18px 22px;
    color: #fff;
    font-size: 14px;
    line-height: 1.45;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.story-viewer-nav {
    position: absolute;
    top: 56px;
    bottom: 0;
    width: 35%;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
}

.story-viewer-nav--prev {
    left: 0;
}

.story-viewer-nav--next {
    right: 0;
    width: 65%;
}
