/* ==========================================
   PASTA DUKKANI - FRONTEND STYLES
   Modern, Sik, Pembe Uyumlu Responsive Tasarim
   Story, Blog, Gelismis Vitrin Destekli
   ========================================== */

/* ---- CSS Variables ---- */
:root {
    --pink-primary: #e91e8c;
    --pink-dark: #c2185b;
    --pink-deeper: #880e4f;
    --pink-light: #f8bbd0;
    --pink-lighter: #fce4ec;
    --pink-soft: #fff5f8;
    --gold: #d4a574;
    --gold-light: #f0dcc8;
    --dark: #2d2d2d;
    --dark-light: #444;
    --gray: #666;
    --gray-light: #999;
    --gray-lighter: #ddd;
    --gray-bg: #f5f5f5;
    --white: #ffffff;
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
    --info: #2196f3;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-pink: 0 4px 25px rgba(233,30,140,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-main); color: var(--dark); line-height: 1.6; background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }

/* ==========================================
   TOP BAR - ENHANCED
   ========================================== */
.top-bar {
    background: linear-gradient(135deg, var(--pink-deeper) 0%, var(--pink-dark) 50%, #d81b7a 100%);
    color: var(--white); font-size: 12px; padding: 6px 0;
    position: relative; z-index: 1001;
    letter-spacing: 0.3px;
}
.top-bar::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left, .top-bar-right { display: flex; gap: 18px; align-items: center; }
.top-bar-item { display: inline-flex; align-items: center; gap: 5px; opacity: 0.85; }
.top-bar-link { color: var(--white); transition: var(--transition); }
.top-bar-link:hover { opacity: 1; color: var(--pink-light); }
.top-bar-icon { flex-shrink: 0; opacity: 0.75; }

/* ==========================================
   HEADER - BEAUTIFIED & MODERN
   ========================================== */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: none;
}
.header::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-primary), var(--gold), var(--pink-primary));
    opacity: 0.4; transition: opacity 0.4s ease;
}
.header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 24px rgba(233,30,140,0.06), 0 1px 6px rgba(0,0,0,0.04);
}
.header.scrolled::after { opacity: 0.7; }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 70px; gap: 20px;
}

/* Logo - Elegant */
.logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 22px; font-weight: 700; color: var(--pink-primary);
    position: relative; flex-shrink: 0;
    text-decoration: none;
}
.logo img {
    height: 44px; width: auto;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.logo:hover img { transform: scale(1.05); }
.logo-icon-wrap {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
    border-radius: var(--radius-sm); display: flex;
    align-items: center; justify-content: center;
    box-shadow: 0 3px 12px rgba(233,30,140,0.2);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.logo:hover .logo-icon-wrap { transform: scale(1.06); }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text {
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; font-size: 19px; font-weight: 800;
}
.logo-tagline {
    font-size: 10px; font-weight: 500; color: var(--gray-light);
    letter-spacing: 1.5px; text-transform: uppercase;
    -webkit-text-fill-color: var(--gray-light);
}

/* Main Nav - Clean & Elegant */
.main-nav { display: flex; gap: 1px; align-items: center; }
.mobile-nav-header { display: none; } /* Hidden on desktop */
.nav-icon { opacity: 0.5; transition: var(--transition); flex-shrink: 0; }
.nav-link:hover .nav-icon, .nav-link.active .nav-icon { opacity: 1; }
.nav-link {
    padding: 8px 12px; border-radius: var(--radius-sm);
    font-weight: 500; font-size: 13.5px; color: var(--dark-light);
    transition: var(--transition); position: relative;
    display: inline-flex; align-items: center; gap: 6px;
    background: none; border: none; cursor: pointer; font-family: inherit;
    white-space: nowrap;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 2px;
    left: 14px; right: 14px; height: 2px;
    background: linear-gradient(90deg, var(--pink-primary), var(--gold));
    border-radius: 2px; transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover { color: var(--pink-primary); background: transparent; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--pink-primary); background: var(--pink-lighter); font-weight: 600; }
.nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle { text-decoration: none; }
.dropdown-chevron { opacity: 0.4; transition: transform 0.3s ease; margin-left: 1px; }
.nav-dropdown.open .dropdown-chevron { transform: rotate(180deg); opacity: 0.8; }
.dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
    background: var(--white); border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12); min-width: 200px;
    opacity: 0; visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100; padding: 8px 0;
    border: 1px solid rgba(233,30,140,0.06);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 18px; font-size: 14px; color: var(--dark-light);
    transition: var(--transition);
}
.dropdown-menu a::before {
    content: ''; width: 4px; height: 4px; border-radius: 50%;
    background: var(--pink-light); flex-shrink: 0;
    transition: var(--transition);
}
.dropdown-menu a:hover {
    background: var(--pink-soft); color: var(--pink-primary);
    padding-left: 22px;
}
.dropdown-menu a:hover::before { background: var(--pink-primary); width: 6px; height: 6px; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* WhatsApp Button - REMOVED from header (mobile WhatsApp removed per user request) */
.btn-whatsapp { display: none; }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
    width: 36px; height: 36px; justify-content: center; align-items: center;
    border-radius: var(--radius-sm); transition: var(--transition);
}
.mobile-menu-btn:hover { background: var(--pink-soft); }
.mobile-menu-btn span {
    display: block; width: 20px; height: 2px; background: var(--dark-light);
    border-radius: 2px; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--pink-primary); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--pink-primary); }

.mobile-nav-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.5); z-index: 998;
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    transition: opacity 0.35s ease;
}
.mobile-nav-overlay.active { display: block; }

/* ==========================================
   INSTAGRAM TARZI STORY ALANI
   ========================================== */
.stories-bar { background: var(--white); padding: 16px 0; border-bottom: 1px solid var(--gray-lighter); }
.stories-scroll { display: flex; gap: 18px; overflow-x: auto; padding: 8px 4px; scrollbar-width: none; -ms-overflow-style: none; }
.stories-scroll::-webkit-scrollbar { display: none; }
.story-item { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; cursor: pointer; text-decoration: none; }
.story-ring { width: 72px; height: 72px; border-radius: 50%; padding: 3px; background: linear-gradient(135deg, var(--pink-primary), #ff6b6b, #ffd93d, var(--pink-primary)); transition: var(--transition); }
.story-item:hover .story-ring { transform: scale(1.08); box-shadow: 0 0 20px rgba(233,30,140,0.3); }
.story-avatar { width: 100%; height: 100%; border-radius: 50%; border: 3px solid var(--white); overflow: hidden; background: var(--pink-soft); display: flex; align-items: center; justify-content: center; }
.story-avatar img { width: 100%; height: 100%; object-fit: cover; }
.story-emoji { font-size: 24px; }
.story-title { font-size: 12px; color: var(--dark-light); text-align: center; max-width: 72px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 500; }
.story-item:hover .story-title { color: var(--pink-primary); }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: var(--radius-md); font-weight: 600; font-size: 15px; border: none; cursor: pointer; transition: var(--transition); text-align: center; }
.btn-primary { background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark)); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-pink); }
.btn-outline-lg { background: transparent; color: var(--pink-primary); border: 2px solid var(--pink-primary); }
.btn-outline-lg:hover { background: var(--pink-primary); color: var(--white); }
.btn-outline-sm { background: transparent; color: var(--pink-primary); border: 1.5px solid var(--pink-light); padding: 8px 16px; font-size: 14px; border-radius: var(--radius-sm); }
.btn-outline-sm:hover { border-color: var(--pink-primary); background: var(--pink-lighter); }
.btn-ghost-sm { background: none; color: var(--gray); padding: 8px 16px; font-size: 14px; }
.btn-ghost-sm:hover { color: var(--pink-primary); }
.btn-hero { background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark)); color: var(--white); padding: 16px 40px; font-size: 16px; border-radius: var(--radius-xl); }
.btn-hero:hover { transform: translateY(-3px); box-shadow: var(--shadow-pink); }
.btn-order { background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark)); color: var(--white); padding: 8px 16px; font-size: 14px; border-radius: var(--radius-sm); white-space: nowrap; flex-shrink: 0; }
.btn-order:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(233,30,140,0.25); }
.btn-overlay { background: var(--white); color: var(--pink-primary); padding: 10px 24px; border-radius: var(--radius-xl); font-weight: 600; font-size: 14px; }
.btn-overlay:hover { background: var(--pink-primary); color: var(--white); }
.btn-order-overlay { background: var(--pink-primary); color: var(--white); padding: 10px 24px; border-radius: var(--radius-xl); font-weight: 600; font-size: 14px; }
.btn-order-overlay:hover { background: var(--pink-dark); }
.btn-whatsapp-lg { background: #25d366; color: var(--white); padding: 14px 32px; border-radius: var(--radius-md); font-size: 16px; display: inline-flex; align-items: center; gap: 10px; }
.btn-whatsapp-lg:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: var(--radius-sm); }

/* ---- Hero Slider ---- */
.hero-slider { position: relative; height: 550px; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.slide.active { opacity: 1; }
.slide-image { position: absolute; inset: 0; background-size: cover; background-position: center; }
.slide-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(233,30,140,0.7) 0%, rgba(136,14,79,0.5) 100%); }
.slide-content { position: relative; z-index: 2; display: flex; align-items: center; height: 100%; color: var(--white); }
.slide-title { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.slide-subtitle { font-size: 20px; opacity: 0.95; margin-bottom: 30px; max-width: 600px; }

.animate-up { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.slide.active .animate-up { opacity: 1; transform: translateY(0); }
.slide.active .delay-1 { transition-delay: 0.2s; }
.slide.active .delay-2 { transition-delay: 0.4s; }

.slider-controls { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 12px; z-index: 3; }
.slider-btn { background: rgba(255,255,255,0.25); color: var(--white); border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 18px; transition: var(--transition); backdrop-filter: blur(10px); }
.slider-btn:hover { background: rgba(255,255,255,0.4); }
.slider-dots { display: flex; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--white); width: 30px; border-radius: 5px; }

.hero-static { background: linear-gradient(135deg, var(--pink-lighter) 0%, var(--pink-light) 50%, var(--pink-primary) 100%); padding: 120px 0; text-align: center; color: var(--white); }
.hero-static h1 { font-size: 48px; font-weight: 800; margin-bottom: 16px; }
.hero-static h1 span { color: var(--gold); }
.hero-static p { font-size: 20px; margin-bottom: 30px; opacity: 0.95; }

/* ---- Section Header ---- */
.section-header { text-align: center; margin-bottom: 50px; }
.section-badge { display: inline-block; background: var(--pink-soft); color: var(--pink-primary); padding: 6px 18px; border-radius: var(--radius-xl); font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.section-header h2 { font-size: 36px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.section-header p { font-size: 17px; color: var(--gray); max-width: 600px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 40px; }

/* ==========================================
   GELISMIS URUN VITRINI (SHOWCASE) - IMPROVED
   ========================================== */
.products-showcase { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.showcase-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; border: 1px solid rgba(0,0,0,0.03);
    display: flex; flex-direction: column;
}
.showcase-card .showcase-content { flex: 1; display: flex; flex-direction: column; }
.showcase-card .showcase-content .showcase-excerpt { flex: 1; }
.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(233,30,140,0.12), 0 4px 12px rgba(0,0,0,0.06);
    border-color: rgba(233,30,140,0.1);
}
.showcase-card .btn-order {
    transform: translateY(4px);
    opacity: 0;
    transition: all 0.3s ease;
}
.showcase-card:hover .btn-order {
    transform: translateY(0);
    opacity: 1;
}
.showcase-image-wrap { position: relative; height: 260px; overflow: hidden; background: var(--pink-soft); }
.showcase-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.showcase-card:hover .showcase-image-wrap img { transform: scale(1.08); }
.showcase-overlay {
    display: none; /* Overlay removed from product showcase */
}

/* Category tag - top-left, stays clear of badges */
.product-category-tag {
    position: absolute; top: 12px; left: 12px;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
    color: var(--pink-primary); padding: 5px 14px; border-radius: var(--radius-xl);
    font-size: 12px; font-weight: 600; z-index: 3;
    border: 1px solid rgba(233,30,140,0.1);
    transition: var(--transition);
}
.showcase-card:hover .product-category-tag { background: var(--white); box-shadow: 0 2px 8px rgba(233,30,140,0.15); }

/* ==========================================
   BADGE SYSTEM - FIXED (NO OVERLAPPING)
   ========================================== */

/* Badge container: wraps all badges in the top-right corner */
.product-badges {
    position: absolute; top: 10px; right: 10px;
    display: flex; flex-direction: column; gap: 6px;
    z-index: 4; max-width: calc(100% - 100px);
    pointer-events: none;
}
.product-badges .product-badge { pointer-events: auto; }

/* Base badge style */
.product-badge {
    position: relative; right: auto; top: auto;
    padding: 4px 11px; border-radius: var(--radius-xl);
    font-size: 11px; font-weight: 700; z-index: 2;
    white-space: nowrap; display: inline-flex;
    align-items: center; gap: 3px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    transition: var(--transition);
    margin: 0; /* prevent overlap */
    line-height: 1.4;
}

/* Primary badges - visible in top-right stack (max 2-3) */
.product-badge.new {
    background: rgba(33,150,243,0.92); color: white;
    animation: badge-slide-in 0.4s ease-out;
}
.product-badge.bestseller {
    background: rgba(255,152,0,0.92); color: white;
    animation: badge-slide-in 0.4s ease-out 0.1s both;
}
.product-badge.discount {
    background: rgba(244,67,54,0.92); color: white;
    animation: badge-slide-in 0.4s ease-out 0.2s both;
}

/* Secondary badges inside .product-badges container - just use different color */
.product-badge.view-count-badge,
.product-badge.views {
    background: rgba(99,102,241,0.88); color: white;
    font-size: 10px; padding: 3px 9px;
}
.product-badge.sold-count-badge,
.product-badge.sold {
    background: rgba(245,158,11,0.88); color: white;
    font-size: 10px; padding: 3px 9px;
}
.product-badge.variant-badge,
.product-badge.variant {
    background: rgba(139,92,246,0.88); color: white;
    font-size: 10px; padding: 3px 9px;
}
.product-badge.allergen {
    background: rgba(239,68,68,0.88); color: white;
    font-size: 10px; padding: 3px 9px;
}

/* Legacy support: when badges are placed directly without .product-badges wrapper */
.showcase-image-wrap > .product-badge.new,
.product-image-wrap > .product-badge.new { top: 12px; right: 12px; position: absolute; }
.showcase-image-wrap > .product-badge.bestseller,
.product-image-wrap > .product-badge.bestseller { top: 36px; right: 12px; position: absolute; }
.showcase-image-wrap > .product-badge.discount,
.product-image-wrap > .product-badge.discount { top: 60px; right: 12px; position: absolute; }

/* Badge slide-in animation */
@keyframes badge-slide-in {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Allergen indicator below image */
.product-allergen-indicator { display: flex; align-items: center; gap: 6px; padding: 6px 12px; background: #fff5f5; border-bottom: 2px solid #fecaca; font-size: 11px; color: #dc2626; }
.allergen-dot { width: 6px; height: 6px; border-radius: 50%; }
.allergen-dot-1 { background: #ef4444; }
.allergen-dot-2 { background: #f59e0b; }
.allergen-dot-3 { background: #8b5cf6; }
.allergen-info-text { font-weight: 500; }

.showcase-content { padding: 20px; }
.showcase-content h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.showcase-content h3 a { color: var(--dark); }
.showcase-content h3 a:hover { color: var(--pink-primary); }
.showcase-excerpt { font-size: 14px; color: var(--gray); margin-bottom: 16px; line-height: 1.5; }
.showcase-footer { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: nowrap; overflow: hidden; }
.showcase-price { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }

/* Price display - more elegant */
.product-price {
    font-size: 20px; font-weight: 700; color: var(--pink-primary);
    text-shadow: 0 1px 2px rgba(233,30,140,0.1);
}
.old-price { font-size: 14px; color: var(--gray-light); text-decoration: line-through; }
.old-price-small { font-size: 12px; color: var(--gray-light); text-decoration: line-through; }
.price-group { display: flex; flex-direction: column; gap: 2px; }
.showcase-rating .stars { color: #ffc107; font-size: 14px; }

/* ---- Products Grid (Klasik) ---- */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 28px; }

.product-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex; flex-direction: column;
}
.product-card .product-content { flex: 1; display: flex; flex-direction: column; }
.product-card .product-content .product-excerpt { flex: 1; }
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(233,30,140,0.12), 0 4px 12px rgba(0,0,0,0.06);
    border-color: rgba(233,30,140,0.08);
}
.product-card .btn-order {
    transform: translateY(4px);
    opacity: 0;
    transition: all 0.3s ease;
}
.product-card:hover .btn-order {
    transform: translateY(0);
    opacity: 1;
}

.product-image-wrap { position: relative; height: 260px; overflow: hidden; background: var(--pink-soft); }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.product-card:hover .product-image-wrap img { transform: scale(1.08); }
.product-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 64px; background: linear-gradient(135deg, var(--pink-lighter), var(--pink-light)); }
.product-overlay {
    display: none; /* Overlay removed from product cards */
}

.product-content { padding: 20px; }
.product-content h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.product-content h3 a { color: var(--dark); }
.product-content h3 a:hover { color: var(--pink-primary); }
.product-excerpt { font-size: 14px; color: var(--gray); margin-bottom: 16px; line-height: 1.5; }

.product-footer { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: nowrap; overflow: hidden; }

/* ---- Categories Showcase ---- */
.categories-section { background: var(--pink-soft); }
.categories-showcase { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

.category-showcase-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); position: relative; border: 2px solid transparent; }
.category-showcase-card:hover { border-color: var(--pink-light); transform: translateY(-6px); box-shadow: var(--shadow-pink); }

.category-showcase-image { height: 200px; position: relative; overflow: hidden; }
.category-showcase-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-showcase-card:hover .category-showcase-image img { transform: scale(1.1); }
.category-placeholder-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; background: linear-gradient(135deg, var(--pink-lighter), var(--pink-light)); }
.category-showcase-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(233,30,140,0.5) 0%, transparent 60%); }

.category-showcase-info { padding: 20px; }
.category-showcase-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.category-showcase-info p { font-size: 13px; color: var(--gray); margin-bottom: 8px; line-height: 1.5; }
.category-showcase-count { font-size: 14px; font-weight: 600; color: var(--pink-primary); }
.category-showcase-card:hover .category-showcase-count { text-decoration: underline; }

/* ---- Klasik Kategori Grid ---- */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.category-card { background: var(--white); border-radius: var(--radius-lg); padding: 35px 20px; text-align: center; transition: var(--transition); border: 2px solid transparent; }
.category-card:hover { border-color: var(--pink-light); transform: translateY(-4px); box-shadow: var(--shadow-pink); }
.category-icon { font-size: 42px; display: block; margin-bottom: 12px; }
.category-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.category-count { font-size: 13px; color: var(--gray); }

/* ==========================================
   INDIRIM BOLUMU
   ========================================== */
.discount-section { background: linear-gradient(135deg, #fff5f8, #fce4ec); }
.discount-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }

.discount-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); box-shadow: var(--shadow-sm); }
.discount-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.discount-card-image { position: relative; height: 220px; overflow: hidden; background: var(--pink-soft); }
.discount-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.discount-card:hover .discount-card-image img { transform: scale(1.08); }
.discount-percent { position: absolute; top: 12px; right: 12px; background: var(--danger); color: white; padding: 6px 14px; border-radius: var(--radius-xl); font-size: 14px; font-weight: 700; }
.discount-card-content { padding: 18px; }
.discount-category { font-size: 12px; color: var(--pink-primary); font-weight: 600; }
.discount-card-content h3 { font-size: 17px; margin: 6px 0 10px; }
.discount-prices { display: flex; align-items: center; gap: 10px; }
.discount-price { font-size: 20px; font-weight: 700; color: var(--pink-primary); }
.discount-old-price { font-size: 15px; color: var(--gray-light); text-decoration: line-through; }

/* ==========================================
   BLOG BOLUMU (ANA SAYFA)
   ========================================== */
.blog-section { background: var(--white); }
.blog-grid-home { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }

.blog-card-home { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.blog-card-home:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-home-image { height: 220px; position: relative; overflow: hidden; background: var(--pink-soft); }
.blog-card-home-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card-home:hover .blog-card-home-image img { transform: scale(1.08); }
.blog-placeholder-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; background: linear-gradient(135deg, var(--pink-lighter), var(--pink-light)); }
.blog-card-category { position: absolute; top: 12px; left: 12px; background: var(--pink-primary); color: white; padding: 4px 12px; border-radius: var(--radius-xl); font-size: 12px; font-weight: 600; }

.blog-card-home-content { padding: 20px; }
.blog-card-home-content h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--dark); line-height: 1.4; }
.blog-card-home:hover .blog-card-home-content h3 { color: var(--pink-primary); }
.blog-card-home-content p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 12px; }
.blog-card-meta { display: flex; gap: 16px; font-size: 13px; color: var(--gray-light); }

/* ---- Bestseller & New Sections ---- */
.bestseller-section { background: linear-gradient(135deg, #fff8e1 0%, #fff3e0 100%); }
.new-section { background: linear-gradient(135deg, #e3f2fd 0%, #e8eaf6 100%); }

/* ---- About Section ---- */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.about-img-wrapper { position: relative; }
.about-decoration { position: absolute; top: -20px; left: -20px; right: 20px; bottom: 20px; border: 3px solid var(--pink-light); border-radius: var(--radius-lg); z-index: 0; }
.about-placeholder-img { position: relative; z-index: 1; width: 100%; height: 400px; background: linear-gradient(135deg, var(--pink-lighter), var(--pink-light)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 80px; }

.about-content .section-badge { margin-bottom: 12px; }
.about-content h2 { font-size: 36px; font-weight: 700; margin-bottom: 20px; color: var(--dark); line-height: 1.3; }
.about-content > p { font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 30px; }

.about-features { display: flex; flex-direction: column; gap: 20px; }
.about-feature { display: flex; gap: 15px; align-items: flex-start; }
.feature-icon { font-size: 28px; flex-shrink: 0; }
.about-feature strong { display: block; font-size: 16px; margin-bottom: 3px; }
.about-feature p { font-size: 14px; color: var(--gray); }

/* ---- Contact Section ---- */
.contact-section { background: var(--pink-soft); }
.contact-info-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }

.contact-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px; text-align: center; transition: var(--transition); }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-icon { font-size: 32px; display: block; margin-bottom: 12px; color: var(--pink-primary); }
.contact-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.contact-card p { font-size: 15px; color: var(--gray); }
.whatsapp-card { border: 2px solid #25d366; }

/* ---- Footer ---- */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-icon { font-size: 28px; }
.footer-logo .logo-text { color: var(--white); font-size: 20px; font-weight: 700; background: none; -webkit-text-fill-color: var(--white); }
.footer-col > p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-link:hover { background: var(--pink-primary); }

.footer-col h3 { color: var(--white); font-size: 16px; font-weight: 600; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; opacity: 0.8; }
.footer-col ul a:hover { opacity: 1; color: var(--pink-light); }
.contact-list li { font-size: 14px; display: flex; gap: 8px; margin-bottom: 12px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding: 20px 0; text-align: center; font-size: 14px; }

/* Footer mobile improvements */
@media (max-width: 768px) {
    .footer { padding: 40px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-col { padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .footer-col:last-child { border-bottom: none; }
    .footer-col h3 { margin-bottom: 14px; font-size: 15px; }
    .footer-logo { margin-bottom: 12px; }
    .footer-social { justify-content: flex-start; }
    .footer-bottom { margin-top: 24px; padding: 16px 0; font-size: 13px; }
}

/* ---- WhatsApp Float ---- */
.whatsapp-float { position: fixed; bottom: 25px; right: 25px; width: 60px; height: 60px; background: #25d366; color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.3); z-index: 999; transition: var(--transition); animation: pulse-wa 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse-wa { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.3); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.5); } }

/* ---- Product Detail ---- */
.breadcrumb { padding: 15px 0; font-size: 14px; color: var(--gray); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb .separator { color: var(--gray-lighter); }
.breadcrumb .current { color: var(--pink-primary); font-weight: 500; }
.breadcrumb a:hover { color: var(--pink-primary); }

.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.product-detail-image { border-radius: var(--radius-lg); overflow: hidden; background: var(--pink-soft); }
.product-detail-image img { width: 100%; height: 500px; object-fit: cover; }
.product-placeholder.large { height: 500px; display: flex; align-items: center; justify-content: center; font-size: 100px; background: linear-gradient(135deg, var(--pink-lighter), var(--pink-light)); border-radius: var(--radius-lg); }

.detail-category { display: inline-block; background: var(--pink-soft); color: var(--pink-primary); padding: 4px 14px; border-radius: var(--radius-xl); font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.detail-title { font-size: 32px; font-weight: 700; margin-bottom: 16px; line-height: 1.3; }
.detail-price { font-size: 28px; font-weight: 700; color: var(--pink-primary); margin-bottom: 24px; }
.detail-description { margin-bottom: 24px; }
.detail-description h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.detail-description p { font-size: 15px; color: var(--gray); line-height: 1.7; }

.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

.order-form-wrapper { background: var(--pink-soft); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 24px; }
.order-form-wrapper h3 { font-size: 18px; margin-bottom: 20px; color: var(--pink-dark); }

.order-form .form-group { margin-bottom: 16px; }
.order-form label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 14px; color: var(--dark-light); }
.order-form input, .order-form textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--gray-lighter); border-radius: var(--radius-sm); font-size: 14px; transition: var(--transition); outline: none; font-family: var(--font-main); }
.order-form input:focus, .order-form textarea:focus { border-color: var(--pink-primary); }
.order-total { font-size: 18px; margin: 16px 0; padding: 12px; background: var(--white); border-radius: var(--radius-sm); }
.order-total strong { color: var(--pink-primary); }

.similar-products { margin-top: 60px; }
.similar-products .section-header h2 { font-size: 28px; }

/* ---- Filters ---- */
.filter-section { margin-bottom: 30px; }
.filter-bar-frontend { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.filter-bar-frontend input { padding: 10px 16px; border: 2px solid var(--gray-lighter); border-radius: var(--radius-sm); font-size: 14px; outline: none; min-width: 200px; transition: var(--transition); }
.filter-bar-frontend input:focus { border-color: var(--pink-primary); }
.filter-bar-frontend select { padding: 10px 16px; border: 2px solid var(--gray-lighter); border-radius: var(--radius-sm); font-size: 14px; outline: none; background: var(--white); cursor: pointer; }
.result-count { margin-top: 12px; font-size: 14px; color: var(--gray); }
.result-info { display: inline-block; margin-top: 8px; font-size: 15px; color: var(--gray); background: var(--pink-soft); padding: 4px 14px; border-radius: var(--radius-xl); }

.page-title-section { text-align: center; margin-bottom: 30px; }
.page-title-section h1 { font-size: 36px; font-weight: 700; margin-bottom: 8px; }

/* ---- Pagination ---- */
.pagination-frontend { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }

/* ---- Empty State ---- */
.empty-state-frontend { text-align: center; padding: 60px 20px; }
.empty-emoji { font-size: 64px; display: block; margin-bottom: 16px; }
.empty-state-frontend h3 { font-size: 22px; margin-bottom: 10px; }
.empty-state-frontend p { color: var(--gray); margin-bottom: 20px; }

/* ---- Alerts ---- */
.alert-success-frontend { background: #e8f5e9; color: #2e7d32; padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 16px; border-left: 4px solid var(--success); }
.alert-error-frontend { background: #ffebee; color: #c62828; padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 16px; border-left: 4px solid var(--danger); }

/* ---- Animations ---- */
.fade-in { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Header Search - REMOVED (search bar removed from header) */

.search-dropdown {
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    background: var(--white); border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12); display: none; z-index: 1000;
    max-height: 400px; overflow-y: auto; border: 1px solid rgba(233,30,140,0.08);
}
.search-result-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; transition: var(--transition); border-bottom: 1px solid #f5f5f5; }
.search-result-item:hover { background: var(--pink-soft); }
.search-result-image { width: 45px; height: 45px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--pink-soft); display: flex; align-items: center; justify-content: center; }
.search-result-image img { width: 100%; height: 100%; object-fit: cover; }
.search-result-image span { font-size: 20px; }
.search-result-info { flex: 1; }
.search-result-info strong { display: block; font-size: 14px; color: var(--dark); }
.search-result-category { font-size: 12px; color: var(--gray); }
.search-result-price { font-size: 14px; font-weight: 700; color: var(--pink-primary); flex-shrink: 0; }
.search-no-result { padding: 20px; text-align: center; color: var(--gray); font-size: 14px; }

/* ==========================================
   LIGHTBOX CSS - FULL FEATURED
   ========================================== */
.lightbox-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }

.lightbox-container {
    position: relative;
    max-width: 90vw; max-height: 90vh;
    display: flex; align-items: center; justify-content: center;
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox-overlay.active .lightbox-container { transform: scale(1); }

.lightbox-image {
    max-width: 90vw; max-height: 85vh;
    border-radius: 12px; box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    object-fit: contain; display: block;
    transition: transform 0.3s ease;
}
.lightbox-image.zoomed { transform: scale(1.8); cursor: zoom-out; }
.lightbox-container:not(.zoomed) .lightbox-image { cursor: zoom-in; }

/* Close Button */
.lightbox-close {
    position: fixed; top: 20px; right: 20px;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white; font-size: 22px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); z-index: 10;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); transform: rotate(90deg); }

/* Navigation Arrows */
.lightbox-nav {
    position: fixed; top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white; font-size: 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); z-index: 10;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Image Counter */
.lightbox-counter {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
    background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
    color: white; padding: 8px 20px; border-radius: var(--radius-xl);
    font-size: 14px; font-weight: 500; z-index: 10;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Loading Spinner */
.lightbox-spinner {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    z-index: 5;
}
.lightbox-spinner::before {
    content: '';
    width: 40px; height: 40px; border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: var(--pink-primary);
    animation: lb-spin 0.8s linear infinite;
}
@keyframes lb-spin { to { transform: rotate(360deg); } }

/* Lightbox Mobile */
@media (max-width: 768px) {
    .lightbox-nav { width: 42px; height: 42px; font-size: 16px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 18px; }
    .lightbox-image { max-height: 75vh; border-radius: 8px; }
    .lightbox-counter { bottom: 16px; font-size: 12px; padding: 6px 14px; }
}

/* Legacy lightbox support (for JS-created elements) */
#globalLightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.88); z-index: 9999;
    align-items: center; justify-content: center;
    cursor: zoom-out; backdrop-filter: blur(10px);
}
#globalLightbox[style*="display: flex"],
#globalLightbox[style*="display:flex"] {
    animation: lb-fade-in 0.35s ease;
}
@keyframes lb-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
#lbImage {
    max-width: 90vw; max-height: 90vh;
    border-radius: 12px; box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    object-fit: contain; transition: transform 0.3s ease;
}

/* ==========================================
   ACCOUNT PAGE CSS
   ========================================== */
.account-section { padding: 40px 0; background: var(--pink-soft); min-height: 80vh; }
.account-layout { display: grid; grid-template-columns: 280px 1fr; gap: 30px; }

/* Account Sidebar */
.account-sidebar { position: sticky; top: 100px; height: fit-content; }

/* Account User Card */
.account-user-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 28px;
    text-align: center; box-shadow: var(--shadow-sm);
    margin-bottom: 16px; border: 1px solid rgba(233,30,140,0.06);
}
.account-avatar {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-light));
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 32px; margin: 0 auto 12px;
    color: white; box-shadow: 0 4px 15px rgba(233,30,140,0.25);
    position: relative;
}
.account-avatar::after {
    content: ''; position: absolute; inset: -3px; border-radius: 50%;
    border: 2px solid var(--pink-light); opacity: 0.5;
}
.account-user-card h3 { font-size: 16px; color: var(--dark); margin-bottom: 4px; font-weight: 700; }
.account-user-card p { font-size: 12px; color: var(--gray-light); }

/* Account Nav */
.account-nav {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
    border: 1px solid rgba(233,30,140,0.06);
}
.account-nav-item {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 20px; color: var(--dark-light); text-decoration: none;
    font-size: 14px; border-left: 3px solid transparent;
    transition: all 0.25s ease; position: relative;
}
.account-nav-item:hover { background: var(--pink-soft); color: var(--pink-primary); padding-left: 24px; }
.account-nav-item.active {
    background: var(--pink-soft); color: var(--pink-primary);
    border-left-color: var(--pink-primary); font-weight: 600;
}
.account-nav-item.logout { color: var(--danger); border-top: 1px solid rgba(0,0,0,0.05); }
.account-nav-item.logout:hover { background: #fff5f5; padding-left: 24px; }
.badge-count {
    background: var(--danger); color: white; font-size: 11px;
    padding: 2px 8px; border-radius: 10px; margin-left: auto;
    font-weight: 700;
}

/* Account Content */
.account-content { min-height: 400px; }
.account-panel {
    background: var(--white); border-radius: var(--radius-lg); padding: 30px;
    box-shadow: var(--shadow-sm); border: 1px solid rgba(233,30,140,0.06);
}
.account-panel h2 { font-size: 20px; color: var(--dark); margin-bottom: 20px; font-weight: 700; }
.panel-desc { color: var(--gray); font-size: 14px; margin-bottom: 16px; }
.panel-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.panel-header-row h2 { margin-bottom: 0; }

/* Order Cards */
.order-card {
    border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-md);
    padding: 18px; margin-bottom: 12px; transition: all 0.3s ease;
    background: var(--white);
}
.order-card:hover {
    border-color: var(--pink-light);
    box-shadow: 0 4px 15px rgba(233,30,140,0.08);
    transform: translateY(-1px);
}
.order-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.order-id { font-weight: 700; color: var(--pink-primary); font-size: 15px; }
.order-status { color: white; padding: 3px 12px; border-radius: var(--radius-xl); font-size: 12px; font-weight: 600; }
.order-status.sm { font-size: 11px; padding: 2px 8px; }
.order-date { margin-left: auto; color: var(--gray-light); font-size: 13px; }
.order-card-body { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.order-product-info { display: flex; align-items: center; gap: 12px; }
.order-thumb { width: 52px; height: 52px; object-fit: cover; border-radius: var(--radius-sm); }
.order-thumb-placeholder {
    width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
    background: var(--pink-soft); border-radius: var(--radius-sm); font-size: 24px;
}

/* Ticket Cards */
.ticket-card {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 18px; border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md); margin-bottom: 10px;
    text-decoration: none; color: inherit; transition: all 0.3s ease;
    background: var(--white);
}
.ticket-card:hover {
    border-color: var(--pink-light); background: var(--pink-soft);
    transform: translateX(4px);
}
.ticket-card-left { display: flex; align-items: center; gap: 12px; }
.ticket-id { font-weight: 700; color: var(--pink-primary); font-size: 14px; }
.ticket-subject { font-size: 14px; color: var(--dark); }
.ticket-card-right { display: flex; align-items: center; gap: 10px; }
.ticket-date { color: var(--gray-light); font-size: 12px; }

/* Tracking Form */
.tracking-form-inline { display: flex; gap: 10px; margin-bottom: 24px; }
.tracking-form-inline input {
    flex: 1; padding: 12px 18px; border: 2px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md); font-size: 15px; transition: var(--transition);
}
.tracking-form-inline input:focus { border-color: var(--pink-primary); outline: none; box-shadow: 0 0 0 3px rgba(233,30,140,0.08); }

.quick-order-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-sm); margin-bottom: 8px;
    text-decoration: none; color: inherit; transition: all 0.25s ease;
}
.quick-order-item:hover { border-color: var(--pink-light); background: var(--pink-soft); transform: translateX(4px); }
.qo-id { font-weight: 700; color: var(--pink-primary); min-width: 40px; }
.qo-product { flex: 1; font-size: 14px; }

/* Profile Form */
.profile-form .form-group { margin-bottom: 18px; }
.profile-form label { display: block; font-weight: 600; font-size: 14px; color: var(--dark-light); margin-bottom: 6px; }
.profile-form input, .profile-form textarea {
    width: 100%; padding: 11px 16px; border: 2px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-sm); font-size: 14px; transition: var(--transition);
    font-family: var(--font-main);
}
.profile-form input:focus, .profile-form textarea:focus {
    border-color: var(--pink-primary); outline: none;
    box-shadow: 0 0 0 3px rgba(233,30,140,0.08);
}
.profile-form small { color: var(--gray-light); font-size: 12px; margin-top: 4px; display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* Empty State (Account) */
.empty-state { text-align: center; padding: 50px 20px; }
.empty-icon { font-size: 52px; display: block; margin-bottom: 12px; }
.empty-state p { color: var(--gray); margin-bottom: 20px; font-size: 15px; }

/* Auth Alerts */
.auth-alert { padding: 14px 18px; border-radius: var(--radius-md); margin-bottom: 20px; font-size: 14px; }
.auth-alert.error { background: #ffeaea; color: #c62828; border: 1px solid #ffcdd2; }
.auth-alert.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }

/* ==========================================
   AUTH PAGE CSS (Login / Register)
   ========================================== */
.auth-section { min-height: 80vh; display: flex; align-items: center; padding: 40px 0; }
.auth-card {
    max-width: 420px; margin: 0 auto; background: var(--white);
    border-radius: var(--radius-lg); padding: 40px;
    box-shadow: 0 10px 40px rgba(233,30,140,0.1);
    border: 1px solid rgba(233,30,140,0.06);
}
.auth-header { text-align: center; margin-bottom: 30px; }
.auth-icon { font-size: 48px; display: block; margin-bottom: 10px; }
.auth-header h1 { color: var(--pink-primary); font-size: 24px; margin-bottom: 5px; font-weight: 700; }
.auth-header p { color: var(--gray); font-size: 14px; }
.auth-form .form-group { margin-bottom: 18px; }
.auth-form label { display: block; margin-bottom: 6px; font-weight: 600; color: var(--dark-light); font-size: 14px; }
.auth-form input[type="email"], .auth-form input[type="password"], .auth-form input[type="text"], .auth-form input[type="tel"] {
    width: 100%; padding: 12px 16px; border: 2px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md); font-size: 15px; transition: var(--transition);
}
.auth-form input:focus { border-color: var(--pink-primary); outline: none; box-shadow: 0 0 0 3px rgba(233,30,140,0.08); }
.auth-footer { text-align: center; margin-top: 20px; color: var(--gray); font-size: 14px; }
.auth-footer a { color: var(--pink-primary); font-weight: 600; text-decoration: none; }
.auth-footer a:hover { text-decoration: underline; }

/* ==========================================
   CUSTOMER ACCOUNT BUTTON - ELEGANT STYLE
   ========================================== */
.btn-customer-login, .btn-customer-account {
    display: flex; align-items: center; gap: 6px; padding: 7px 16px;
    border-radius: var(--radius-xl); font-size: 13px; font-weight: 600;
    text-decoration: none; transition: var(--transition);
    letter-spacing: 0.3px;
}
.btn-customer-login {
    background: transparent; color: var(--dark-light);
    border: 1.5px solid var(--gray-lighter);
}
.btn-customer-login:hover {
    border-color: var(--pink-primary); color: var(--pink-primary);
    background: var(--pink-soft);
}
.btn-customer-login:hover .header-user-icon { fill: var(--pink-primary); }
.btn-customer-account {
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
    color: var(--white); border: none;
}
.btn-customer-account:hover { background: linear-gradient(135deg, var(--pink-dark), var(--pink-deeper)); transform: translateY(-1px); }
.customer-name { max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.header-user-icon { transition: var(--transition); flex-shrink: 0; }

/* ==============================
   RESPONSIVE DESIGN
   ============================== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { gap: 40px; }
    .products-showcase { grid-template-columns: repeat(2, 1fr); }
    .categories-showcase { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .header-search { display: none; } /* hidden since search removed */
    .header-inner { height: 58px; gap: 10px; }

    .main-nav {
        position: fixed; top: 0; right: -300px; width: 280px; height: 100vh;
        background: var(--white); flex-direction: column; padding: 0;
        box-shadow: var(--shadow-lg); transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999; gap: 0; overflow-y: auto; overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .main-nav.open { right: 0; }
    .main-nav .nav-link {
        display: flex !important; align-items: center !important; gap: 12px !important;
        width: 100%; padding: 14px 20px; font-size: 15px; font-weight: 500;
        border-bottom: 1px solid rgba(0,0,0,0.04); color: var(--dark-light);
        transition: all 0.2s ease;
    }
    .main-nav .nav-link:hover, .main-nav .nav-link:active {
        background: var(--pink-soft); color: var(--pink-primary);
    }
    .main-nav .nav-link::after { display: none; }
    .main-nav .nav-link.active { background: var(--pink-soft); color: var(--pink-primary); }
    .main-nav .nav-icon {
        opacity: 0.6; width: 20px; height: 20px; flex-shrink: 0;
        transition: opacity 0.2s ease;
    }
    .main-nav .nav-link:hover .nav-icon, .main-nav .nav-link.active .nav-icon { opacity: 1; }
    .main-nav .nav-link span { white-space: nowrap; line-height: 1; }

    .nav-dropdown .dropdown-menu {
        position: static; box-shadow: none; padding: 0 0 0 16px; border-radius: 0;
        background: var(--pink-soft); min-width: auto;
    }
    .nav-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
    .nav-dropdown .dropdown-toggle {
        display: flex !important; align-items: center !important; gap: 12px !important;
        border-bottom: 1px solid rgba(0,0,0,0.04); width: 100%; text-align: left;
        padding: 14px 20px; font-size: 15px; font-weight: 500;
    }
    .dropdown-menu a {
        display: flex !important; align-items: center !important; gap: 8px;
        padding: 12px 20px; font-size: 14px;
    }
    .dropdown-menu a::before { width: 4px; height: 4px; flex-shrink: 0; }

    /* Mobile menu header inside nav */
    .mobile-nav-header {
        display: flex !important; align-items: center; justify-content: space-between;
        padding: 18px 20px; margin-bottom: 0;
        border-bottom: 2px solid var(--pink-light);
        background: linear-gradient(135deg, var(--pink-soft), var(--pink-lighter));
        position: sticky; top: 0; z-index: 10;
    }
    .mobile-nav-logo {
        display: flex; align-items: center; gap: 10px;
        font-size: 18px; font-weight: 800; color: var(--pink-primary);
        letter-spacing: -0.3px;
    }
    .mobile-nav-logo svg { flex-shrink: 0; }

    .mobile-menu-btn { display: flex; }
    .mobile-search-toggle { display: none; } /* search removed */

    .hero-slider { height: 400px; }
    .slide-title { font-size: 30px; }
    .slide-subtitle { font-size: 16px; }

    .section { padding: 50px 0; }
    .section-header h2 { font-size: 28px; }

    .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
    .products-showcase { grid-template-columns: 1fr 1fr; gap: 16px; }

    /* Product card mobile fixes */
    .showcase-content { padding: 14px; }
    .showcase-content h3 { font-size: 15px; }
    .showcase-excerpt { font-size: 13px; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .showcase-footer { flex-direction: column; align-items: stretch; gap: 8px; }
    .showcase-price { justify-content: center; }
    .showcase-footer .btn-add-to-cart { width: 100%; justify-content: center; }

    .product-content { padding: 14px; }
    .product-content h3 { font-size: 15px; }
    .product-excerpt { font-size: 13px; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .product-footer { flex-direction: column; align-items: stretch; gap: 8px; }
    .product-footer .price-group { justify-content: center; }
    .product-footer .btn-order { width: 100%; text-align: center; justify-content: center; }

    /* btn-order always visible on mobile (no hover) */
    .product-card .btn-order,
    .showcase-card .btn-order {
        transform: translateY(0); opacity: 1;
    }

    .categories-showcase { grid-template-columns: 1fr 1fr; }

    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-placeholder-img { height: 280px; }

    .product-detail-grid { grid-template-columns: 1fr; gap: 24px; }
    .product-detail-image img { height: 350px; }
    .detail-title { font-size: 24px; }
    .detail-price { font-size: 22px; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .filter-bar-frontend { flex-direction: column; }
    .filter-bar-frontend input, .filter-bar-frontend select { width: 100%; }

    .hero-static h1 { font-size: 30px; }
    .hero-static p { font-size: 16px; }

    .blog-grid-home { grid-template-columns: 1fr; }

    /* Story responsive */
    .stories-bar { padding: 12px 0; }
    .story-ring { width: 60px; height: 60px; }
    .story-title { font-size: 11px; max-width: 60px; }

    /* Account responsive */
    .account-layout { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
    .account-nav { display: flex; overflow-x: auto; gap: 0; scrollbar-width: none; }
    .account-nav::-webkit-scrollbar { display: none; }
    .account-nav-item {
        white-space: nowrap; border-left: none;
        border-bottom: 2px solid transparent; padding: 10px 14px; font-size: 13px;
    }
    .account-nav-item.active { border-bottom-color: var(--pink-primary); }
    .form-row { grid-template-columns: 1fr; }
    .tracking-form-inline { flex-direction: column; }
    .order-card-body { flex-direction: column; align-items: flex-start; }

    /* Customer button mobile - circle icon style */
    .btn-customer-login .login-text, .btn-customer-account .customer-name { display: none; }
    .btn-customer-login, .btn-customer-account {
        padding: 0; border-radius: 50%; width: 38px; height: 38px;
        justify-content: center; min-width: 38px;
        background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
        color: var(--white); position: relative;
        box-shadow: 0 2px 10px rgba(233,30,140,0.25);
    }
    .btn-customer-login::after, .btn-customer-account::after {
        content: ''; position: absolute; inset: -3px; border-radius: 50%;
        border: 2px solid var(--pink-light); opacity: 0.5;
    }
    .btn-customer-login:hover, .btn-customer-account:hover {
        background: linear-gradient(135deg, var(--pink-dark), var(--pink-deeper));
        color: var(--white); transform: scale(1.08);
    }
    .btn-customer-login .header-user-icon, .btn-customer-account .header-user-icon {
        fill: white; width: 20px; height: 20px;
    }

    /* Header actions mobile - ensure proper vertical alignment */
    .header-actions {
        display: flex; align-items: center; gap: 8px; flex-shrink: 0;
    }
    /* WhatsApp button hidden on mobile - removed from HTML */

    /* Showcase overlay mobile - removed from HTML, no overlay to show */

    /* Product card image height mobile */
    .showcase-image-wrap { height: 200px; }
    .product-image-wrap { height: 200px; }

    /* Product price mobile */
    .product-price { font-size: 17px; }
    .old-price { font-size: 13px; }
    .old-price-small { font-size: 11px; }

    /* Announce bar mobile */
    .header-announce { font-size: 11px; padding: 6px 0; }
    .announce-text { display: none; }
    .announce-text-mobile { display: inline; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .header-inner { height: 54px; gap: 8px; }
    .logo { font-size: 18px; gap: 8px; }
    .logo-icon-wrap { width: 34px; height: 34px; border-radius: 8px; }
    .logo-icon-wrap svg { width: 20px; height: 20px; }
    .logo-text { font-size: 15px; }
    .logo-tagline { display: none; }
    .logo img { height: 34px; }

    /* Mobile login button pink circle 480px */
    .btn-customer-login, .btn-customer-account {
        width: 34px; height: 34px; min-width: 34px;
        background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark)) !important;
        border: none !important; border-radius: 50%;
        box-shadow: 0 2px 8px rgba(233,30,140,0.3);
    }
    .btn-customer-login::after, .btn-customer-account::after {
        inset: -2px; border-width: 1.5px;
    }
    .btn-customer-login .header-user-icon, .btn-customer-account .header-user-icon {
        fill: white !important; width: 18px; height: 18px;
    }

    /* Hero */
    .hero-slider { height: 350px; }
    .slide-title { font-size: 24px; }
    .slide-subtitle { font-size: 14px; margin-bottom: 20px; }
    .btn-hero { padding: 12px 28px; font-size: 14px; }

    /* Product grid mobile - 2 columns on small mobile for compact cards */
    .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .products-showcase { grid-template-columns: 1fr; gap: 16px; }

    /* Card image compact */
    .showcase-image-wrap { height: 200px; }
    .product-image-wrap { height: 180px; }
    .discount-card-image { height: 200px; }

    /* Card content compact */
    .showcase-content { padding: 12px; }
    .showcase-content h3 { font-size: 15px; }
    .product-content { padding: 12px; }
    .product-content h3 { font-size: 14px; }
    .product-price { font-size: 16px; }

    /* Button fixes - full width on very small screens */
    .btn-add-to-cart { padding: 10px 16px; font-size: 13px; width: 100%; justify-content: center; }
    .btn-add-to-cart::before { display: none; }
    .product-footer .btn-order { padding: 10px 16px; font-size: 13px; width: 100%; text-align: center; justify-content: center; }
    .showcase-footer .btn-add-to-cart { width: 100%; }

    /* Categories */
    .categories-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .categories-showcase { grid-template-columns: 1fr; gap: 12px; }
    .category-showcase-image { height: 160px; }
    .category-icon { font-size: 32px; }
    .category-card h3 { font-size: 14px; }
    .discount-grid { grid-template-columns: 1fr; }

    /* Product detail */
    .product-detail-image img { height: 260px; }
    .product-placeholder.large { height: 260px; font-size: 64px; }

    /* WhatsApp float */
    .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
    .whatsapp-float svg { width: 24px; height: 24px; }

    .contact-info-cards { grid-template-columns: 1fr; }

    /* Story mobile */
    .story-ring { width: 54px; height: 54px; }
    .story-title { font-size: 10px; max-width: 54px; }

    /* Account mobile */
    .account-panel { padding: 20px 16px; }
    .account-user-card { padding: 20px; }

    /* Auth mobile */
    .auth-card { padding: 25px 20px; }
}

body.menu-open { overflow: hidden; }

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
    position: fixed; bottom: 95px; right: 25px; width: 44px; height: 44px;
    border-radius: 50%; background: var(--pink-primary); color: white;
    border: none; font-size: 18px; cursor: pointer; opacity: 0;
    visibility: hidden; transition: all 0.3s; z-index: 998;
    box-shadow: 0 4px 15px rgba(233,30,140,0.3);
    display: flex; align-items: center; justify-content: center;
}
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(233,30,140,0.4); }

/* ==========================================
   PRODUCT DETAIL - ENHANCED STYLES
   ========================================== */
.product-detail-section { padding-top: 20px; }
.product-detail-images { position: sticky; top: 95px; }

.detail-main-image {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    background: var(--pink-soft); cursor: zoom-in; min-height: 450px;
    display: flex; align-items: center; justify-content: center;
}
.detail-main-image img {
    width: 100%; height: 450px; object-fit: cover;
    transition: transform 0.4s ease;
}
.detail-main-image:hover img { transform: scale(1.03); }
.detail-main-image .product-placeholder.large { height: 450px; width: 100%; }

/* Badge container on detail image - prevents overlap */
.detail-badges-container {
    position: absolute; top: 12px; left: 12px;
    display: flex; flex-direction: column; gap: 8px;
    z-index: 5; max-width: calc(100% - 80px);
}
/* Badges on detail image */
.detail-main-image .discount-badge,
.detail-main-image .new-badge,
.detail-main-image .bestseller-badge {
    position: relative; top: auto; left: auto; right: auto;
    padding: 6px 14px; border-radius: var(--radius-xl);
    font-size: 11px; font-weight: 700; z-index: 2; letter-spacing: 0.5px;
    white-space: nowrap; display: inline-flex; align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.discount-badge-enhanced { background: var(--danger); color: white; }
.new-badge { background: var(--info); color: white; }
.bestseller-badge { background: var(--warning); color: white; }

/* Gallery thumbnails */
.detail-gallery {
    display: flex; gap: 10px; margin-top: 14px; overflow-x: auto;
    scrollbar-width: none; -ms-overflow-style: none;
}
.detail-gallery::-webkit-scrollbar { display: none; }
.gallery-thumb {
    width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden;
    cursor: pointer; border: 2px solid var(--gray-lighter); flex-shrink: 0;
    transition: var(--transition); opacity: 0.7;
}
.gallery-thumb:hover { opacity: 1; border-color: var(--pink-light); }
.gallery-thumb.active { border-color: var(--pink-primary); opacity: 1; box-shadow: 0 0 0 2px rgba(233,30,140,0.2); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Detail info area */
.product-detail-info { display: flex; flex-direction: column; gap: 0; }
.detail-title { font-size: 28px; font-weight: 800; color: var(--dark); line-height: 1.3; margin-bottom: 12px; }

/* Stats badges */
.product-stats-badges {
    display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px;
}
.stat-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 12px; border-radius: var(--radius-xl);
    font-size: 12px; font-weight: 500;
}
.stat-badge-icon { font-size: 14px; }
.stat-views { background: #e8eaf6; color: #3949ab; }
.stat-live { background: #e8f5e9; color: #2e7d32; }
.stat-sold { background: #fff3e0; color: #e65100; }

/* Price row */
.detail-price-row {
    display: flex; align-items: baseline; gap: 12px;
    margin-bottom: 16px; padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-lighter);
}
.detail-price { font-size: 32px; font-weight: 800; color: var(--pink-primary); }
.detail-old-price { font-size: 18px; color: var(--gray-light); text-decoration: line-through; }

/* Discount display enhanced */
.discount-display-enhanced {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    padding: 12px 16px; background: linear-gradient(135deg, #fff5f5, #fce4ec);
    border-radius: var(--radius-sm); margin-bottom: 20px;
    border: 1px solid rgba(233,30,140,0.1);
}
.discount-percent-pill {
    background: var(--danger); color: white; padding: 4px 12px;
    border-radius: var(--radius-xl); font-size: 14px; font-weight: 700;
}
.discount-savings { font-size: 14px; color: var(--dark-light); }
.discount-savings strong { color: var(--pink-primary); }
.discount-type-badge {
    background: var(--pink-soft); color: var(--pink-primary);
    padding: 4px 12px; border-radius: var(--radius-xl); font-size: 12px; font-weight: 600;
}

/* Variant/Option selection areas */
.variant-selection-area,
.option-selection-area {
    margin-bottom: 20px; padding: 16px;
    background: var(--pink-soft); border-radius: var(--radius-md);
    border: 1px solid rgba(233,30,140,0.08);
}
.variant-group { margin-bottom: 14px; }
.variant-group:last-child { margin-bottom: 0; }
.variant-group-label {
    display: block; font-size: 14px; font-weight: 600;
    color: var(--dark-light); margin-bottom: 10px;
}
.option-required-tag { color: var(--danger); font-size: 12px; font-weight: 500; }
.variant-options { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-option { position: relative; }
.variant-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.variant-option-label {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: var(--radius-xl);
    border: 1.5px solid var(--gray-lighter); background: var(--white);
    cursor: pointer; font-size: 13px; transition: var(--transition);
    white-space: nowrap;
}
.variant-option input:checked + .variant-option-label {
    border-color: var(--pink-primary); background: var(--pink-lighter);
    color: var(--pink-primary); font-weight: 600;
    box-shadow: 0 0 0 2px rgba(233,30,140,0.1);
}
.variant-option input:disabled + .variant-option-label {
    opacity: 0.5; cursor: not-allowed; text-decoration: line-through;
}
.variant-price-adjustment { font-size: 11px; color: var(--pink-dark); font-weight: 500; }
.variant-oos-tag { font-size: 10px; color: var(--danger); font-weight: 600; }
.variant-out-of-stock .variant-option-label { opacity: 0.5; }

/* Option text input */
.option-text-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.option-text-input {
    flex: 1; padding: 10px 14px; border: 1.5px solid var(--gray-lighter);
    border-radius: var(--radius-sm); font-size: 14px; outline: none;
    transition: var(--transition);
}
.option-text-input:focus { border-color: var(--pink-primary); box-shadow: 0 0 0 3px rgba(233,30,140,0.08); }
.option-adj-text { white-space: nowrap; }

/* Quick info */
.detail-quick-info {
    display: flex; gap: 16px; flex-wrap: wrap;
    padding: 14px 16px; background: #f8f9fa;
    border-radius: var(--radius-sm); margin-bottom: 20px;
}
.quick-info-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--dark-light);
}
.quick-icon { font-size: 18px; }
.quick-info-item strong { color: var(--dark); }

/* Detail tabs */
.detail-tabs {
    display: flex; gap: 4px; margin-bottom: 20px;
    border-bottom: 2px solid var(--gray-lighter); padding-bottom: 0;
}
.tab-btn {
    padding: 10px 20px; border: none; background: none;
    cursor: pointer; font-size: 14px; font-weight: 500;
    color: var(--gray); transition: var(--transition);
    border-bottom: 2px solid transparent; margin-bottom: -2px;
    font-family: inherit;
}
.tab-btn:hover { color: var(--pink-primary); }
.tab-btn.active {
    color: var(--pink-primary); border-bottom-color: var(--pink-primary);
    font-weight: 600;
}
.tab-content { display: none; animation: fadeInTab 0.3s ease; }
@keyframes fadeInTab { from { opacity: 0; } to { opacity: 1; } }
.detail-text { font-size: 15px; color: var(--gray); line-height: 1.8; }

/* Allergen grid */
.allergen-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; margin-bottom: 16px; }
.allergen-card {
    display: flex; flex-direction: column; align-items: center;
    padding: 14px; border-radius: var(--radius-sm); text-align: center; gap: 6px;
}
.allergen-contains { background: #ffebee; border: 1px solid #ffcdd2; }
.allergen-may-contain { background: #fff8e1; border: 1px solid #ffe082; }
.allergen-free { background: #e8f5e9; border: 1px solid #a5d6a7; }
.allergen-icon { font-size: 24px; }
.allergen-name { font-size: 13px; font-weight: 600; color: var(--dark); }
.allergen-severity-label { font-size: 11px; font-weight: 500; }
.allergen-info-text {
    padding: 12px 16px; background: #fff3e0; border-radius: var(--radius-sm);
    margin-bottom: 12px; font-size: 13px; color: #e65100;
    display: flex; gap: 8px; align-items: flex-start;
}
.allergen-info-icon { font-size: 16px; flex-shrink: 0; }
.allergen-legend { display: flex; gap: 16px; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.legend-dot-contains { background: #ef4444; }
.legend-dot-may-contain { background: #f59e0b; }
.legend-dot-free { background: #22c55e; }

/* Delivery info */
.delivery-info { display: flex; flex-direction: column; gap: 14px; }
.delivery-item { display: flex; gap: 12px; align-items: flex-start; }
.delivery-icon { font-size: 24px; flex-shrink: 0; }
.delivery-item strong { display: block; font-size: 14px; margin-bottom: 3px; }
.delivery-item p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* Side banners */
.product-side-banners { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.side-banner-item {
    display: flex; gap: 10px; padding: 12px;
    background: linear-gradient(135deg, var(--pink-lighter), var(--pink-soft));
    border-radius: var(--radius-sm); align-items: center;
    border: 1px solid rgba(233,30,140,0.08);
}
.side-banner-link { display: flex; gap: 10px; align-items: center; width: 100%; }
.side-banner-img { width: 60px; height: 60px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.side-banner-content { flex: 1; }
.side-banner-title { display: block; font-size: 14px; color: var(--dark); margin-bottom: 2px; }
.side-banner-subtitle { font-size: 12px; color: var(--gray); }
.side-banner-btn {
    display: inline-block; font-size: 12px; font-weight: 600;
    color: var(--pink-primary); margin-top: 4px;
}

/* Order area */
.detail-order-area { margin-top: 24px; }
.order-form-compact {
    background: linear-gradient(135deg, var(--pink-soft), #fce4ec);
    border-radius: var(--radius-lg); padding: 24px;
    border: 1px solid rgba(233,30,140,0.1);
}
.order-compact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group-compact { margin-bottom: 0; }
.form-group-compact input {
    width: 100%; padding: 11px 16px; border: 1.5px solid var(--gray-lighter);
    border-radius: var(--radius-sm); font-size: 14px; outline: none;
    transition: var(--transition); background: var(--white);
}
.form-group-compact input:focus { border-color: var(--pink-primary); box-shadow: 0 0 0 3px rgba(233,30,140,0.08); }
.qty-input {
    display: flex; align-items: center; gap: 0;
    background: var(--white); border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-lighter); overflow: hidden;
}
.qty-input button {
    width: 40px; height: 42px; border: none; background: var(--gray-bg);
    cursor: pointer; font-size: 18px; transition: var(--transition);
    color: var(--dark-light);
}
.qty-input button:hover { background: var(--pink-lighter); color: var(--pink-primary); }
.qty-input input {
    width: 50px; text-align: center; border: none; border-radius: 0;
    font-weight: 600; -moz-appearance: textfield;
}
.qty-input input::-webkit-outer-spin-button,
.qty-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Order total display */
.order-total-display {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 16px; background: var(--white);
    border-radius: var(--radius-sm); margin-bottom: 14px;
    border: 1px solid rgba(233,30,140,0.1);
}
.order-total-label { font-size: 15px; color: var(--dark-light); }
.order-total-price { font-size: 24px; font-weight: 800; color: var(--pink-primary); }

/* Order buttons */
.order-buttons { display: flex; gap: 10px; }
.order-buttons .btn { flex: 1; justify-content: center; }

/* Customer login link */
.customer-login-link {
    display: block; text-align: center; margin-top: 10px;
    font-size: 13px; color: var(--gray);
}
.customer-login-link a { color: var(--pink-primary); font-weight: 600; }

/* Similar products grid on detail page */
.similar-products .products-grid { grid-template-columns: repeat(4, 1fr); }

/* Responsive */
@media (max-width: 992px) {
    .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
    .product-detail-images { position: static; }
    .detail-main-image img { height: 350px; }
    .detail-main-image { min-height: 350px; }
    .similar-products .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .detail-title { font-size: 22px; }
    .detail-price { font-size: 26px; }
    .order-compact-row { grid-template-columns: 1fr; }
    .detail-gallery .gallery-thumb { width: 56px; height: 56px; }
    .similar-products .products-grid { grid-template-columns: 1fr; }
    .variant-options { gap: 6px; }
    .variant-option-label { padding: 6px 12px; font-size: 12px; }
}

/* (Duplicate section removed - login/account buttons already defined above) */

/* ==========================================
   NEW IMPROVEMENTS - ALL TASKS
   ========================================== */

/* ---- Mobile Search Toggle Button - REMOVED ---- */
.mobile-search-toggle { display: none !important; }

/* ---- Mobile Search Container - REMOVED ---- */
.header-search-mobile { display: none !important; }

/* ---- Header Announce Bar ---- */
.header-announce {
    background: linear-gradient(90deg, var(--pink-primary), var(--pink-dark), var(--pink-primary));
    background-size: 200% 100%;
    animation: announce-shimmer 6s ease-in-out infinite;
    color: var(--white); padding: 7px 0; font-size: 12.5px;
    position: relative; z-index: 99;
}
@keyframes announce-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.announce-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; flex-wrap: nowrap; overflow: hidden;
}
.announce-icon { font-size: 14px; flex-shrink: 0; }
.announce-text { font-weight: 500; letter-spacing: 0.2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.announce-text-mobile { display: none; font-weight: 500; font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.announce-link {
    background: rgba(255,255,255,0.2); padding: 3px 14px;
    border-radius: var(--radius-xl); font-weight: 600; font-size: 12px;
    transition: var(--transition); white-space: nowrap; flex-shrink: 0;
}
.announce-link:hover { background: rgba(255,255,255,0.35); }

/* ---- Header Scrolled Compact ---- */
.header.scrolled .header-inner { height: 58px; }
.header.scrolled .logo img { height: 36px; }
.header.scrolled .logo-icon-wrap { width: 36px; height: 36px; }
.header.scrolled .logo-text { font-size: 16px; }
.header.scrolled .logo-tagline { display: none; }

/* ---- Customer Login/Account - More Prominent on Desktop ---- */
.btn-customer-login {
    background: linear-gradient(135deg, var(--pink-lighter), var(--pink-soft));
    border: 1.5px solid var(--pink-light); box-shadow: 0 2px 8px rgba(233,30,140,0.08);
}
.btn-customer-login:hover {
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
    border-color: var(--pink-primary); box-shadow: 0 4px 16px rgba(233,30,140,0.2);
    transform: translateY(-1px);
}
.btn-customer-account {
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
    box-shadow: 0 2px 10px rgba(233,30,140,0.2);
}
.btn-customer-account:hover {
    box-shadow: 0 4px 18px rgba(233,30,140,0.3); transform: translateY(-1px);
}

/* ---- Mobile Menu - Smooth Slide from Right ---- */
@media (max-width: 768px) {
    .main-nav {
        position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
        background: var(--white); flex-direction: column;
        padding: 0; box-shadow: -4px 0 30px rgba(0,0,0,0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999; gap: 0; overflow-y: auto;
    }
    .main-nav.open { right: 0; }
    .main-nav::before {
        content: 'Menu'; display: block; padding: 20px;
        font-size: 18px; font-weight: 700; color: var(--pink-primary);
        border-bottom: 2px solid var(--pink-lighter);
        background: var(--pink-soft); text-align: center;
    }
    .main-nav .nav-link { width: 100%; padding: 14px 20px; border-bottom: 1px solid #f5f5f5; }
}

/* ==========================================
   PRODUCT CARD IMPROVEMENTS
   ========================================== */

/* ---- Wishlist Heart Button - REMOVED from showcase cards ---- */
.card-wishlist-btn { display: none !important; }

/* ---- Quick View Eye Icon ---- */
.btn-quick-view {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    color: var(--pink-primary); transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-quick-view:hover {
    background: var(--pink-primary); color: var(--white);
    transform: scale(1.1);
}

/* ---- Gradient Shine Animation on Hover - REMOVED ---- */
.card-shine-effect { display: none !important; }

/* ---- Pink Left-Border Accent on Cards ---- */
.showcase-card:hover {
    border-left: 3px solid var(--pink-primary);
}

/* ---- Rating Stars ---- */
.card-rating-stars {
    display: flex; gap: 2px; margin-bottom: 6px;
}
.card-rating-stars .star {
    color: var(--gray-lighter); font-size: 14px; line-height: 1;
}
.card-rating-stars .star.filled {
    color: var(--gold);
}

/* ---- Add to Cart Button ---- */
.btn-add-to-cart {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 6px; padding: 8px 16px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 13px; border: none; cursor: pointer;
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
    color: var(--white); transition: var(--transition);
    box-shadow: 0 2px 8px rgba(233,30,140,0.15);
    white-space: nowrap; flex-shrink: 0;
}
.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(233,30,140,0.3);
}
.btn-add-to-cart::before {
    content: ''; width: 16px; height: 16px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain; flex-shrink: 0;
}

/* ==========================================
   CATEGORY COUNT BADGE
   ========================================== */
.category-count-badge {
    position: absolute; top: 12px; right: 12px; z-index: 3;
    background: rgba(233,30,140,0.9); color: var(--white);
    padding: 4px 12px; border-radius: var(--radius-xl);
    font-size: 12px; font-weight: 700;
    backdrop-filter: blur(4px); box-shadow: 0 2px 8px rgba(233,30,140,0.3);
    transition: var(--transition);
}
.category-showcase-card:hover .category-count-badge {
    background: var(--pink-primary); transform: scale(1.08);
}

/* Better category hover with slight rotation */
.category-showcase-card:hover .category-showcase-image img {
    transform: scale(1.1) rotate(1deg);
}

/* ==========================================
   DISCOUNT / FLASH SALE BADGES
   ========================================== */
.flash-sale-badge {
    position: absolute; top: 44px; left: 12px; z-index: 3;
    background: rgba(255,152,0,0.92); color: var(--white);
    padding: 4px 12px; border-radius: var(--radius-xl);
    font-size: 11px; font-weight: 700;
    display: flex; align-items: center; gap: 4px;
    backdrop-filter: blur(4px);
    animation: flash-pulse 2s infinite;
}
@keyframes flash-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

.discount-timer-badge {
    position: absolute; bottom: 12px; left: 12px; z-index: 3;
    background: rgba(0,0,0,0.7); color: var(--white);
    padding: 5px 12px; border-radius: var(--radius-sm);
    font-size: 11px; font-weight: 500;
    display: flex; align-items: center; gap: 5px;
    backdrop-filter: blur(4px);
}
.timer-icon { font-size: 12px; }
.timer-text { letter-spacing: 0.3px; }

/* ==========================================
   PRODUCT DETAIL IMPROVEMENTS
   ========================================== */

/* Image Zoom Overlay */
.image-zoom-overlay {
    position: absolute; top: 16px; right: 16px; z-index: 4;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition); cursor: pointer;
}
.detail-main-image:hover .image-zoom-overlay { opacity: 1; }

/* Image Count Badge */
.image-count-badge {
    position: absolute; bottom: 12px; right: 12px; z-index: 4;
    background: rgba(0,0,0,0.6); color: var(--white);
    padding: 5px 14px; border-radius: var(--radius-xl);
    font-size: 12px; font-weight: 500; backdrop-filter: blur(4px);
    display: flex; align-items: center; gap: 4px;
}

/* Click to Zoom Hint */
.image-click-hint {
    position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
    z-index: 4; background: rgba(233,30,140,0.85); color: var(--white);
    padding: 6px 16px; border-radius: var(--radius-xl);
    font-size: 12px; font-weight: 500; white-space: nowrap;
    opacity: 0; transition: opacity 0.3s ease;
    pointer-events: none; backdrop-filter: blur(4px);
}
.detail-main-image:hover .image-click-hint { opacity: 1; }

/* Gallery Scroll Wrapper with Arrows */
.detail-gallery {
    position: relative;
}
.gallery-scroll-wrapper {
    display: flex; gap: 8px; overflow-x: auto;
    scrollbar-width: none; -ms-overflow-style: none;
    scroll-behavior: smooth; padding: 4px 0;
}
.gallery-scroll-wrapper::-webkit-scrollbar { display: none; }

.gallery-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--white); border: 1px solid var(--gray-lighter);
    cursor: pointer; font-size: 14px; color: var(--dark-light);
    display: none; align-items: center; justify-content: center;
    z-index: 3; box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
@media (max-width: 768px) {
    .gallery-arrow { display: flex; }
}
.gallery-arrow:hover { background: var(--pink-primary); color: var(--white); border-color: var(--pink-primary); }
.gallery-arrow-left { left: 0; }
.gallery-arrow-right { right: 0; }

/* Better Gallery Thumb Active State */
.gallery-thumb.active {
    border-color: var(--pink-primary);
    box-shadow: 0 0 0 2px rgba(233,30,140,0.25), 0 2px 8px rgba(233,30,140,0.15);
}
.gallery-thumb::after {
    content: ''; position: absolute; inset: 0; border-radius: inherit;
    background: rgba(233,30,140,0.08); opacity: 0;
    transition: var(--transition);
}
.gallery-thumb:hover::after { opacity: 1; }

/* ==========================================
   VARIANT CHIP SELECTION - ENHANCED
   ========================================== */
.variant-option input:checked + .variant-option-label {
    border-color: var(--pink-primary) !important;
    background: linear-gradient(135deg, var(--pink-lighter), var(--pink-soft)) !important;
    color: var(--pink-primary);
    font-weight: 600;
    box-shadow: 0 0 0 3px rgba(233,30,140,0.15), 0 2px 8px rgba(233,30,140,0.1);
}
.variant-option input:checked + .variant-option-label::before {
    content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: inherit; border: 2px solid var(--pink-primary);
    animation: variant-glow 1.5s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes variant-glow {
    0% { box-shadow: 0 0 4px rgba(233,30,140,0.2); }
    100% { box-shadow: 0 0 12px rgba(233,30,140,0.35); }
}

/* Out of stock variants - more distinct */
.variant-option input:disabled + .variant-option-label {
    opacity: 0.45; cursor: not-allowed;
    background: var(--gray-bg) !important;
    border-color: var(--gray-lighter) !important;
    text-decoration: line-through;
    filter: grayscale(0.6);
}
.variant-option input:disabled + .variant-option-label:hover {
    border-color: var(--gray-lighter) !important;
    background: var(--gray-bg) !important;
}

/* ==========================================
   ORDER FORM IMPROVEMENTS
   ========================================== */

/* Quantity Selector - Enhanced */
.qty-input {
    display: flex; align-items: center; border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-lighter); overflow: hidden;
    background: var(--white);
}
.qty-input button {
    width: 38px; height: 40px; border: none;
    background: var(--pink-soft); cursor: pointer;
    font-size: 18px; font-weight: 600; color: var(--pink-primary);
    transition: var(--transition); display: flex;
    align-items: center; justify-content: center;
}
.qty-input button:hover {
    background: var(--pink-primary); color: var(--white);
}
.qty-input input {
    width: 48px; text-align: center; border: none;
    border-left: 1.5px solid var(--gray-lighter);
    border-right: 1.5px solid var(--gray-lighter);
    font-weight: 600; font-size: 15px; border-radius: 0;
    -moz-appearance: textfield; padding: 8px 4px;
}
.qty-input input::-webkit-outer-spin-button,
.qty-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* WhatsApp Order Button - More Prominent */
.order-form-compact .btn-whatsapp-lg {
    background: linear-gradient(135deg, #25d366, #128c7e);
    padding: 14px 28px; font-size: 15px; font-weight: 700;
    border-radius: var(--radius-md); letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.25);
    position: relative; overflow: hidden;
}
.order-form-compact .btn-whatsapp-lg::after {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    animation: wa-btn-shine 3s infinite;
}
@keyframes wa-btn-shine {
    0% { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(100%) rotate(25deg); }
}

/* Total Price Display */
.order-total-compact {
    font-size: 16px; color: var(--dark);
    padding: 10px 16px; background: var(--white);
    border-radius: var(--radius-sm); border: 1px solid rgba(233,30,140,0.1);
}
.order-total-compact strong {
    color: var(--pink-primary); font-size: 22px; font-weight: 800;
}

/* Form Fields - Enhanced */
.order-form-compact input,
.order-form-compact textarea {
    border: 1.5px solid var(--gray-lighter) !important;
    border-radius: var(--radius-sm) !important;
    padding: 11px 16px !important; font-size: 14px;
    transition: all 0.25s ease; background: var(--white) !important;
}
.order-form-compact input:focus,
.order-form-compact textarea:focus {
    border-color: var(--pink-primary) !important;
    box-shadow: 0 0 0 3px rgba(233,30,140,0.08) !important;
}

/* ==========================================
   TAB IMPROVEMENTS
   ========================================== */
.detail-tabs {
    position: relative; overflow-x: auto;
    scrollbar-width: none; -ms-overflow-style: none;
}
.detail-tabs::-webkit-scrollbar { display: none; }

.tab-indicator {
    position: absolute; bottom: 0; height: 3px;
    background: linear-gradient(90deg, var(--pink-primary), var(--gold));
    border-radius: 3px 3px 0 0; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.tab-btn { position: relative; z-index: 2; white-space: nowrap; }

/* Tab Content Transition */
.tab-content {
    animation: tab-fade-in 0.35s ease-out;
}
@keyframes tab-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   SIMILAR PRODUCTS - "Hepsini Gor" LINK
   ========================================== */
.similar-products .section-header {
    display: flex; flex-direction: column; align-items: center;
}
.similar-products .btn-outline-sm {
    display: inline-flex; margin-top: 12px;
}

/* ==========================================
   RESPONSIVE - NEW IMPROVEMENTS
   ========================================== */
@media (max-width: 768px) {
    .header-announce .announce-text { display: none; }
    .header-announce .announce-text-mobile { display: inline; }
    .card-wishlist-btn { opacity: 1; transform: scale(1); }
    .image-click-hint { display: none; }
    .image-count-badge { font-size: 11px; padding: 4px 10px; }
    .detail-main-image .image-zoom-overlay { opacity: 0.7; width: 36px; height: 36px; }
    .detail-main-image .image-zoom-overlay svg { width: 18px; height: 18px; }
    .flash-sale-badge { font-size: 10px; padding: 3px 8px; }
    .discount-timer-badge { font-size: 10px; padding: 4px 8px; }
    .card-rating-stars .star { font-size: 12px; }
    .card-rating-stars { margin-bottom: 4px; }

    /* Badge container mobile */
    .detail-badges-container { top: 8px; left: 8px; gap: 6px; max-width: calc(100% - 60px); }
    .detail-main-image .discount-badge,
    .detail-main-image .new-badge,
    .detail-main-image .bestseller-badge {
        font-size: 10px; padding: 4px 10px;
    }

    /* WhatsApp float mobile */
    .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
    .header-announce { display: flex; }
    .header-announce .announce-text-mobile { font-size: 10px; }
    .card-rating-stars { gap: 1px; }
    .card-rating-stars .star { font-size: 11px; }
    .btn-add-to-cart { padding: 10px 16px; font-size: 13px; width: 100%; justify-content: center; }
    .btn-add-to-cart::before { display: none; }
    .category-count-badge { font-size: 10px; padding: 3px 8px; }

    /* Badge container 480px */
    .detail-badges-container { top: 6px; left: 6px; gap: 5px; max-width: calc(100% - 50px); }
    .detail-main-image .discount-badge,
    .detail-main-image .new-badge,
    .detail-main-image .bestseller-badge {
        font-size: 9px; padding: 3px 8px; letter-spacing: 0.3px;
    }

    /* Product grid 480px */
    .products-grid { grid-template-columns: 1fr; }
    .products-showcase { grid-template-columns: 1fr; }
    .categories-showcase { grid-template-columns: 1fr 1fr; }
    .discount-grid { grid-template-columns: 1fr; }
    .blog-grid-home { grid-template-columns: 1fr; }

    /* Card content spacing */
    .showcase-content { padding: 12px; }
    .showcase-content h3 { font-size: 14px; }
    .product-content { padding: 12px; }
    .product-content h3 { font-size: 14px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer { padding: 40px 0 0; }
}
.customer-name { max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ==========================================
   TOAST NOTIFICATION (Frontend)
   ========================================== */
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 99999; display: flex; flex-direction: column; gap: 8px; }
.toast { padding: 14px 20px; border-radius: 10px; color: white; font-size: 14px; font-weight: 500; box-shadow: 0 4px 20px rgba(0,0,0,0.15); animation: toastSlideIn 0.3s ease; min-width: 260px; display: flex; align-items: center; gap: 10px; }
.toast.success { background: #4caf50; }
.toast.error { background: #f44336; }
.toast.warning { background: #ff9800; }
.toast.info { background: #2196f3; }
.toast-close { background: none; border: none; color: white; font-size: 18px; cursor: pointer; margin-left: auto; opacity: 0.7; }
.toast-close:hover { opacity: 1; }
@keyframes toastSlideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toastSlideOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(100%); opacity: 0; } }
.toast.hiding { animation: toastSlideOut 0.3s ease forwards; }

/* ==========================================
   FAVORITE BUTTON
   ========================================== */
.btn-favorite { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: transparent; border: 1.5px solid #eee; border-radius: 30px; font-size: 14px; font-weight: 500; color: #999; cursor: pointer; transition: all 0.3s; margin-top: 8px; }
.btn-favorite:hover { border-color: #e91e8c; color: #e91e8c; }
.btn-favorite.active { border-color: #e91e8c; color: #e91e8c; background: #fce4ec; }
.btn-favorite svg { transition: all 0.3s; }

/* ==========================================
   REVIEWS SECTION
   ========================================== */
.reviews-section { padding: 40px 0; }
.reviews-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.reviews-header h2 { font-size: 24px; font-weight: 700; }
.reviews-summary { display: flex; align-items: center; gap: 10px; }
.avg-rating-number { font-size: 32px; font-weight: 800; color: #e91e8c; }
.review-stars { display: flex; gap: 2px; }
.review-star { color: #ddd; font-size: 16px; }
.review-star.filled { color: #ffc107; }
.review-count { font-size: 14px; color: #999; }
.reviews-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.review-card { background: white; border-radius: 12px; padding: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); border: 1px solid #f0f0f0; }
.review-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #e91e8c, #c2185b); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; }
.reviewer-name { display: block; font-size: 15px; }
.review-date { font-size: 13px; color: #999; white-space: nowrap; }
.review-text { font-size: 14px; line-height: 1.7; color: #444; }
.no-reviews-text { text-align: center; padding: 30px; color: #999; font-size: 15px; }

/* Review Form */
.review-form-card { background: white; border-radius: 12px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); border: 1px solid #f0f0f0; margin-top: 24px; }
.review-form-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 16px; color: #2d2d2d; }
.review-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.review-form-card .form-group { margin-bottom: 16px; }
.review-form-card label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 14px; color: #444; }
.review-form-card input[type="text"], .review-form-card textarea { width: 100%; padding: 10px 14px; border: 2px solid #eee; border-radius: 8px; font-size: 14px; outline: none; transition: border-color 0.3s; font-family: inherit; }
.review-form-card input[type="text"]:focus, .review-form-card textarea:focus { border-color: #e91e8c; }

/* Rating Input */
.rating-input { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.rating-input input { display: none; }
.rating-input label { font-size: 28px; color: #ddd; cursor: pointer; transition: color 0.2s; }
.rating-input label:hover, .rating-input label:hover ~ label, .rating-input input:checked ~ label { color: #ffc107; }

/* Review Tabs */
.review-tabs { display: flex; gap: 0; margin-bottom: 24px; border-bottom: 2px solid #f0f0f0; }
.review-tab { padding: 14px 28px; font-size: 15px; font-weight: 600; color: #999; background: none; border: none; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.3s ease; }
.review-tab:hover { color: var(--pink-primary); }
.review-tab.active { color: var(--pink-primary); border-bottom-color: var(--pink-primary); }
.review-tab-content { display: none; }
.review-tab-content.active { display: block; }

/* Rating Distribution */
.reviews-summary-enhanced { display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }
.reviews-summary-left { display: flex; align-items: center; gap: 12px; }
.rating-distribution { flex: 1; min-width: 200px; }
.rating-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.rating-bar-label { font-size: 13px; color: #666; min-width: 36px; text-align: right; }
.rating-bar-track { flex: 1; height: 8px; background: #f0f0f0; border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: linear-gradient(90deg, #ffc107, #ff9800); border-radius: 4px; transition: width 0.5s ease; }
.rating-bar-count { font-size: 12px; color: #999; min-width: 20px; }

/* Review Sort Bar */
.reviews-sort-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 14px; }
.reviews-sort-bar label { font-weight: 500; color: #666; }
.reviews-sort-bar select { padding: 8px 14px; border: 2px solid #eee; border-radius: 8px; font-size: 14px; color: #333; outline: none; cursor: pointer; background: white; }
.reviews-sort-bar select:focus { border-color: var(--pink-primary); }

/* Reviews Load More */
.reviews-load-more { text-align: center; margin-top: 20px; padding: 16px; }

/* Reviews Empty State */
.reviews-empty-state { text-align: center; padding: 40px 20px; }
.reviews-empty-state .empty-icon { font-size: 48px; display: block; margin-bottom: 12px; }
.reviews-empty-state h3 { font-size: 18px; color: #666; margin-bottom: 8px; }
.reviews-empty-state p { font-size: 14px; color: #999; }

/* Review Form Info */
.review-form-info { font-size: 14px; color: var(--pink-primary); background: var(--pink-soft); padding: 10px 14px; border-radius: 8px; margin-bottom: 14px; }
.char-counter { font-size: 12px; color: #aaa; margin-top: 4px; display: block; text-align: right; }

/* Q&A Cards */
.qa-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.qa-card { background: white; border-radius: 12px; padding: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); border: 1px solid #f0f0f0; }
.qa-question { display: flex; gap: 14px; margin-bottom: 14px; }
.qa-q-icon { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #e91e8c, #c2185b); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; flex-shrink: 0; }
.qa-q-content { flex: 1; }
.qa-answer { display: flex; gap: 14px; padding-top: 14px; border-top: 1px dashed #eee; }
.qa-a-icon { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #10b981, #059669); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; flex-shrink: 0; }
.qa-a-content { flex: 1; }
.qa-text { font-size: 14px; line-height: 1.7; color: #444; margin-bottom: 6px; }
.qa-meta { font-size: 12px; color: #999; }

/* My Reviews & Questions in Account Panel */
.my-reviews-list, .my-questions-list { display: flex; flex-direction: column; gap: 16px; }
.my-review-card { background: white; border-radius: 12px; padding: 18px; border: 1px solid #f0f0f0; transition: box-shadow 0.3s; }
.my-review-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.my-review-product { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #f5f5f5; }
.my-review-product img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; }
.my-review-product-info h4 { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.my-review-product-info a { font-size: 12px; color: var(--pink-primary); text-decoration: none; }
.my-review-content { font-size: 14px; line-height: 1.6; color: #555; margin-bottom: 8px; }
.my-review-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.my-review-status { padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; }
.my-review-status.approved { background: #e8f5e9; color: #2e7d32; }
.my-review-status.pending { background: #fff3e0; color: #e65100; }

.my-question-card { background: white; border-radius: 12px; padding: 18px; border: 1px solid #f0f0f0; transition: box-shadow 0.3s; }
.my-question-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.my-question-text { font-size: 14px; line-height: 1.6; color: #333; font-weight: 500; margin-bottom: 8px; }
.my-question-answer { background: #f0fdf4; border-radius: 8px; padding: 12px; margin-top: 10px; border-left: 3px solid #10b981; }
.my-question-answer-label { font-size: 12px; font-weight: 600; color: #10b981; margin-bottom: 4px; }
.my-question-answer-text { font-size: 13px; color: #555; line-height: 1.5; }

@media (max-width: 768px) {
    .review-form-row { grid-template-columns: 1fr; }
    .reviews-header { flex-direction: column; align-items: flex-start; }
    .reviews-summary-enhanced { flex-direction: column; align-items: flex-start; }
    .review-tabs { overflow-x: auto; }
    .review-tab { padding: 12px 18px; font-size: 14px; white-space: nowrap; }
}

/* ==========================================
   MUSTERI HESAP PANELI STYLES
   ========================================== */

/* Account Layout */
.account-section { background: var(--gray-bg); min-height: 100vh; padding-top: 30px; padding-bottom: 60px; }
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start; }

/* Account Sidebar */
.account-sidebar { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; position: sticky; top: 90px; }
.account-user-card { text-align: center; padding: 28px 20px; background: linear-gradient(135deg, var(--pink-lighter), var(--pink-soft)); border-bottom: 2px solid var(--pink-light); }
.account-avatar { width: 72px; height: 72px; background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; color: white; margin: 0 auto 12px; box-shadow: 0 4px 15px rgba(233,30,140,0.25); }
.account-user-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.account-user-card p { font-size: 13px; color: var(--gray); }

/* Account Navigation */
.account-nav { padding: 8px 0; }
.account-nav-item { display: flex; align-items: center; gap: 10px; padding: 13px 18px; color: var(--dark-light); text-decoration: none; font-size: 14px; border-left: 3px solid transparent; transition: all 0.25s ease; position: relative; }
.account-nav-item .nav-item-icon { width: 32px; height: 32px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 16px; background: rgba(233,30,140,0.06); transition: all 0.25s ease; flex-shrink: 0; }
.account-nav-item:hover { background: var(--pink-soft); color: var(--pink-primary); padding-left: 24px; }
.account-nav-item:hover .nav-item-icon { background: rgba(233,30,140,0.12); }
.account-nav-item.active { background: var(--pink-soft); color: var(--pink-primary); border-left-color: var(--pink-primary); font-weight: 600; }
.account-nav-item.active .nav-item-icon { background: var(--pink-primary); color: white; }
.account-nav-item.logout { color: var(--danger); border-top: 1px solid rgba(0,0,0,0.05); }
.account-nav-item.logout:hover { background: #fff5f5; padding-left: 24px; }
.account-nav-item .nav-item-label { flex: 1; }
.account-nav-item .badge-count { position: static; background: var(--danger); color: var(--white); font-size: 10px; padding: 1px 6px; border-radius: 8px; font-weight: 600; }
.account-nav-separator { height: 1px; background: rgba(0,0,0,0.04); margin: 4px 16px; }

/* Account Content */
.account-content { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 28px; min-height: 400px; }
.account-panel h2 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.account-panel h3 { font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 14px; }
.panel-desc { font-size: 14px; color: var(--gray); margin-bottom: 16px; }

/* Auth Alerts */
.auth-alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 14px; font-weight: 500; }
.auth-alert.success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid var(--success); }
.auth-alert.error { background: #ffebee; color: #c62828; border-left: 4px solid var(--danger); }

/* Dashboard Istatistik Kartlari */
.dashboard-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.dash-stat-card { background: var(--white); border-radius: var(--radius-md); padding: 20px; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-sm); border: 1px solid rgba(233,30,140,0.06); transition: all 0.3s ease; }
.dash-stat-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(233,30,140,0.1); }
.dash-stat-icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.dash-stat-icon.orders { background: #fff3e0; }
.dash-stat-icon.spent { background: #e8f5e9; }
.dash-stat-icon.tickets { background: #e3f2fd; }
.dash-stat-icon.wishlist { background: #fce4ec; }
.dash-stat-number { font-size: 22px; font-weight: 700; display: block; line-height: 1.2; }
.dash-stat-label { font-size: 12px; color: var(--gray); margin-top: 2px; display: block; }
.dash-stat-card.orders-card .dash-stat-number { color: #e65100; }
.dash-stat-card.spent-card .dash-stat-number { color: #2e7d32; }
.dash-stat-card.tickets-card .dash-stat-number { color: #1565c0; }
.dash-stat-card.wishlist-card .dash-stat-number { color: var(--pink-primary); }

/* Siparis Durum Badge'leri */
.order-status-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 12px; border-radius: var(--radius-xl); font-size: 12px; font-weight: 600; color: white; }
.order-status-badge.pending { background: #f0ad4e; }
.order-status-badge.confirmed { background: #5bc0de; }
.order-status-badge.preparing { background: #e91e8c; }
.order-status-badge.ready { background: #9c27b0; }
.order-status-badge.shipped { background: #2196f3; }
.order-status-badge.delivered { background: #27ae60; }
.order-status-badge.cancelled { background: #e74c3c; }

/* Gelismis Siparis Karti */
.order-card-enhanced { border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-md); padding: 20px; margin-bottom: 14px; transition: all 0.3s ease; background: var(--white); position: relative; }
.order-card-enhanced:hover { border-color: var(--pink-light); box-shadow: 0 4px 15px rgba(233,30,140,0.08); transform: translateY(-1px); }
.order-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.order-card-top .order-id { font-weight: 700; color: var(--pink-primary); font-size: 15px; }
.order-card-top .order-date { margin-left: auto; color: var(--gray-light); font-size: 13px; }
.order-card-middle { display: flex; gap: 14px; align-items: center; margin-bottom: 12px; }
.order-card-img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); border: 2px solid rgba(233,30,140,0.08); flex-shrink: 0; }
.order-card-img-placeholder { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; background: var(--pink-soft); border-radius: var(--radius-sm); font-size: 28px; flex-shrink: 0; }
.order-card-info { flex: 1; min-width: 0; }
.order-card-info h4 { font-size: 15px; font-weight: 600; margin-bottom: 3px; color: var(--dark); }
.order-card-info p { font-size: 13px; color: var(--gray); margin: 0; }
.order-card-info .order-price { font-weight: 700; color: var(--pink-primary); font-size: 15px; }
.order-card-bottom { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding-top: 12px; border-top: 1px solid rgba(0,0,0,0.04); }
.tracking-number { font-size: 12px; color: var(--gray-light); background: rgba(0,0,0,0.03); padding: 3px 10px; border-radius: var(--radius-sm); font-family: monospace; }
.btn-reorder { margin-left: auto; padding: 6px 14px; font-size: 13px; background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark)); color: white; border: none; border-radius: var(--radius-sm); cursor: pointer; text-decoration: none; font-weight: 600; transition: all 0.25s ease; display: inline-flex; align-items: center; gap: 4px; }
.btn-reorder:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(233,30,140,0.25); color: white; text-decoration: none; }

/* Favori Kartlari */
.wishlist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.wishlist-card { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-md); overflow: hidden; transition: all 0.3s ease; }
.wishlist-card:hover { border-color: var(--pink-light); box-shadow: 0 6px 20px rgba(233,30,140,0.1); transform: translateY(-3px); }
.wishlist-card-img { width: 100%; height: 160px; object-fit: cover; background: var(--pink-soft); }
.wishlist-card-img-placeholder { width: 100%; height: 160px; display: flex; align-items: center; justify-content: center; background: var(--pink-soft); font-size: 48px; }
.wishlist-card-body { padding: 14px; }
.wishlist-card-body h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.wishlist-card-body .wprice { font-weight: 700; color: var(--pink-primary); font-size: 16px; }
.wishlist-card-body .wold-price { font-size: 13px; color: var(--gray-light); text-decoration: line-through; margin-left: 6px; }
.wishlist-card-actions { padding: 0 14px 14px; display: flex; gap: 6px; }
.btn-add-cart { flex: 1; padding: 8px 12px; font-size: 13px; font-weight: 600; background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark)); color: white; border: none; border-radius: var(--radius-sm); cursor: pointer; text-decoration: none; text-align: center; transition: all 0.25s ease; }
.btn-add-cart:hover { box-shadow: 0 4px 12px rgba(233,30,140,0.25); color: white; text-decoration: none; }
.btn-remove-wish { padding: 8px 10px; background: #fff5f5; color: var(--danger); border: 1px solid #ffcdd2; border-radius: var(--radius-sm); cursor: pointer; font-size: 14px; transition: all 0.25s ease; }
.btn-remove-wish:hover { background: var(--danger); color: white; border-color: var(--danger); }

/* Kupon Kartlari */
.coupon-card-mini { border: 2px dashed var(--pink-primary); border-radius: var(--radius-md); padding: 16px; background: var(--white); position: relative; overflow: hidden; transition: all 0.3s ease; margin-bottom: 12px; }
.coupon-card-mini:hover { box-shadow: 0 4px 15px rgba(233,30,140,0.1); border-color: var(--pink-dark); }
.coupon-card-mini::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--pink-primary), var(--pink-dark)); }
.coupon-mini-code { font-family: 'Courier New', monospace; font-size: 16px; font-weight: 700; color: var(--pink-primary); letter-spacing: 2px; background: var(--pink-soft); display: inline-block; padding: 4px 12px; border-radius: var(--radius-sm); border: 1px dashed var(--pink-light); margin-bottom: 6px; }
.coupon-mini-value { font-size: 20px; font-weight: 700; color: var(--pink-primary); }
.coupon-mini-detail { font-size: 12px; color: var(--gray); margin-top: 4px; }

/* Profil Form Gelismis */
.profile-layout { display: grid; grid-template-columns: 200px 1fr; gap: 30px; align-items: start; }
.profile-avatar-section { text-align: center; padding: 20px; background: var(--pink-soft); border-radius: var(--radius-md); }
.profile-avatar-large { width: 100px; height: 100px; background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 44px; margin: 0 auto 12px; color: white; box-shadow: 0 4px 15px rgba(233,30,140,0.25); position: relative; }
.profile-avatar-large::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(233,30,140,0.15); }
.profile-avatar-section .avatar-name { font-weight: 700; font-size: 16px; color: var(--dark); }
.profile-avatar-section .avatar-email { font-size: 12px; color: var(--gray); margin-top: 2px; }
.profile-avatar-section .avatar-since { font-size: 11px; color: var(--gray-light); margin-top: 8px; }

/* Adres Kartlari */
.address-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.address-card { border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-md); padding: 18px; position: relative; transition: all 0.3s ease; background: var(--white); }
.address-card:hover { border-color: var(--pink-light); box-shadow: 0 4px 12px rgba(233,30,140,0.08); }
.address-card.default-address { border-color: var(--pink-primary); border-width: 2px; }
.address-card-title { font-weight: 700; font-size: 15px; color: var(--dark); display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.address-default-badge { font-size: 10px; font-weight: 600; background: var(--pink-primary); color: white; padding: 2px 8px; border-radius: var(--radius-sm); }
.address-card-text { font-size: 13px; color: var(--gray); line-height: 1.5; margin-bottom: 10px; }
.address-card-actions { display: flex; gap: 6px; }
.address-card-actions button, .address-card-actions a { padding: 5px 10px; font-size: 12px; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s ease; }

/* Aktivite Gecmisi */
.activity-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.activity-item:last-child { border-bottom: none; }
.activity-icon { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.activity-icon.order-type { background: #fff3e0; }
.activity-icon.ticket-type { background: #e3f2fd; }
.activity-info { flex: 1; min-width: 0; }
.activity-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.activity-info p { font-size: 12px; color: var(--gray); margin: 0; }
.activity-time { font-size: 11px; color: var(--gray-light); white-space: nowrap; margin-left: auto; }

/* Sifre Degistir Gelismis */
.password-strength-bar { height: 4px; background: #eee; border-radius: 2px; margin-top: 6px; overflow: hidden; }
.password-strength-fill { height: 100%; border-radius: 2px; transition: width 0.3s, background 0.3s; width: 0%; }

/* Adres Form Modal */
.addr-form-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; align-items: center; justify-content: center; }
.addr-form-overlay.active { display: flex; }
.addr-form-box { background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,0.15); width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; margin: 20px; }
.addr-form-header { padding: 18px 22px; border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; justify-content: space-between; align-items: center; }
.addr-form-header h3 { font-size: 17px; font-weight: 700; }
.addr-form-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--gray); }
.addr-form-close:hover { color: var(--danger); }
.addr-form-body { padding: 22px; }
.addr-form-body .form-group { margin-bottom: 14px; }
.addr-form-body label { display: block; font-weight: 600; font-size: 13px; color: var(--dark-light); margin-bottom: 5px; }
.addr-form-body input, .addr-form-body textarea { width: 100%; padding: 10px 14px; border: 2px solid rgba(0,0,0,0.06); border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font-main); transition: border-color 0.25s, box-shadow 0.25s; }
.addr-form-body input:focus, .addr-form-body textarea:focus { border-color: var(--pink-primary); outline: none; box-shadow: 0 0 0 3px rgba(233,30,140,0.08); }
.addr-form-body .checkbox-group { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.addr-form-body .checkbox-group input { width: auto; }
.addr-form-footer { padding: 14px 22px; border-top: 1px solid rgba(0,0,0,0.06); display: flex; gap: 10px; justify-content: flex-end; }

/* Siparis Takip Form */
.tracking-form-inline { display: flex; gap: 10px; margin-bottom: 20px; }
.tracking-form-inline input { flex: 1; padding: 10px 16px; border: 2px solid var(--gray-lighter); border-radius: var(--radius-sm); font-size: 14px; outline: none; transition: var(--transition); }
.tracking-form-inline input:focus { border-color: var(--pink-primary); }

/* Quick Orders (Siparis Takip) */
.quick-orders { display: flex; flex-direction: column; gap: 8px; }
.quick-order-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--gray-bg); border-radius: var(--radius-sm); text-decoration: none; color: var(--dark); transition: all 0.25s ease; }
.quick-order-item:hover { background: var(--pink-soft); transform: translateX(4px); }
.qo-id { font-weight: 700; color: var(--pink-primary); font-size: 14px; min-width: 50px; }
.qo-product { flex: 1; font-size: 14px; color: var(--dark-light); }
.qo-date { font-size: 12px; color: var(--gray-light); }

/* Destek Talebi Kartlari */
.ticket-list-customer { display: flex; flex-direction: column; gap: 12px; }
.ticket-card-customer { border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-md); padding: 18px; transition: all 0.3s ease; background: var(--white); text-decoration: none; color: var(--dark); display: block; }
.ticket-card-customer:hover { border-color: var(--pink-light); box-shadow: 0 4px 15px rgba(233,30,140,0.08); transform: translateY(-1px); }
.ticket-card-customer .ticket-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.ticket-card-customer .ticket-id { font-weight: 700; color: var(--pink-primary); font-size: 15px; }
.ticket-card-customer .ticket-date { margin-left: auto; font-size: 12px; color: var(--gray-light); }
.ticket-card-customer .ticket-subject { font-size: 14px; color: var(--dark); margin-bottom: 6px; }

/* Account Responsive */
@media (max-width: 1024px) {
    .account-layout { grid-template-columns: 220px 1fr; gap: 20px; }
}
@media (max-width: 768px) {
    .account-layout { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
    .account-nav { display: flex; overflow-x: auto; padding: 8px; gap: 4px; scrollbar-width: none; -ms-overflow-style: none; }
    .account-nav::-webkit-scrollbar { display: none; }
    .account-nav-item { white-space: nowrap; border-left: none; border-bottom: 2px solid transparent; padding: 10px 14px; font-size: 13px; }
    .account-nav-item.active { border-bottom-color: var(--pink-primary); border-left: none; }
    .account-nav-item .nav-item-icon { width: 28px; height: 28px; font-size: 14px; }
    .account-nav-item .nav-item-label { display: none; }
    .account-nav-item .badge-count { font-size: 9px; padding: 1px 5px; }
    .account-nav-separator { display: none; }
    .account-user-card { padding: 16px; }
    .account-avatar { width: 52px; height: 52px; font-size: 24px; }
    .account-user-card h3 { font-size: 15px; }
    .account-user-card p { font-size: 12px; }
    .dashboard-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .dash-stat-card { padding: 14px; }
    .dash-stat-icon { width: 42px; height: 42px; font-size: 20px; }
    .dash-stat-number { font-size: 18px; }
    .profile-layout { grid-template-columns: 1fr; }
    .wishlist-grid { grid-template-columns: repeat(2, 1fr); }
    .address-grid { grid-template-columns: 1fr; }
    .order-card-middle { flex-direction: column; align-items: flex-start; }
    .order-card-bottom { flex-direction: column; align-items: flex-start; }
    .btn-reorder { margin-left: 0; width: 100%; justify-content: center; }
    .account-content { padding: 18px; border-radius: var(--radius-md); }
    .tracking-form-inline { flex-direction: column; }
}
@media (max-width: 480px) {
    .dashboard-stats { grid-template-columns: 1fr 1fr; }
    .wishlist-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   AUTH (LOGIN/REGISTER) STYLES
   ========================================== */
.auth-section { min-height: 80vh; display: flex; align-items: center; padding: 40px 0; background: linear-gradient(135deg, var(--pink-lighter) 0%, var(--pink-soft) 50%, var(--white) 100%); }
.auth-card { max-width: 420px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: 0 10px 40px rgba(233,30,140,0.1); }
.auth-header { text-align: center; margin-bottom: 30px; }
.auth-icon { font-size: 48px; display: block; margin-bottom: 10px; }
.auth-header h1 { color: var(--pink-primary); font-size: 24px; margin-bottom: 5px; }
.auth-header p { color: var(--gray-light); font-size: 14px; }
.auth-form .form-group { margin-bottom: 18px; }
.auth-form label { display: block; margin-bottom: 6px; font-weight: 600; color: var(--dark-light); font-size: 14px; }
.auth-form input[type="email"], .auth-form input[type="password"], .auth-form input[type="text"], .auth-form input[type="tel"] { width: 100%; padding: 12px 16px; border: 2px solid #f0f0f0; border-radius: var(--radius-md); font-size: 15px; transition: all 0.3s; outline: none; }
.auth-form input:focus { border-color: var(--pink-primary); outline: none; box-shadow: 0 0 0 3px rgba(233,30,140,0.1); }
.auth-form .btn-block { width: 100%; padding: 14px; font-size: 16px; margin-top: 10px; }
.auth-footer { text-align: center; margin-top: 20px; color: var(--gray-light); font-size: 14px; }
.auth-footer a { color: var(--pink-primary); font-weight: 600; text-decoration: none; }
.auth-footer a:hover { text-decoration: underline; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--gray-light); font-size: 13px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: #eee; }
@media (max-width: 480px) { .auth-card { padding: 25px 20px; } }

/* ==========================================
   FRONTEND TOAST NOTIFICATIONS
   ========================================== */
.toast-container-frontend { position: fixed; top: 20px; right: 20px; z-index: 10000; display: flex; flex-direction: column; gap: 10px; }
.toast-frontend { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; box-shadow: var(--shadow-md); min-width: 280px; animation: slideInRight 0.3s ease; background: var(--white); }
.toast-frontend.success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid var(--success); }
.toast-frontend.error { background: #ffebee; color: #c62828; border-left: 4px solid var(--danger); }
.toast-frontend.warning { background: #fff3e0; color: #e65100; border-left: 4px solid var(--warning); }
.toast-frontend.info { background: #e3f2fd; color: #0d47a1; border-left: 4px solid var(--info); }
.toast-frontend.hiding { animation: slideOutRight 0.3s ease forwards; }
.toast-frontend-close { background: none; border: none; font-size: 18px; cursor: pointer; margin-left: auto; color: inherit; opacity: 0.6; transition: opacity 0.2s; }
.toast-frontend-close:hover { opacity: 1; }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOutRight { from { transform: translateX(0); opacity: 1; } to { transform: translateX(100%); opacity: 0; } }

/* ==========================================
   FRONTEND SCROLLBAR STYLES
   ========================================== */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f5f5f5; }
::-webkit-scrollbar-thumb { background: var(--gray-lighter); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-light); }

/* ==========================================
   ADDITIONAL UTILITY CLASSES
   ========================================== */
.text-pink { color: var(--pink-primary) !important; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }
.text-warning { color: var(--warning) !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.d-none { display: none; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }

/* ==========================================
   SHIMMER / SKELETON LOADING EFFECT
   ========================================== */
.shimmer {
    background: linear-gradient(90deg, var(--pink-soft) 25%, var(--pink-lighter) 50%, var(--pink-soft) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Skeleton placeholders for product cards */
.skeleton-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.03);
}
.skeleton-image {
    height: 260px; background: linear-gradient(90deg, var(--pink-soft) 25%, var(--pink-lighter) 50%, var(--pink-soft) 75%);
    background-size: 200% 100%; animation: shimmer 1.5s infinite;
}
.skeleton-content { padding: 20px; }
.skeleton-title {
    height: 18px; width: 70%; border-radius: 4px; margin-bottom: 12px;
    background: linear-gradient(90deg, var(--pink-soft) 25%, var(--pink-lighter) 50%, var(--pink-soft) 75%);
    background-size: 200% 100%; animation: shimmer 1.5s infinite;
}
.skeleton-text {
    height: 14px; width: 90%; border-radius: 4px; margin-bottom: 8px;
    background: linear-gradient(90deg, var(--pink-soft) 25%, var(--pink-lighter) 50%, var(--pink-soft) 75%);
    background-size: 200% 100%; animation: shimmer 1.5s infinite;
}
.skeleton-text-short { width: 60%; }
.skeleton-price {
    height: 20px; width: 40%; border-radius: 4px; margin-top: 12px;
    background: linear-gradient(90deg, var(--pink-soft) 25%, var(--pink-lighter) 50%, var(--pink-soft) 75%);
    background-size: 200% 100%; animation: shimmer 1.5s infinite;
}
