* {
    font-family: 'Inter', sans-serif;
}

.logo-text {
    font-family: 'Playfair Display', serif;
}

.btn-primary {
    background: linear-gradient(135deg, #00A4C3 0%, #00839c 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00839c 0%, #006275 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 164, 195, 0.4);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
}

.nav-link {
    position: relative;
    font-size: 14px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00A4C3;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mega-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.menu-trigger:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-image {
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.badge-sale {
    background: linear-gradient(135deg, #2cdc26 0%, #1cb91f 100%);
}

.badge-new {
    background: linear-gradient(135deg, #111111 0%, #374151 100%);
}

.search-input:focus {
    box-shadow: 0 0 0 3px rgba(0, 164, 195, 0.15);
}

/* Hero Section */
.hero-section {
    background: radial-gradient(circle at 18% 18%, #ffffff 0%, #f5f7fb 40%, #e9edf5 75%);
    min-height: 520px;
    height: auto;
}

@media (max-width: 640px) {
    .hero-section {
        min-height: 440px;
        padding: 28px 0 18px;
    }
}

.hero-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.hero-slide.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-thumb {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-thumb.active,
.hero-thumb:hover {
    border-color: #00A4C3;
    transform: scale(1.05);
}

/* Hero ürün görseli - mor arka planı kaldır, PNG için temiz alan */
.hero-product-card {
    background: transparent !important;
    box-shadow: none !important;
    /* gölge de istemezsen */
}

.hero-product-card::after {
    display: none !important;
}

.hero-fade-blob {
    filter: blur(70px);
    opacity: 0.45;
}

/* Cart Sidebar */
.cart-overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-item {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   GLOBAL MODAL - SLIM SCROLLBAR
   ============================================ */
#globalModal #modalContent {
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: rgba(17, 24, 39, 0.35) transparent;
}

#globalModal #modalContent::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

#globalModal #modalContent::-webkit-scrollbar-track {
    background: transparent;
}

#globalModal #modalContent::-webkit-scrollbar-thumb {
    background: rgba(17, 24, 39, 0.25);
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

#globalModal #modalContent::-webkit-scrollbar-thumb:hover {
    background: rgba(17, 24, 39, 0.4);
}

/* Category Cards */
.category-card-new {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 16px 40px -24px rgba(15, 23, 42, 0.25);
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 20px;
}

.category-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px -32px rgba(15, 23, 42, 0.35);
    border-color: rgba(226, 232, 240, 0.8);
}

.category-card-new:hover .cat-title {
    color: #00A4C3;
}

.category-card-new:hover .cat-arrow {
    opacity: 1;
    transform: translateX(0);
}

.cat-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
    border: 1px solid #b2ebf2;
    color: #00A4C3;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px -20px rgba(0, 164, 195, 0.45);
}

.cat-icon img {
    width: 2.9rem;
    height: 2.9rem;
    object-fit: contain;
}

/* ============================================
   ACCOUNT / ORDERS PAGE
   ============================================ */
.orders-page .chip-btn {
    background: #ffffff;
    border-color: #d1d5db;
    /* gray-300 */
    color: #374151;
    /* gray-700 */
}

.orders-page .chip-btn:hover {
    border-color: #00A4C3;
    /* primary */
    color: #00A4C3;
    /* primary */
}

.orders-page .chip-btn.is-active {
    background: #00A4C3;
    /* primary */
    border-color: #00A4C3;
    color: #ffffff;
}

.orders-page .chip-btn.is-active:hover {
    background: #00839c;
    /* secondary-ish */
    border-color: #00839c;
    color: #ffffff;
}

.orders-page .order-card.is-open .toggle-btn i {
    transform: rotate(180deg);
}

/* ============================================
   FAVORITES (WISHLIST)
   ============================================ */
.fav-btn {
    transition: all 0.25s ease;
}

.fav-btn.is-active {
    background: rgba(0, 164, 195, 0.10) !important;
    /* primary/10 */
    color: #00A4C3 !important;
    opacity: 1 !important;
}

.fav-btn.is-active i {
    color: #00A4C3 !important;
}

.fav-btn.is-active:hover {
    background: #00A4C3 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px -14px rgba(0, 164, 195, 0.45);
}

.fav-btn.is-active:hover i {
    color: #ffffff !important;
}

/* ============================================
   PRODUCT DETAIL - QTY INPUT (REMOVE SPINNERS)
   ============================================ */
/* Chrome, Safari, Edge, Opera */
input.qty-input::-webkit-outer-spin-button,
input.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input.qty-input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* ============================================
   PRODUCTS PAGE - MOBILE OVERFLOW SAFETY
   ============================================ */
body.products-page {
    overflow-x: hidden;
}

/* ============================================
   PRODUCT DETAIL PAGE - MOBILE OVERFLOW SAFETY
   ============================================ */
.product-detail-page {
    max-width: 100vw;
}


.product-detail-page h1 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* ============================================
   MOBILE BOTTOM BAR - PRODUCT PAGE
   ============================================ */

/* Safe area for iOS devices */
.safe-area-bottom {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

/* Mobile bottom bar animation */
#mobileBottomBar {
    will-change: transform;
}

#mobileBottomBar.translate-y-full {
    transform: translateY(100%);
}

#mobileBottomBar:not(.translate-y-full) {
    transform: translateY(0);
}

/* ============================================
   PRODUCT THUMBNAILS - SLIM SCROLL
   ============================================ */
.thumb-scroll {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
    /* slate-300 */
}

.thumb-scroll::-webkit-scrollbar {
    height: 6px;
}

.thumb-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.thumb-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

/* ============================================
   PRODUCT DETAIL - MOBILE OVERFLOW SAFETY
   ============================================ */
.product-detail-page {
    overflow-x: hidden;
}

.product-detail-page img,
.product-detail-page video,
.product-detail-page iframe,
.product-detail-page table {
    max-width: 100%;
}



.category-card-new:hover .cat-icon {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #ffdae1 0%, #ffc2cc 100%);
    color: #fff;
    box-shadow: 0 18px 36px -20px rgba(0, 164, 195, 0.55);
}

.cat-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
}

.cat-arrow {
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
    color: #00A4C3;
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e0f7fa;
    color: #00A4C3;
    font-weight: 600;
    font-size: 11px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f3f4f6;
}

::-webkit-scrollbar-thumb {
    background: #00A4C3;
    border-radius: 4px;
}

/* Cart Button */
.cart-btn {
    transition: all 0.3s ease;
}

.cart-btn:hover {
    transform: scale(1.05);
}

.cart-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Quantity Buttons */
.qty-btn {
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #00A4C3;
    color: white;
}

.qty-btn:active {
    transform: scale(0.95);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.best-seller-card {
    position: relative;
}

.best-seller-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.best-seller-add {
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    background: #0f172a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.25s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px -18px rgba(15, 23, 42, 0.45);
}

.best-seller-card:hover .best-seller-add {
    opacity: 1;
    transform: translateX(0);
    background: linear-gradient(135deg, #00A4C3 0%, #00839c 100%);
    border-color: #00A4C3;
    box-shadow: 0 16px 40px -20px rgba(0, 164, 195, 0.5);
}

.category-spot-card {
    position: relative;
    display: block;
    min-height: 340px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px -30px rgba(15, 23, 42, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.category-spot-card img {
    transition: transform 0.6s ease;
}

.category-spot-card:hover img {
    transform: scale(1.06);
}

.category-spot-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px -36px rgba(15, 23, 42, 0.45);
}

.category-spot-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 80%);
}

.spot-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: #ffffff;
    color: #0f172a;
    font-weight: 700;
    font-size: 14px;
    min-width: 140px;
    box-shadow: 0 14px 38px -18px rgba(255, 255, 255, 0.75);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-spot-card:hover .spot-btn {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px -20px rgba(255, 255, 255, 0.9);
}

.search-suggestions {
    display: none;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px -28px rgba(15, 23, 42, 0.35);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    z-index: 80;
}

.search-suggestions.active {
    display: block;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.search-suggestion-item:hover,
.search-suggestion-item.active {
    background: #f8fafc;
    transform: translateX(2px);
}

.search-suggestion-name {
    font-weight: 600;
    color: #0f172a;
}

.search-suggestion-meta {
    font-size: 12px;
    color: #6b7280;
}

.search-suggestion-right {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.search-suggestion-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-suggestion-img {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.search-suggestion-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.search-suggestion-price {
    font-weight: 700;
    color: #00A4C3;
    font-size: 14px;
    min-width: 88px;
    text-align: right;
}

.search-empty {
    padding: 12px 16px;
    color: #6b7280;
    font-size: 14px;
}

.search-loader {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    color: #6b7280;
    font-size: 14px;
}

.search-loader-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #00A4C3;
    opacity: 0.4;
    animation: pulse-dot 1s infinite;
}

.search-loader-dot:nth-child(2) {
    animation-delay: 0.15s;
}

.search-loader-dot:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.18s ease;
}

.account-dropdown {
    position: absolute;
    right: -8px;
    min-width: 280px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 24px 80px -32px rgba(15, 23, 42, 0.5);
    padding: 18px;
    display: none;
    z-index: 60;
    animation: slideDown 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-12px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.account-dropdown.show {
    display: block;
}

.account-dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.avatar-circle {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 16px;
}

.account-dropdown-actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.account-action-btn {
    flex: 1;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    padding: 11px 13px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    background: linear-gradient(135deg, #2bbcd6 0%, #00A4C3 100%);
    color: #fff;
    box-shadow: 0 18px 42px -24px rgba(0, 164, 195, 0.55);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.account-secondary-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 13px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    color: #0f172a;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.account-secondary-btn:hover {
    background: #ffffff;
    border-color: #d1d5db;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px -20px rgba(15, 23, 42, 0.25);
}

.account-action-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
    box-shadow: 0 22px 48px -22px rgba(0, 164, 195, 0.55);
}

.search-empty {
    padding: 12px 16px;
    color: #6b7280;
    font-size: 14px;
}

/* ============================================
   PRODUCT DETAIL ANIMATIONS
   ============================================ */

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

@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;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-shake {
    animation: shake 0.5s ease-in-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.3s ease-out;
}

.animate-slide-out-right {
    animation: slideOutRight 0.3s ease-in;
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-in;
}

.animate-bounce {
    animation: bounce 0.6s ease-in-out 2;
}

/* Toast Container */
#toastContainer {
    pointer-events: none;
}

#toastContainer .toast-item {
    pointer-events: auto;
}

/* Variant highlight on error */
.variant-error {
    border-color: #2bbcd6 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* ==================== SEARCH AUTOCOMPLETE ==================== */
.search-dropdown {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: slideDown 0.2s ease-out;
    text-align: left !important;
    direction: ltr !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-group {
    border-bottom: 1px solid #f3f4f6;
    text-align: left !important;
}

.search-group:last-child {
    border-bottom: none;
}

.search-group-title {
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 16px 8px 16px;
    text-align: left !important;
    direction: ltr !important;
}

.search-suggestion-item {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px;
    padding: 12px 16px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    direction: ltr !important;
}

.search-suggestion-item:hover {
    background: linear-gradient(90deg, #f9fafb 0%, #ffffff 100%);
}

.search-item-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
    background: #f9fafb;
    padding: 4px;
    flex-shrink: 0;
}

.search-item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: #fef2f2;
    border-radius: 8px;
    flex-shrink: 0;
}

.search-item-info {
    flex: 1;
    min-width: 0;
    text-align: left !important;
}

.search-item-text {
    display: block;
    color: #1f2937;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left !important;
}

.search-item-header {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px;
    margin-bottom: 4px;
    text-align: left !important;
}

.search-item-badge {
    display: inline-block;
    padding: 2px 8px;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 10px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 4px;
    white-space: nowrap;
}

.search-item-meta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.search-item-code {
    display: block;
    color: #9ca3af;
    font-size: 12px;
}

.search-item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    margin-left: 12px;
    flex-shrink: 0;
}

.search-item-discount-badge {
    background: #00A4C3;
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.search-item-old-price {
    color: #9ca3af;
    font-size: 11px;
    text-decoration: line-through;
}

.search-item-current-price {
    color: #00A4C3;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.search-item-arrow {
    color: #d1d5db;
    font-size: 12px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.search-suggestion-item:hover .search-item-arrow {
    color: #00A4C3;
    transform: translateX(4px);
}

#searchSuggestions,
#mobileSearchSuggestions {
    display: none;
    z-index: 999;
}

/* WHATSAPP ANIMASYONLAR DEVRE DIŞI - GPU OPTİMİZASYONU */
/* Sürekli çalışan pulse ve glow animasyonları GPU'yu %40+ kullanıma sokuyor */
/* Artık sadece statik görünüm + hover efekti var */

@keyframes whatsapp-wave {

    /* Animasyon devre dışı - GPU tasarrufu */
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

@keyframes whatsapp-glow {

    /* Animasyon devre dışı - GPU tasarrufu */
    0%,
    100% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    }
}

.whatsapp-pulse-ring,
.whatsapp-pulse-ring-2,
.whatsapp-pulse-ring-3 {
    /* Pulse ring'ler gizlendi - GPU tasarrufu */
    display: none;
}

.whatsapp-button {
    /* Sürekli animasyon YOK - sadece statik shadow */
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    -webkit-tap-highlight-color: transparent;
}

/* Active state for touch devices */
.whatsapp-button:active {
    transform: scale(0.95);
}

/* Hover only for non-touch devices */
@media (hover: hover) and (pointer: fine) {
    .whatsapp-button:hover {
        animation: none;
        box-shadow: 0 0 35px rgba(34, 197, 94, 0.9),
            0 0 70px rgba(34, 197, 94, 0.7),
            0 0 100px rgba(34, 197, 94, 0.5) !important;
    }
}

#whatsappBubble.whatsapp-bubble-show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Mobile optimizations */
@media (max-width: 639px) {
    #whatsappWidget {
        /* Ensure widget doesn't interfere with mobile navigation */
        -webkit-user-select: none;
        user-select: none;
    }

    #whatsappBubble {
        /* Prevent bubble from overflowing on small screens */
        max-width: calc(100vw - 90px);
    }
}

/* Product Gallery Navigation */
.gallery-nav-btn {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* Mobilde butonları gizle - sadece swipe */
@media (max-width: 639px) {
    .gallery-nav-btn {
        display: none !important;
    }
}

/* Desktop'ta hover ile göster */
@media (min-width: 640px) {
    #productGalleryMain:hover .gallery-nav-btn {
        opacity: 1;
    }
}

/* Active state for touch */
.gallery-nav-btn:active {
    background-color: white !important;
    transform: translateY(-50%) scale(0.95);
}

/* Video player styling */
#mainVideo {
    border-radius: 12px;
}

/* Thumbnail scroll improvements */
.thumb-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.thumb-scroll::-webkit-scrollbar {
    height: 4px;
}

.thumb-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.thumb-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.thumb-scroll::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

/* ==================== MODERN HİKAYELER BÖLÜMÜ ==================== */
.stories-section {
    position: relative;
}

.stories-container {
    position: relative;
}

/* Gradient Overlays for Scroll Indication */
.stories-gradient-left,
.stories-gradient-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stories-gradient-left {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.stories-gradient-right {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.stories-container:hover .stories-gradient-left,
.stories-container:hover .stories-gradient-right {
    opacity: 1;
}

/* Stories Scroll Container */
.stories-scroll {
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
    justify-content: center;
}

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

/* Individual Story Card */
.story-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 120px;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.story-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.story-card:active {
    transform: translateY(-4px) scale(0.98);
}

/* Story Ring Wrapper */
.story-ring-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
}

/* Solid Ring Border */
.story-ring-gradient {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #f43f5e;
    padding: 3px;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
    transition: all 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.story-card:hover .story-ring-gradient {
    background: #00A4C3;
    box-shadow: 0 6px 20px rgba(0, 164, 195, 0.4);
    transform: scale(1.05);
}

/* Inner White Border */
.story-ring-inner-wrapper {
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: white;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    z-index: 5;
}

/* Story Avatar Image */
.story-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.story-card:hover .story-avatar-img {
    transform: scale(1.1);
}

/* Story Count Badge */
.story-count-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    min-width: 24px;
    height: 24px;
    background: #f43f5e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 164, 195, 0.4);
    z-index: 100;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Story Title Text */
.story-title-text {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    max-width: 100%;
    text-align: center;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.story-card:hover .story-title-text {
    color: #f43f5e;
}

/* Hover Effect Overlay */
.story-hover-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(244, 63, 94, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.story-card:hover .story-hover-effect {
    opacity: 1;
}

/* ==================== INSTAGRAM-STYLE STORY VIEWER ==================== */
.story-viewer-modern {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-viewer-modern.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Backdrop - Instagram-like dark overlay */
.story-viewer-backdrop {
    position: absolute;
    inset: 0;
    background: #000000;
    animation: backdropFade 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes backdropFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Viewer Modal - Instagram-style */
.story-viewer-modal {
    position: relative;
    width: min(420px, 100vw);
    height: min(840px, 95vh);
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.8);
    animation: modalSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, opacity;
    backface-visibility: hidden;
    isolation: isolate;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Close Button - Instagram-style */
.story-viewer-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(38, 38, 38, 0.8);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-size: 20px;
}

.story-viewer-close:hover {
    background: rgba(60, 60, 60, 0.9);
    transform: scale(1.05);
}

.story-viewer-close:active {
    transform: scale(0.95);
}

/* Story Header - Instagram-style */
.story-viewer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px 8px;
    z-index: 10;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.story-viewer-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    padding: 2px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    flex-shrink: 0;
    box-shadow: 0 0 0 2px #000000;
}

.story-viewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #000000;
}

.story-viewer-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.story-viewer-title {
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.story-viewer-counter {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Share Button - Instagram-style */
.story-viewer-share {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 20px;
}

.story-viewer-share:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.story-viewer-share:active {
    transform: scale(0.95);
}

/* Volume Button - Instagram-style */
.story-viewer-volume {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 18px;
}

.story-viewer-volume.active {
    display: flex;
}

.story-viewer-volume:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.story-viewer-volume:active {
    transform: scale(0.95);
}

.story-viewer-volume.muted {
    opacity: 0.6;
}

/* Progress Bars - Instagram-style thin bars */
.story-viewer-progress {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 4px;
    padding: 0 8px 8px;
    z-index: 10;
}

.story-progress-bar {
    background: rgba(255, 255, 255, 0.3);
    height: 2px;
    border-radius: 2px;
    overflow: hidden;
}

.story-progress-fill {
    height: 100%;
    width: 0%;
    background: #ffffff;
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* Story Content - Instagram-style */
.story-viewer-content {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    background: #000000;
    z-index: 5;
    transform: translateZ(0);
    will-change: transform;
}

.story-viewer-media {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: 100%;
    height: 100%;
    transform: translateZ(0);
}

.story-viewer-image {
    object-fit: contain;
}

.story-viewer-video {
    display: none;
    object-fit: contain;
}

/* Caption - Instagram-style */
.story-viewer-caption {
    position: absolute;
    bottom: 80px;
    left: 16px;
    right: 16px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    padding: 20px 12px 12px;
    border-radius: 12px;
    text-align: center;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Story Actions - Instagram-style */
.story-viewer-actions {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.story-action-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.story-action-btn.is-active {
    background: rgba(244, 63, 94, 0.18);
    border-color: #f43f5e;
    color: #f43f5e;
}

.story-action-btn.is-active i {
    color: #f43f5e;
}

.story-action-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

/* Story Comment Panel */
.story-comment-panel {
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 14px 12px;
    opacity: 0;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
    will-change: transform, opacity;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: 0 -18px 32px -18px rgba(0, 0, 0, 0.7);
    pointer-events: none;
    contain: layout paint;
    backface-visibility: hidden;
}

.story-comment-panel-floating {
    position: fixed;
    left: 50%;
    bottom: var(--story-panel-bottom, 0px);
    width: min(420px, 100vw);
    height: 45%;
    min-height: 220px;
    max-height: 60%;
    transform: translate3d(-50%, 100%, 0);
    z-index: 100001;
}

.story-comment-panel.is-open {
    opacity: 1;
    pointer-events: auto;
}

.story-comment-panel-floating.is-open {
    transform: translate3d(-50%, 0, 0);
}

.story-comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 14px;
}

.story-comment-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.story-comment-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
}

.story-comment-list::-webkit-scrollbar {
    width: 6px;
}

.story-comment-list::-webkit-scrollbar-track {
    background: transparent;
}

.story-comment-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
}

.story-comment-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

.story-comment-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.story-comment-info {
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(251, 191, 36, 0.14);
    border: 1px solid rgba(251, 191, 36, 0.28);
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    line-height: 1.35;
}

.story-comment-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.story-comment-meta-right {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.story-comment-status {
    display: inline-flex;
    align-items: center;
    height: 18px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.story-comment-status.is-pending {
    background: rgba(251, 191, 36, 0.18);
    border: 1px solid rgba(251, 191, 36, 0.35);
    color: rgba(255, 255, 255, 0.95);
}

.story-comment-text {
    font-size: 13px;
    line-height: 1.4;
    color: #ffffff;
    white-space: pre-wrap;
}

.story-comment-form {
    display: flex;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 10px;
}

.story-comment-input {
    flex: 1;
    min-height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 8px 12px;
    font-size: 13px;
    outline: none;
    resize: none;
    line-height: 1.4;
}

.story-comment-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.story-comment-submit {
    height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    border: none;
    background: #ffffff;
    color: #111111;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.story-comment-empty {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 6px;
}

/* CTA ile aksiyonların çakışmasını engelle */
.story-viewer-modern.has-link .story-viewer-actions {
    bottom: 84px;
}

.story-viewer-modern.has-link .story-viewer-caption {
    bottom: 140px;
}

.story-viewer-modern.comment-open .story-viewer-actions,
.story-viewer-modern.comment-open .story-viewer-link {
    opacity: 0.25;
    pointer-events: none;
}

.story-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.story-action-btn:active {
    transform: scale(0.95);
}

/* Link Button (CTA) - Instagram-style */
.story-viewer-link {
    position: absolute;
    bottom: 24px;
    left: 16px;
    right: 16px;
    padding: 14px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.3);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 10;
    text-decoration: none;
}

.story-viewer-link:hover {
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px -4px rgba(0, 0, 0, 0.4);
}

.story-viewer-link:active {
    transform: translateY(0);
}

.story-viewer-link.hidden {
    display: none;
}

/* Navigation Buttons - Instagram-style */
.story-viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(38, 38, 38, 0.6);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-size: 18px;
}

.story-viewer-nav:hover {
    background: rgba(60, 60, 60, 0.8);
    transform: translateY(-50%) scale(1.05);
}

.story-viewer-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.story-viewer-prev {
    left: 12px;
}

.story-viewer-next {
    right: 12px;
}

/* Tap Areas for Mobile */
.story-tap-prev,
.story-tap-next {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30%;
    z-index: 5;
    cursor: pointer;
}

.story-tap-prev {
    left: 0;
}

.story-tap-next {
    right: 0;
}

/* Mobile Responsive - Instagram-style */
@media (max-width: 640px) {
    .story-viewer-modal {
        width: 100%;
        height: 100%;
        border-radius: 0;
        max-height: 100vh;
    }

    .story-viewer-nav {
        display: none;
    }

    .story-viewer-actions {
        bottom: 100px;
    }

    .story-viewer-link {
        bottom: 90px;
    }

    .story-viewer-modern.has-link .story-viewer-actions {
        bottom: 140px;
    }

    .story-viewer-modern.has-link .story-viewer-caption {
        bottom: 200px;
    }

    .story-viewer-close {
        top: 16px;
        right: 16px;
    }

    .story-count-badge {
        min-width: 18px;
        height: 18px;
        font-size: 9px;
        border: 2px solid white;
    }

    .story-ring-wrapper {
        width: 70px;
        height: 70px;
    }
}

/* Tablet */
@media (min-width: 641px) and (max-width: 1024px) {
    .story-ring-wrapper {
        width: 75px;
        height: 75px;
    }
}

/* ================================
   Orta Blok Slider Styles
   ================================ */
[class*="ortablok-slider-"] {
    margin: 0 -0.5rem;
}

[class*="ortablok-slider-"] .slick-prev,
[class*="ortablok-slider-"] .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

[class*="ortablok-slider-"] .slick-prev {
    left: -20px;
}

[class*="ortablok-slider-"] .slick-next {
    right: -20px;
}

[class*="ortablok-slider-"] .slick-prev:hover,
[class*="ortablok-slider-"] .slick-next:hover {
    background: #d72626;
    border-color: #d72626;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

[class*="ortablok-slider-"] .slick-prev i,
[class*="ortablok-slider-"] .slick-next i {
    font-size: 14px;
    color: #374151;
    transition: color 0.3s ease;
}

[class*="ortablok-slider-"] .slick-prev:hover i,
[class*="ortablok-slider-"] .slick-next:hover i {
    color: white;
}

[class*="ortablok-slider-"] .slick-dots {
    bottom: -40px;
    margin-top: 20px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

[class*="ortablok-slider-"] .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

[class*="ortablok-slider-"] .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    background: #d1d5db;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 0;
    color: transparent;
    text-indent: -9999px;
    overflow: hidden;
}

/* Blog detay içerik: editördeki etiket stillerini bozmadan akışta tut */
.blog-content {
    line-height: 1.75;
}

.blog-content :where(p, ul, ol, blockquote, pre, table) {
    margin: 1em 0;
}

.blog-content :where(h1, h2, h3, h4, h5, h6) {
    margin: 1.2em 0 0.6em;
    font-weight: 700;
    line-height: 1.25;
}

.blog-content h1 {
    font-size: 2em;
}

.blog-content h2 {
    font-size: 1.5em;
}

.blog-content h3 {
    font-size: 1.25em;
}

.blog-content h4 {
    font-size: 1.125em;
}

.blog-content h5 {
    font-size: 1em;
}

.blog-content h6 {
    font-size: 0.875em;
}

.blog-content :where(ul, ol) {
    padding-left: 1.25rem;
}

.blog-content ul {
    list-style: disc;
}

.blog-content ol {
    list-style: decimal;
}

.blog-content li {
    margin: 0.35em 0;
}

.blog-content blockquote {
    border-left: 4px solid #e5e7eb;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
}

.blog-content a {
    color: #d72626;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
}

.blog-content :where(th, td) {
    border: 1px solid #e5e7eb;
    padding: 0.5rem 0.75rem;
    vertical-align: top;
}

.blog-content img {
    max-width: 100%;
    height: auto;
}

/* Ürün açıklama: editördeki etiket stillerini ön yüzde aynen göster */
.product-description {
    line-height: 1.75;
}

.product-description :where(p, ul, ol, blockquote, pre, table) {
    margin: 1em 0;
}

.product-description :where(h1, h2, h3, h4, h5, h6) {
    margin: 1.2em 0 0.6em;
    font-weight: 700;
    line-height: 1.25;
}

.product-description h1 {
    font-size: 1.75em;
}

.product-description h2 {
    font-size: 1.4em;
}

.product-description h3 {
    font-size: 1.2em;
}

.product-description h4 {
    font-size: 1.1em;
}

.product-description :where(ul, ol) {
    padding-left: 1.5rem;
}

.product-description ul {
    list-style: disc;
}

.product-description ol {
    list-style: decimal;
}

.product-description li {
    margin: 0.35em 0;
}

.product-description blockquote {
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
}

.product-description a {
    color: #00A4C3;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.product-description table {
    width: 100%;
    border-collapse: collapse;
}

.product-description :where(th, td) {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 0.75rem;
    vertical-align: top;
}

.product-description img {
    max-width: 100%;
    height: auto;
}

.product-description strong,
.product-description b {
    font-weight: 700;
}

[class*="ortablok-slider-"] .slick-dots li button:before {
    display: none;
}

[class*="ortablok-slider-"] .slick-dots li.slick-active button {
    background: #d72626;
    width: 24px;
    border-radius: 5px;
}

@media (max-width: 640px) {
    [class*="ortablok-slider-"] .slick-prev {
        left: 0;
    }

    [class*="ortablok-slider-"] .slick-next {
        right: 0;
    }
}

/* ================================
   Üye Yorum Slider Styles
   ================================ */
.yorum-slider {
    margin: 0 -0.75rem;
}

.yorum-slider .yorum-stars i {
    margin-right: 2px;
}

.yorum-slider .slick-dots {
    bottom: -42px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.yorum-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.yorum-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    background: #d1d5db;
    border-radius: 9999px;
    transition: all 0.3s ease;
    font-size: 0;
    color: transparent;
    text-indent: -9999px;
    overflow: hidden;
}

.yorum-slider .slick-dots li button:before {
    display: none;
}

.yorum-slider .slick-dots li.slick-active button {
    background: #d72626;
    width: 28px;
}