/* ===================================
   SEBIN SUT - BIZIMSUFRE STYLE
   Minimalist, dark, hamburger menu
   Green theme: #1B7A3D
   =================================== */

/* --- Custom Properties --- */
:root {
    --primary: #1B7A3D;
    --primary-dark: #145C2E;
    --primary-light: #2E8B3D;
    --primary-gradient: radial-gradient(540px 540px at 245.38% 50%, #2E8B3D 0%, #145C2E 100%);
    --dark-bg: #1a1a1a;
    --text-white: #fff;
    --text-gray: rgba(255,255,255,0.7);
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Page transition */
body {
    animation: pageIn 0.3s ease-out;
}
body.page-leaving {
    pointer-events: none;
}
@keyframes pageIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Page loader overlay */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(255,255,255,0.95);
    display: none;
    align-items: center;
    justify-content: center;
}
.page-loader.active {
    display: flex;
}
.page-loader img {
    width: 64px;
    height: 64px;
    animation: loaderPulse 1s ease-in-out infinite;
}
@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.12); opacity: 1; }
}

body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    opacity: 1 !important;
}

/* ==========================================
   SEBIN HEADER
   ========================================== */
.tk-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 0;
    pointer-events: none;
}

.tk-header > * {
    pointer-events: auto;
}

.tk-header a {
    text-decoration: none !important;
}

/* ==========================================
   LOGO (CENTER, BIG)
   ========================================== */
.tk-logo {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 110;
    display: block;
    transition: opacity 0.3s, top 0.3s;
}

.tk-logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s;
}

.tk-logo:hover {
    opacity: 0.85;
}

/* ==========================================
   KESFET TOGGLE (LEFT) + MENU
   ========================================== */
.tk-menu-toggle-wrap {
    position: fixed;
    top: 32px;
    left: 40px;
    z-index: 120;
}

.tk-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none !important;
    padding: 10px 26px;
    border-radius: 30px;
    background: var(--primary);
    border: none;
    transition: background 0.3s;
    cursor: pointer;
}

.tk-menu-toggle:hover {
    background: var(--primary-dark);
    color: #fff;
}

.tk-menu-toggle span {
    display: inline-flex;
    font-size: 0.6rem;
    transition: transform 0.3s;
}

.tk-menu-toggle-wrap.open .tk-menu-toggle span {
    transform: rotate(180deg);
}

.tk-menu-toggle-wrap.open .tk-menu-toggle {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* Fullscreen Menu Overlay */
.tk-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.92);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 115;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.tk-menu-toggle-wrap.open .tk-menu {
    opacity: 1;
    visibility: visible;
}

.tk-menu-body {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
}

/* Category Grid inside menu */
.tk-menu-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
}

.tk-menu-cat-link {
    display: block;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none !important;
    padding: 1rem 2rem;
    position: relative;
    transition: color 0.2s, transform 0.2s;
}

.tk-menu-cat-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}

.tk-menu-cat-link:hover {
    color: var(--primary-light);
    transform: translateY(-2px);
}

.tk-menu-cat-link:hover::after {
    width: 60%;
}

/* Menu Footer */
.tk-menu-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
}

.tk-menu-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none !important;
    padding: 10px 24px;
    border: 1px solid var(--primary-light);
    border-radius: 30px;
    transition: background 0.3s, color 0.3s;
    margin-bottom: 1.5rem;
}

.tk-menu-all:hover {
    background: var(--primary-light);
    color: #fff;
}

.tk-menu-all i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.tk-menu-all:hover i {
    transform: translateX(4px);
}

.tk-menu-pages {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.tk-menu-pages a {
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: color 0.2s;
}

.tk-menu-pages a:hover {
    color: #fff;
}

/* ==========================================
   RIGHT ACTIONS (search, user, cart)
   ========================================== */
.tk-right-actions {
    position: fixed;
    top: 32px;
    right: 40px;
    z-index: 110;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tk-action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    text-decoration: none !important;
    transition: color 0.2s;
    cursor: pointer;
    position: relative;
    border-radius: 50%;
}

.tk-action-icon:hover {
    color: #fff;
}

/* Search input (inline expand) */
.tk-search-input {
    width: 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #fff;
    font-size: 0.9rem;
    font-family: var(--font-body);
    padding: 6px 0;
    outline: none;
    transition: width 0.3s ease, margin 0.3s ease;
    margin-right: 0;
}

.tk-search-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.tk-right-actions.search-open .tk-search-input {
    width: 180px;
    margin-right: 6px;
}

/* Cart badge */
.tk-cart-badge {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 17px;
    height: 17px;
    background: var(--primary);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

/* ==========================================
   SOCIAL MEDIA (right side, vertical)
   ========================================== */
.tk-social {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 110;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tk-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: rgba(255,255,255,0.4);
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: color 0.2s, transform 0.2s;
    border-radius: 50%;
}

.tk-social li a:hover {
    color: #fff;
    transform: scale(1.15);
}

/* ==========================================
   TAGLINE (bottom-right, vertical)
   ========================================== */
.tk-tagline {
    position: fixed;
    bottom: 30px;
    right: 40px;
    z-index: 110;
    color: rgba(255,255,255,0.25);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.tk-tagline strong {
    color: rgba(255,255,255,0.4);
    font-weight: 700;
}

/* ==========================================
   SCROLLED STATE
   ========================================== */
.tk-header::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 105;
}

.tk-header.tk-scrolled::before {
    opacity: 1;
}

/* ==========================================
   SOLID HEADER (non-homepage)
   ========================================== */
.tk-header-solid::before {
    opacity: 1 !important;
}

.tk-header-solid .tk-action-icon {
    color: rgba(0,0,0,0.5);
}

.tk-header-solid .tk-action-icon:hover {
    color: #000;
}

.tk-header-solid .tk-search-input {
    border-color: rgba(0,0,0,0.2);
    color: #1a1a1a;
}

.tk-header-solid .tk-search-input::placeholder {
    color: rgba(0,0,0,0.3);
}

.tk-header-solid .tk-social li a {
    color: rgba(0,0,0,0.25);
}

.tk-header-solid .tk-social li a:hover {
    color: var(--primary);
}

.tk-header-solid .tk-tagline {
    color: rgba(0,0,0,0.12);
}

.tk-header-solid .tk-tagline strong {
    color: rgba(0,0,0,0.2);
}

.tk-header-solid .tk-logo {
    top: 12px;
}

.tk-header-solid .tk-logo-img {
    height: 55px;
}

.tk-header-solid .tk-menu-toggle-wrap {
    top: 18px;
}

.tk-header-solid .tk-right-actions {
    top: 18px;
}

.tk-header-solid ~ * {
    margin-top: 50px;
}

.tk-header.tk-scrolled .tk-logo-img {
    height: 55px;
}

.tk-header.tk-scrolled .tk-logo {
    top: 12px;
}

.tk-header.tk-scrolled .tk-menu-toggle-wrap {
    top: 18px;
}

.tk-header.tk-scrolled .tk-menu-toggle {
    background: var(--primary);
    color: #fff;
}

.tk-header.tk-scrolled .tk-menu-toggle:hover {
    background: var(--primary-dark);
    color: #fff;
}

.tk-header.tk-scrolled .tk-right-actions {
    top: 18px;
}

.tk-header.tk-scrolled .tk-action-icon {
    color: rgba(0,0,0,0.5);
}

.tk-header.tk-scrolled .tk-action-icon:hover {
    color: #000;
}

.tk-header.tk-scrolled .tk-search-input {
    border-color: rgba(0,0,0,0.2);
    color: #1a1a1a;
}

.tk-header.tk-scrolled .tk-search-input::placeholder {
    color: rgba(0,0,0,0.3);
}

.tk-header.tk-scrolled .tk-social li a {
    color: rgba(0,0,0,0.25);
}

.tk-header.tk-scrolled .tk-social li a:hover {
    color: var(--primary);
}

.tk-header.tk-scrolled .tk-tagline {
    color: rgba(0,0,0,0.12);
}

.tk-header.tk-scrolled .tk-tagline strong {
    color: rgba(0,0,0,0.2);
}

/* ==========================================
   LEGACY MOBILE PANEL (hidden, not used)
   ========================================== */
.slide-panel { display: none; }
.overlay-body { display: none; }

/* ==========================================
   HEADER RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .tk-social { display: none; }
    .tk-tagline { display: none; }

    .tk-logo { top: 14px; }
    .tk-logo-img { height: 55px; }

    .tk-menu-toggle-wrap {
        top: 22px;
        left: 20px;
    }

    .tk-right-actions {
        top: 22px;
        right: 20px;
    }

    .tk-menu-cat-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .tk-logo { top: 10px; }
    .tk-logo-img { height: 42px; }

    .tk-menu-toggle-wrap {
        top: 16px;
        left: 12px;
    }

    .tk-menu-toggle {
        font-size: 0.72rem;
        padding: 8px 16px;
        gap: 5px;
    }

    .tk-right-actions {
        top: 16px;
        right: 10px;
        gap: 0;
    }

    .tk-action-icon {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }

    .tk-search-input { display: none; }

    .tk-menu-cat-link {
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }

    .tk-menu-pages {
        gap: 1rem;
    }

    .tk-menu-pages a {
        font-size: 0.72rem;
    }
}

/* ==========================================
   HERO SLIDER
   ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000 url('images/slider/slider-placeholder.png') center/cover no-repeat;
}

/* Placeholder - geçişlerde görünür, video/resim hazır olunca kaybolur */
.hero-placeholder {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease;
}
.hero-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-placeholder.hidden {
    opacity: 0;
    pointer-events: none;
}

.hero-section .swiper {
    width: 100%;
    height: 100%;
}
.hero-section .swiper:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
}
.hero-section .swiper:not(.swiper-initialized) .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}
.hero-section .swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
    display: none;
}

.hero-section .swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease-out;
}
.hero-bg-mobile {
    display: none;
}
@media (max-width: 768px) {
    .hero-bg-mobile {
        display: block;
        z-index: 1;
    }
    .hero-bg-mobile ~ .hero-slide-overlay {
        z-index: 2;
    }
}

/* Aktif slayttaki görsele yavaş zoom (Ken Burns) */
.hero-section .swiper-slide-active .hero-slide-bg {
    transform: scale(1.05);
}

.hero-slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.hero-slide-video.playing {
    opacity: 1;
}

.hero-video-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-video-mobile {
        display: block;
    }
    .has-mobile-video .hero-video-desktop {
        display: none;
    }
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%);
}

/* Scroll indicator - mouse icon */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 13px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 22px; }
}

.scroll-indicator .scroll-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.products-section {
    position: relative;
    padding: 6rem 0;
    background: #111;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px 600px at 30% 40%, rgba(27,122,61,0.15) 0%, transparent 100%);
    pointer-events: none;
}

.products-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.products-section .section-title h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    margin: 0;
    line-height: 1.1;
}

/* Category tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.category-tabs .tab-item {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0;
    border: none;
    background: none;
    position: relative;
    transition: color 0.3s;
    letter-spacing: 0.02em;
}

.category-tabs .tab-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.category-tabs .tab-item:hover {
    color: rgba(255,255,255,0.8);
}

.category-tabs .tab-item.active {
    color: #fff;
}

.category-tabs .tab-item.active::after {
    width: 100%;
}

/* Product carousel */
.product-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.product-carousel .swiper-slide {
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.4;
    transform: scale(0.8);
}

.product-carousel .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.product-carousel .swiper-slide-prev,
.product-carousel .swiper-slide-next {
    opacity: 0.6;
    transform: scale(0.85);
}

/* Product item in carousel */
.product-item {
    text-align: center;
    position: relative;
}

.product-item .product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-item .product-image-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    transition: transform 0.5s ease;
}

.product-item:hover .product-image-wrap img {
    transform: scale(1.05);
}

.product-item .product-name {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    opacity: 0.9;
}

/* Active product detail panel (shows for center slide) */
.product-detail-panel {
    position: absolute;
    right: -40%;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    opacity: 0;
    transition: opacity 0.5s ease, right 0.5s ease;
    pointer-events: none;
    z-index: 10;
}

.swiper-slide-active .product-detail-panel {
    opacity: 1;
    right: -60%;
    pointer-events: auto;
}

.product-detail-panel .detail-category {
    color: var(--primary-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.product-detail-panel .detail-name {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-detail-panel .detail-weight {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.product-detail-panel .detail-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-detail-panel .detail-btn {
    display: inline-block;
    padding: 0.7rem 2rem;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.product-detail-panel .detail-btn:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
}

/* Carousel navigation arrows */
.product-carousel-wrapper .swiper-button-prev,
.product-carousel-wrapper .swiper-button-next {
    color: rgba(255,255,255,0.5);
    width: 44px;
    height: 44px;
}

.product-carousel-wrapper .swiper-button-prev::after,
.product-carousel-wrapper .swiper-button-next::after {
    font-size: 1.2rem;
}

.product-carousel-wrapper .swiper-button-prev:hover,
.product-carousel-wrapper .swiper-button-next:hover {
    color: #fff;
}

/* ==========================================
   PEYNIRCIBABA-STYLE SHOP SECTIONS
   Dense grid, square images, full-width cart btn
   ========================================== */

/* Wrapper */
.pb-shop-wrap {
    background: #f5f5f5;
}

/* Each category section */
.pb-cat-section {
    background: #fff;
    margin-bottom: 8px;
}

.pb-cat-section.pb-cat-even {
    background: #fafdf8;
}

.pb-cat-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 1.75rem 1.25rem 2rem;
}

/* Category Header Row */
.pb-cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #eef2ec;
}

.pb-cat-header-left {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    min-width: 0;
}

.pb-cat-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a2e1a;
    margin: 0;
    white-space: nowrap;
    padding-left: 0.75rem;
    border-left: 4px solid var(--primary);
    line-height: 1.3;
}

.pb-cat-desc {
    font-size: 0.85rem;
    color: #7a9174;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 400px;
}

.pb-cat-viewall {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.2s, color 0.2s;
    flex-shrink: 0;
}

.pb-cat-viewall:hover {
    gap: 0.65rem;
    color: var(--primary-dark);
}

.pb-cat-viewall i {
    font-size: 0.7rem;
}

/* Compact banner (optional image) */
.pb-cat-banner {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    max-height: 200px;
}

.pb-cat-banner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Product Grid (4 or fewer) */
.pb-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* Split layout: products + banner side by side */
.pb-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}
.pb-split-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.pb-split-banner {
    border-radius: 16px;
    overflow: hidden;
}
.pb-split-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Product Slider Wrap */
.pb-product-slider-wrap {
    position: relative;
}

.pb-product-swiper {
    overflow: hidden;
    padding: 0 0 0.5rem;
}

.pb-product-swiper .swiper-slide {
    height: auto;
}

/* Swiper yüklenmeden önce kartları gizle (FOUC engelle) */
.pb-product-swiper:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    gap: 1.25rem;
    overflow: hidden;
}

.pb-product-swiper:not(.swiper-initialized) .swiper-slide {
    flex: 0 0 calc(25% - 1rem);
    max-width: calc(25% - 1rem);
}

/* Slider navigation arrows */
.pb-swiper-prev,
.pb-swiper-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1.5px solid #e2e8e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1a2e1a;
    font-size: 0.85rem;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.pb-swiper-prev { left: -12px; }
.pb-swiper-next { right: -12px; }

.pb-swiper-prev:hover,
.pb-swiper-next:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pb-swiper-prev.swiper-button-disabled,
.pb-swiper-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* Product Card */
.pb-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.pb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(27,122,61,0.08), 0 8px 16px rgba(0,0,0,0.04);
}

/* Card Image */
.pb-card-img-link {
    display: block;
    position: relative;
    padding-bottom: 177.78%;
    height: 0;
    overflow: hidden;
    background: linear-gradient(145deg, #f0f7ed 0%, #e8f0e4 100%);
    text-decoration: none;
}

.pb-card-img-inner {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.pb-card-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.pb-card:hover .pb-card-img-link img {
    transform: scale(1.08);
}

.pb-card-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5d4bf;
    font-size: 2.5rem;
}

/* Quick-view overlay */
.pb-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27,122,61,0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.4s ease;
    pointer-events: none;
}

.pb-card:hover .pb-card-overlay {
    background: rgba(27,122,61,0.12);
}

.pb-card-quickview {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    opacity: 0;
    transform: scale(0.7) translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    pointer-events: auto;
}

.pb-card:hover .pb-card-quickview {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.pb-card-quickview:hover {
    background: var(--primary);
    color: #fff;
}

/* Video overlay */
.pb-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.pb-card:hover .pb-card-video {
    opacity: 1;
}

/* Discount badge */
.pb-badge-discount {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.65rem;
    border-radius: 20px;
    z-index: 4;
    line-height: 1.2;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 8px rgba(220,38,38,0.3);
}

/* Card Body */
.pb-card-body {
    padding: 1rem 1.1rem 1.1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Card Info */
.pb-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pb-card-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a2e1a;
    line-height: 1.45;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
    margin-bottom: 0.6rem;
    transition: color 0.25s ease;
    letter-spacing: -0.01em;
}

.pb-card-name:hover {
    color: var(--primary);
    text-decoration: none;
}

/* Price */
.pb-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 0.5rem;
}

.pb-price-now {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a2e1a;
    letter-spacing: -0.02em;
    line-height: 1;
}

.pb-price-old {
    font-size: 0.78rem;
    color: #b0b0b0;
    text-decoration: line-through;
    font-weight: 400;
}

.pb-price-login {
    font-size: 0.78rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.pb-price-login i {
    font-size: 0.65rem;
}

/* Actions */
.pb-card-actions {
    padding-top: 0.85rem;
    margin-top: auto;
}

.pb-card-cart-form {
    margin: 0;
}

.pb-cart-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.pb-btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.7rem 1rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pb-btn-cart::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pb-btn-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(27,122,61,0.3);
}

.pb-btn-cart:hover::before {
    opacity: 1;
}

.pb-btn-cart:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(27,122,61,0.2);
}

.pb-btn-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.7rem 1rem;
    background: transparent;
    color: var(--primary);
    border: 1.5px solid #d4e6ce;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pb-btn-detail:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(27,122,61,0.3);
    text-decoration: none;
}

.pb-btn-detail i {
    font-size: 0.72rem;
    transition: transform 0.3s ease;
}

.pb-btn-detail:hover i {
    transform: translateX(3px);
}

.pb-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.6rem 1rem;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pb-btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37,211,102,0.3);
    text-decoration: none;
}

.pb-btn-whatsapp:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(37,211,102,0.2);
}

.pb-btn-whatsapp i {
    font-size: 1.05rem;
}

/* ---- PB Grid + Slider Responsive ---- */
@media (max-width: 1100px) {
    .pb-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .pb-split-products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pb-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .pb-split-layout {
        grid-template-columns: 1fr;
    }
    .pb-split-products {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    .pb-split-banner {
        max-height: 280px;
    }
    .pb-cat-inner {
        padding: 1.25rem 1rem 1.5rem;
    }

    .pb-cat-desc {
        display: none;
    }

    .pb-card-body {
        padding: 0.75rem 0.8rem 0.8rem;
    }

    .pb-card-name {
        font-size: 0.82rem;
        min-height: 2.3em;
        margin-bottom: 0.4rem;
    }

    .pb-price-now {
        font-size: 1.1rem;
    }

    .pb-card-actions {
        padding-top: 0.65rem;
    }

    .pb-card-quickview {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .pb-card {
        border-radius: 12px;
    }

    .pb-swiper-prev,
    .pb-swiper-next {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }

    .pb-swiper-prev { left: -4px; }
    .pb-swiper-next { right: -4px; }
}

@media (max-width: 480px) {
    .pb-cat-title {
        font-size: 1.1rem;
    }

    .pb-cat-viewall {
        font-size: 0.8rem;
    }

    .pb-card-body {
        padding: 0.6rem 0.7rem 0.7rem;
    }

    .pb-btn-cart,
    .pb-btn-detail,
    .pb-btn-whatsapp {
        padding: 0.55rem 0.75rem;
        font-size: 0.78rem;
        border-radius: 8px;
    }

    .pb-card-overlay {
        display: none;
    }

    .pb-cat-banner {
        max-height: 140px;
    }

    .pb-cat-banner img {
        height: 140px;
    }

    .pb-swiper-prev { left: 2px; }
    .pb-swiper-next { right: 2px; }
}

/* ==========================================
   BLOG / IMAGE SECTION (2-column grid)
   ========================================== */
.image-grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.image-grid-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
}

.image-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-grid-item:hover img {
    transform: scale(1.05);
}

.image-grid-item .grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-grid-item:hover .grid-overlay {
    opacity: 1;
}

.image-grid-item .grid-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.image-grid-item .grid-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0.5rem 0 0 0;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    position: relative;
    color: rgba(255,255,255,0.85);
    padding: 0;
    overflow: hidden;
}

/* Video Zemin */
.ft-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    z-index: 0;
}

.ft-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,20,12,0.75);
    z-index: 1;
}

/* Container - genis */
.ft-container {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Grid */
.ft-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand Column */
.ft-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ft-logo img {
    height: 55px;
    width: auto;
}

.ft-brand-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin: 0;
    max-width: 340px;
}

/* Social Icons */
.ft-social {
    display: flex;
    gap: 0.65rem;
    margin-top: 0.5rem;
}

.ft-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.5);
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.25s;
}

.ft-social a:hover {
    background: #16a34a;
    color: #fff;
    transform: translateY(-2px);
}

/* Column */
.ft-col {
    display: flex;
    flex-direction: column;
}

.ft-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 1.25rem;
}

/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.ft-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    transition: color 0.2s, padding-left 0.2s;
}

.ft-links a:hover {
    color: #4ade80;
    padding-left: 4px;
}

/* Contact */
.ft-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.ft-contact li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.ft-contact li i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.ft-contact li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.ft-contact li a:hover {
    color: #4ade80;
}

/* Bottom Bar */
.ft-bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ft-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.2);
}

.ft-credit {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    background: #fff;
    color: #333;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 5px;
    transition: box-shadow 0.2s;
}
.ft-credit:hover {
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.ft-credit img {
    height: 16px;
    width: auto;
}

/* Responsive */
@media (max-width: 1100px) {
    .ft-container {
        padding: 0 2rem;
    }
}

@media (max-width: 900px) {
    .ft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .ft-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 2.5rem 0 2rem;
    }
    .ft-container {
        padding: 0 1.25rem;
    }
    .ft-brand-desc {
        max-width: 100%;
    }
}

/* ==========================================
   SCROLL TO TOP
   ========================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 900;
}

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

.scroll-top-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1200px) {
    .swiper-slide-active .product-detail-panel {
        display: none;
    }
}

@media (max-width: 1024px) {
    .products-section .section-title h2 {
        font-size: 2.5rem;
    }

    .category-tabs {
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }

    .products-section {
        padding: 4rem 0;
    }

    .products-section .section-title h2 {
        font-size: 2rem;
    }

    .category-tabs {
        gap: 1rem;
    }

    .category-tabs .tab-item {
        font-size: 0.85rem;
    }

    .image-grid-section {
        grid-template-columns: 1fr;
    }

    .footer-top {
        gap: 1.25rem;
    }

    .footer-top a {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 450px;
    }

    .products-section .section-title h2 {
        font-size: 1.75rem;
    }
}

/* ===========================================
   GLOBAL LEGACY PAGE OVERRIDES
   Tum sayfalari temiz yesil temaya uyarlar
   =========================================== */

/* --- Global Body & Container --- */
.main-body {
    background: #FAFDF8 !important;
    font-family: var(--font-body) !important;
    min-height: 100vh;
}

#MainDiv,
.users_main_div,
.cat-detail-main-div,
.cart-main-div,
.no-cart-items-main-div,
.iletisim-container-main {
    font-family: var(--font-body) !important;
}

/* --- Page Banners --- */
.page-banner-main {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
    padding: 3rem 0 !important;
    min-height: auto !important;
}

.page-banner-in-text {
    width: 100% !important;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.page-banner-h {
    font-family: var(--font-body) !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 0.5rem;
}

.page-banner-links {
    font-size: 0.875rem !important;
    color: rgba(255,255,255,0.7) !important;
}

.page-banner-links a {
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none !important;
    transition: color 0.2s;
}

.page-banner-links a:hover {
    color: #fff !important;
}

.page-banner-links span {
    color: rgba(255,255,255,0.5) !important;
}

/* --- Buttons (Global Override) --- */
.button-blue,
.button-green,
.button-black {
    background: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    color: #fff !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 0.65rem 1.5rem !important;
    font-size: 0.9rem !important;
    cursor: pointer;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    display: inline-block;
    text-align: center;
    font-family: var(--font-body) !important;
}

.button-blue:hover,
.button-green:hover,
.button-black:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27,122,61,0.2);
}

.button-blue-out,
.button-green-out,
.button-black-out,
.button-white-out {
    background: transparent !important;
    border: 1.5px solid var(--primary) !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 0.65rem 1.5rem !important;
    font-size: 0.9rem !important;
    cursor: pointer;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    font-family: var(--font-body) !important;
}

.button-blue-out:hover,
.button-green-out:hover,
.button-black-out:hover,
.button-white-out:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

.button-grey {
    background: #e2e8e0 !important;
    border: 1px solid #d0d8ce !important;
    color: #1a2e1a !important;
    border-radius: 8px !important;
    padding: 0.65rem 1.5rem !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.2s !important;
}

.button-grey:hover {
    background: #d0d8ce !important;
    color: #1a2e1a !important;
}

.button-1x { padding: 0.5rem 1.25rem !important; font-size: 0.85rem !important; }
.button-2x { padding: 0.65rem 1.5rem !important; font-size: 0.9rem !important; }
.button-3x { padding: 0.75rem 2rem !important; font-size: 0.95rem !important; }

/* --- Form Controls --- */
.form-control {
    border: 1.5px solid #d4ddd2 !important;
    border-radius: 8px !important;
    padding: 0.65rem 0.9rem !important;
    font-size: 0.9rem !important;
    color: #1a2e1a !important;
    background: #fff !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    font-family: var(--font-body) !important;
    outline: none !important;
    width: 100%;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(27,122,61,0.1) !important;
}

.form-control::placeholder {
    color: #a0b09a !important;
}

.form-group {
    margin-bottom: 1rem !important;
}

.form-group label {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #1a2e1a !important;
    margin-bottom: 0.35rem !important;
    display: block;
    font-family: var(--font-body) !important;
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

select.form-control {
    appearance: auto;
}

/* --- Teslimat (Delivery) Page --- */
.teslimat-page-main-div {
    font-family: var(--font-body) !important;
    background: #f5f5f7 !important;
}

.teslimat-page-main {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 2rem 1.5rem 3rem !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
    gap: 24px !important;
}

.teslimat-bilgileri-div {
    flex: 1 !important;
    width: auto !important;
    margin-right: 0 !important;
    border-radius: 0 !important;
    min-width: 0 !important;
}

/* Section boxes (address, form, payment, summary) */
.teslimat-bilgileri-sol-kutular,
.teslimat-bilgileri-sol-kutular-dar,
.teslimat-bilgileri-uye-adres-main,
.teslimat-odeme-secimi,
.teslimat-sepet-ozet-main,
.teslimat-onaybutton-main {
    border: 1px solid #e8e8ed !important;
    border-radius: 16px !important;
    background-color: #fff !important;
    padding: 1.5rem !important;
    margin-bottom: 1rem !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04) !important;
    overflow: visible !important;
}

/* Section headings */
.teslimat-bilgi-baslik {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #1d1d1f !important;
    border-bottom: 1px solid #e8e8ed !important;
    padding-bottom: 0.75rem !important;
    margin-bottom: 1.25rem !important;
    padding-bottom: 10px !important;
    margin-bottom: 20px !important;
    font-family: var(--font-body) !important;
}

.teslimat-odeme-main-h,
.teslimat-sepet-ozet-main-h {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #1d1d1f !important;
    border-bottom: 1px solid #e8e8ed !important;
    padding-bottom: 0.75rem !important;
    margin-bottom: 1rem !important;
    padding-bottom: 10px !important;
    font-family: var(--font-body) !important;
}

.teslimat-odeme-main-h i,
.teslimat-sepet-ozet-main-h i {
    color: var(--primary) !important;
}

/* Address cards */
.teslimat-bilgileri-adres-box {
    width: 48% !important;
    margin-right: 2% !important;
    margin-bottom: 1rem !important;
}

.teslimat-bilgileri-adres-box label {
    border: 1.5px solid #e8e8ed !important;
    border-radius: 14px !important;
    padding: 1.25rem !important;
    transition: all 0.25s !important;
    font-family: var(--font-body) !important;
}

.teslimat-bilgileri-adres-box label:hover {
    border-color: #b5d4b8 !important;
    box-shadow: 0 2px 8px rgba(27,122,61,0.06) !important;
}

.teslimat-bilgileri-adres-box input:checked+label {
    border: 2px solid var(--primary) !important;
    box-shadow: 0 2px 12px rgba(27,122,61,0.1) !important;
    margin-bottom: 10px !important;
}

.teslimat-bilgileri-adres-box input:checked+label .teslimat-bilgileri-adres-box-secili {
    background-color: var(--primary) !important;
    border-radius: 0 0 8px 8px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
}

.teslimat-bilgileri-adres-box-2-sm {
    font-size: 0.8rem !important;
    color: #4a5a4a !important;
    line-height: 1.5 !important;
}

/* "Add new address" box */
.teslimat-bilgileri-uye-adres-yok-box {
    border: 2px dashed #d4ddd2 !important;
    border-radius: 12px !important;
    background-color: #fafdf8 !important;
    transition: all 0.2s !important;
    font-family: var(--font-body) !important;
    color: #4a5a4a !important;
}

.teslimat-bilgileri-uye-adres-yok-box:hover {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    background-color: #f0f7f0 !important;
}

.teslimat-bilgileri-uye-adres-yok-box-icon {
    background-color: #f0f7f0 !important;
    border: 1.5px solid #d4ddd2 !important;
    color: var(--primary) !important;
    width: 52px !important;
    height: 52px !important;
    transition: all 0.2s !important;
}

.teslimat-bilgileri-uye-adres-yok-box:hover .teslimat-bilgileri-uye-adres-yok-box-icon {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}

/* Form area */
.teslimat-form-area {
    padding: 0 !important;
}

.teslimat-form-area .form-group {
    margin-bottom: 20px !important;
}

.teslimat-form-area .form-group label {
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: #1d1d1f !important;
    font-family: var(--font-body) !important;
    margin-bottom: 0.4rem !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.teslimat-form-area .form-control,
.teslimat-form-area input,
.teslimat-form-area select,
.teslimat-form-area textarea {
    border: 1px solid #d2d2d7 !important;
    border-radius: 10px !important;
    padding: 0.65rem 0.85rem !important;
    font-size: 0.88rem !important;
    color: #1d1d1f !important;
    background: #fff !important;
    font-family: var(--font-body) !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    outline: none !important;
    background-color: #fff !important;
    color: #1a2e1a !important;
    width: 100% !important;
    box-sizing: border-box !important;
    height: auto !important;
    min-height: 50px !important;
    line-height: 1.5 !important;
}

.teslimat-form-area select,
.teslimat-form-area select.form-control {
    min-height: 50px !important;
    appearance: auto !important;
    padding: 12px 16px !important;
}

.teslimat-form-area textarea,
.teslimat-form-area textarea.form-control {
    min-height: 90px !important;
    resize: vertical !important;
}

.teslimat-form-area .form-control:focus,
.teslimat-form-area input:focus,
.teslimat-form-area select:focus,
.teslimat-form-area textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(27,122,61,0.1) !important;
}

.teslimat-form-area input::placeholder,
.teslimat-form-area .form-control::placeholder {
    color: #a0afa0 !important;
    font-size: 0.95rem !important;
}

/* Payment method boxes */
.teslimat-odeme-main-box {
    border-bottom: 1px solid #f0f3ef !important;
    padding: 14px 0 10px !important;
    transition: background-color 0.15s !important;
}

.teslimat-odeme-main-box:last-child {
    border-bottom: 0 !important;
}

/* Order summary rows */
.teslimat-sepet-ozet-main-box {
    border-bottom: 1px solid #f0f3ef !important;
    padding: 10px 0 !important;
    font-size: 0.9rem !important;
    color: #2a3a2a !important;
    font-family: var(--font-body) !important;
}

.teslimat-sepet-ozet-main-box:last-child {
    border-bottom: 0 !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    color: #1a2e1a !important;
    padding-top: 12px !important;
}

/* Confirm button area */
.teslimat-onaybutton-main {
    text-align: center !important;
}

.teslimat-onaybutton-main .btn,
.teslimat-onaybutton-main button[type="submit"],
.teslimat-onaybutton-main input[type="submit"] {
    background-color: var(--primary) !important;
    border: none !important;
    border-radius: 980px !important;
    padding: 0.75rem 2rem !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    width: 100% !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    letter-spacing: 0.3px !important;
    transition: background-color 0.2s, transform 0.15s !important;
    font-family: var(--font-body) !important;
    cursor: pointer !important;
    width: 100% !important;
}

.teslimat-onaybutton-main .btn:hover,
.teslimat-onaybutton-main button[type="submit"]:hover,
.teslimat-onaybutton-main input[type="submit"]:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-1px) !important;
}

/* Error box */
.teslimat-bilgi-hata-main-box {
    border: 1px solid #e2e8e0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.teslimat-bilgi-hata-main-text-h {
    background-color: #dc3545 !important;
    border-radius: 0 !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    padding: 12px 16px !important;
    font-family: var(--font-body) !important;
}

.teslimat-bilgi-hata-main-text {
    padding: 24px 16px !important;
    font-size: 0.95rem !important;
    color: #2a3a2a !important;
    font-family: var(--font-body) !important;
}

.teslimat-bilgi-hata-main-bt {
    background-color: #f8faf7 !important;
    padding: 12px 16px !important;
}

/* Right side panel */
.teslimat-sag-taraf {
    position: sticky !important;
    top: 100px !important;
    width: 380px !important;
    min-width: 380px !important;
    flex-shrink: 0 !important;
}

@media (max-width: 992px) {
    .teslimat-page-main {
        flex-direction: column !important;
        padding: 1rem !important;
    }

    .teslimat-bilgileri-div {
        width: 100% !important;
    }

    .teslimat-sag-taraf {
        width: 100% !important;
        min-width: 0 !important;
        position: static !important;
    }

    .teslimat-bilgileri-adres-box {
        width: 100% !important;
        margin-right: 0 !important;
    }
}

/* Membership type radio buttons */
.teslimat-uyelik-tipi label {
    font-family: var(--font-body) !important;
    font-size: 0.9rem !important;
}

/* No address info box */
.teslimat-bilgileri-uye-adres-yok {
    border: 1px solid #d4ddd2 !important;
    background-color: #f0f7f0 !important;
    border-radius: 8px !important;
    padding: 12px !important;
    font-size: 0.85rem !important;
    color: #2a5a2a !important;
    font-family: var(--font-body) !important;
}

/* --- User Pages (Login, Register, Password) --- */
.users_main_div {
    background: #FAFDF8 !important;
    padding: 2rem 1rem !important;
}

.user_login_register_div {
    max-width: 1100px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.user_page_header,
.user_page_header2 {
    background: #fff !important;
    border: 1px solid #e2e8e0 !important;
    border-radius: 12px !important;
    font-family: var(--font-body) !important;
    font-size: 1.35rem !important;
    color: #1a2e1a !important;
    padding: 1.25rem !important;
    margin-bottom: 1.5rem !important;
}

.user_page_header i,
.user_page_header2 i {
    color: var(--primary) !important;
    font-size: 1.5rem !important;
}

.user_page_header_spot {
    color: #5f7a5a !important;
    font-size: 0.875rem !important;
}

.user_page_login_form {
    width: 100% !important;
    max-width: 480px !important;
    margin: 0 auto !important;
    background: #fff !important;
    border: 1px solid #e2e8e0 !important;
    border-radius: 12px !important;
    padding: 2rem !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
}

.user_page_right_text_div {
    width: 100% !important;
    max-width: 480px !important;
    margin: 1.5rem auto 0 !important;
    background: #fff !important;
    border: 1px solid #e2e8e0 !important;
    border-radius: 12px !important;
    padding: 2rem !important;
}

.password-absolute {
    position: relative !important;
}

.toggle-password {
    position: absolute !important;
    right: 12px !important;
    top: 38px !important;
    cursor: pointer;
    color: #5f7a5a !important;
    z-index: 2;
}

/* Register page type selector */
.register-page-uyelik-tipi-main {
    background: #f7fbf5 !important;
    border: 1px solid #e2e8e0 !important;
    border-radius: 10px !important;
    padding: 1rem !important;
    margin-bottom: 1.25rem !important;
}

.register-page-uyelik-tipi-h {
    margin-bottom: 0.75rem !important;
}

.register-page-uyelik-tipi-h-in {
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    color: #1a2e1a !important;
}

.register-page-uyelik-tipi {
    display: flex !important;
    gap: 1.5rem !important;
}

/* Checkbox & Radio */
.custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 3px rgba(27,122,61,0.15) !important;
}

.rdio label {
    font-size: 0.9rem !important;
    color: #1a2e1a !important;
    cursor: pointer;
}

/* --- User Subpages (Account) --- */
.user_subpage_div {
    max-width: 1280px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 2rem 1rem !important;
}

.user_page_header_subpage {
    display: none !important;
    font-size: 0.9rem !important;
}

.user_page_header_subpage a {
    color: #5f7a5a !important;
    text-decoration: none !important;
    transition: color 0.2s;
}

.user_page_header_subpage a:hover {
    color: var(--primary) !important;
}

.user_subpage_left_bar_main {
    background: #fff !important;
    border: 1px solid #e2e8e0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.user_subpage_left_bar_namediv {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
    padding: 1.5rem !important;
}

.user_subpage_left_bar_namediv_circle {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
}

.user_subpage_left_bar_namediv_content_h {
    color: #fff !important;
    font-weight: 600 !important;
}

.user_subpage_left_bar_namediv_content_usertype,
.user_subpage_left_bar_namediv_content_usergroup {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.8rem !important;
}

.user_subpage_left_bar_nav_desktop_items {
    padding: 0.75rem 1.25rem !important;
    border-bottom: 1px solid #f0f4ee !important;
    transition: all 0.2s !important;
    color: #1a2e1a !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    font-size: 0.9rem !important;
}

.user_subpage_left_bar_nav_desktop_items:hover {
    background: #f7fbf5 !important;
    color: var(--primary) !important;
}

.user_subpage_left_bar_nav_desktop_items_active {
    background: #f0f7ed !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    border-left: 3px solid var(--primary) !important;
}

.user_subpage_left_bar_nav_desktop_items_i {
    color: #5f7a5a !important;
    width: 20px !important;
    text-align: center !important;
}

.user_subpage_right_content {
    background: #fff !important;
    border: none !important;
    border-radius: 16px !important;
    padding: 2rem !important;
}

.user_subpage_account_header {
    font-family: var(--font-body) !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #1a2e1a !important;
    margin-bottom: 1rem !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 1px solid #e2e8e0 !important;
}

.user_subpage_account_spot {
    color: #5f7a5a !important;
    font-size: 0.85rem !important;
}

.user_subpage_info_div_grey {
    background: #f7fbf5 !important;
    border: 1px solid #e2e8e0 !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    margin-bottom: 0.75rem !important;
    font-size: 0.9rem !important;
}

.user_subpage_info_div_red {
    background: #fef2f2 !important;
    border: 1px solid #fecaca !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    margin-bottom: 0.75rem !important;
    font-size: 0.9rem !important;
    color: #991b1b !important;
}

.user_subpage_info_div_blue,
.user_subpage_info_div_blue_2 {
    background: #eff6ff !important;
    border: 1px solid #bfdbfe !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    margin-bottom: 0.75rem !important;
    font-size: 0.9rem !important;
    color: #1e40af !important;
}

/* --- Category Detail --- */
.cat-detail-main-div {
    max-width: 1320px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 1.5rem 1rem !important;
}

.cat-detail-main-div-in {
    width: 100% !important;
}

.cat-left-main {
    background: #fff !important;
    border: 1px solid #e2e8e0 !important;
    border-radius: 12px !important;
    padding: 1.25rem !important;
    margin-bottom: 1.5rem;
}

.cat-left-box-h {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    color: #1a2e1a !important;
    font-size: 1rem !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 1px solid #e2e8e0 !important;
    margin-bottom: 0.75rem !important;
}

.cat-left-box-out a,
.cat-left-box-out-filterbox-out a {
    color: #1a2e1a !important;
    text-decoration: none !important;
    font-size: 0.875rem !important;
    padding: 0.4rem 0.5rem !important;
    border-radius: 6px !important;
    transition: all 0.2s !important;
    display: block !important;
}

.cat-left-box-out a:hover,
.cat-left-box-out-filterbox-out a:hover {
    background: #f0f7ed !important;
    color: var(--primary) !important;
}

.cat-right-main {
    width: 100% !important;
}

.cat-right-header,
.cat-right-header2 {
    background: #fff !important;
    border: 1px solid #e2e8e0 !important;
    border-radius: 12px !important;
    padding: 1rem 1.25rem !important;
    margin-bottom: 1rem !important;
}

.cat-right-links {
    font-size: 0.85rem !important;
    color: #5f7a5a !important;
}

.cat-right-links a {
    color: #5f7a5a !important;
    text-decoration: none !important;
    transition: color 0.2s;
}

.cat-right-links a:hover {
    color: var(--primary) !important;
}

.cat-right-head-text {
    font-family: var(--font-body) !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    color: #1a2e1a !important;
}

.cat-right-desc {
    color: #5f7a5a !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
}

.cat-right-elements {
    background: #fff !important;
    border: 1px solid #e2e8e0 !important;
    border-radius: 12px !important;
    padding: 0.75rem 1.25rem !important;
    margin-bottom: 1rem !important;
}

.cat-right-elements-right-siralama select {
    border: 1.5px solid #d4ddd2 !important;
    border-radius: 8px !important;
    padding: 0.4rem 0.6rem !important;
    font-size: 0.85rem !important;
    font-family: var(--font-body) !important;
    outline: none !important;
}

/* --- Product Detail --- */
.urun-detay-main {
    max-width: 1320px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 2rem 1rem !important;
}

.urun-detay-main-in {
    background: #fff !important;
    border: 1px solid #e2e8e0 !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    overflow: hidden;
}

.urun-detay-sag-alan-baslik {
    font-family: var(--font-body) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1a2e1a !important;
}

.urun-detay-sag-alan-spot {
    color: #5f7a5a !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
}

.urun-detay-sag-alan-fiyatlar {
    padding: 1rem 0 !important;
    border-top: 1px solid #e2e8e0 !important;
    border-bottom: 1px solid #e2e8e0 !important;
    margin: 1rem 0 !important;
}

.urun-detay-sag-alan-fiyat-sol {
    font-family: var(--font-body) !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
}

.urun-detay-sag-alan-d-bilgiler {
    font-size: 0.9rem !important;
    color: #1a2e1a !important;
}

.urun-detay-sag-alan-d-bilgiler-box {
    padding: 0.5rem 0 !important;
    border-bottom: 1px solid #f0f4ee !important;
}

.urun-detay-sag-alan-sepet {
    margin-top: 1.25rem !important;
}

.urun-detay-sag-alan-ek-bilgiler {
    margin-top: 1rem !important;
}

.urun-detay-sag-alan-ek-bilgiler-box {
    padding: 0.75rem !important;
    background: #f7fbf5 !important;
    border-radius: 8px !important;
    margin-bottom: 0.5rem !important;
}

.urun-detay-sag-alan-ek-bilgiler-box i {
    color: var(--primary) !important;
}

.urun-detay-sag-alan-iliskili-kat a {
    color: var(--primary) !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
}

.urun-detay-sag-alan-iliskili-kat a:hover {
    text-decoration: underline !important;
}

.urun-detay-social a {
    color: #5f7a5a !important;
    transition: color 0.2s !important;
}

.urun-detay-social a:hover {
    color: var(--primary) !important;
}

.urun-detay-baslik-alti {
    font-size: 0.875rem !important;
    color: #5f7a5a !important;
}

.urun-detay-sag-alan-yildiz i {
    color: #fbbf24 !important;
}

.urun-detay-fiyat-durumu {
    background: #fef2f2 !important;
    border: 1px solid #fecaca !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    color: #991b1b !important;
    font-size: 0.9rem !important;
}

.urun-detay-sag-alan-no-stok {
    background: #fef2f2 !important;
    border: 1px solid #fecaca !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    color: #991b1b !important;
}

/* --- Cart Page --- */
.cart-main-div {
    max-width: 1320px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 2rem 1rem !important;
    font-family: var(--font-body) !important;
}

.no-cart-items-main-div {
    background: #FAFDF8 !important;
    font-family: var(--font-body) !important;
}

.no-cart-items-in-div {
    max-width: 600px !important;
    margin: 2rem auto !important;
    background: #fff !important;
    border: 1px solid #e2e8e0 !important;
    border-radius: 12px !important;
    padding: 3rem 2rem !important;
    text-align: center;
}

.no-cart-items-text-h {
    font-family: var(--font-body) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #1a2e1a !important;
    margin-bottom: 0.75rem !important;
}

/* --- Contact Page --- */
.iletisim-container-main {
    max-width: 1280px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 2rem 1rem !important;
}

.iletisim-container-in {
    width: 100% !important;
}

.iletisim-container-in-top input,
.iletisim-container-in-top textarea {
    border: 1.5px solid #d4ddd2 !important;
    border-radius: 8px !important;
    padding: 0.65rem 0.9rem !important;
    font-size: 0.9rem !important;
    font-family: var(--font-body) !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    outline: none !important;
}

.iletisim-container-in-top input:focus,
.iletisim-container-in-top textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(27,122,61,0.1) !important;
}

.iletisim-container-in-top-box {
    background: #fff !important;
    border: 1px solid #e2e8e0 !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.iletisim-container-in-top-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.iletisim-container-in-top-box-i {
    color: var(--primary) !important;
    font-size: 1.5rem !important;
}

.iletisim-container-in-top-box-h {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    color: #1a2e1a !important;
}

.iletisim-container-in-top-box-s {
    color: #5f7a5a !important;
    font-size: 0.9rem !important;
}

.iletisim-container-in-top-box-s a {
    color: var(--primary) !important;
    text-decoration: none !important;
}

.iletisim-container-in-top-box-social {
    background: var(--primary) !important;
    color: #fff !important;
    border-radius: 50% !important;
    transition: all 0.2s !important;
}

.iletisim-container-in-top-box-social:hover {
    background: var(--primary-dark) !important;
}

.iletisim-container-maps iframe {
    border-radius: 12px !important;
    border: 1px solid #e2e8e0 !important;
}

/* --- Blog --- */
.blog-box {
    background: #fff !important;
    border: 1px solid #e2e8e0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.blog-box:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08) !important;
}

.blog-box-img {
    border-radius: 12px 12px 0 0 !important;
    overflow: hidden !important;
}

.blog-box-img img {
    transition: transform 0.5s ease !important;
}

.blog-box:hover .blog-box-img img {
    transform: scale(1.05) !important;
}

.blog-box-text-area {
    padding: 1.25rem !important;
}

.blog-box-h {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    color: #1a2e1a !important;
    font-size: 1.05rem !important;
}

.blog-box-h a {
    color: #1a2e1a !important;
    text-decoration: none !important;
    transition: color 0.2s;
}

.blog-box-h a:hover {
    color: var(--primary) !important;
}

.blog-box-s {
    color: #5f7a5a !important;
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
}

.blog-box-date {
    color: #5f7a5a !important;
    font-size: 0.8rem !important;
}

.blog-box-button a {
    color: var(--primary) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    font-size: 0.875rem !important;
}

.blog-box-button a:hover {
    color: var(--primary-dark) !important;
}

/* --- Modals --- */
.modal-content {
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important;
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid #e2e8e0 !important;
    padding: 1.25rem 1.5rem !important;
    background: #fff !important;
}

.modal-header .modal-title {
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
    color: #1a2e1a !important;
    font-size: 1.1rem !important;
}

.modal-body {
    padding: 1.5rem !important;
    font-size: 0.9rem !important;
    color: #1a2e1a !important;
    line-height: 1.6 !important;
}

.modal-footer {
    border-top: 1px solid #e2e8e0 !important;
    padding: 1rem 1.5rem !important;
    background: #fafdf8 !important;
}

.category-cart-add-success-modal-footer {
    padding: 1rem 1.5rem !important;
    background: #fafdf8 !important;
    border-top: 1px solid #e2e8e0 !important;
}

/* --- Pagination --- */
.pagination {
    gap: 0.25rem !important;
}

.page-item .page-link {
    border: 1px solid #d4ddd2 !important;
    border-radius: 8px !important;
    color: #1a2e1a !important;
    font-size: 0.875rem !important;
    padding: 0.4rem 0.75rem !important;
    transition: all 0.2s !important;
    font-family: var(--font-body) !important;
}

.page-item .page-link:hover {
    background: #f0f7ed !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

.page-item.active .page-link {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}

/* --- Tables --- */
.table {
    font-size: 0.9rem !important;
    font-family: var(--font-body) !important;
}

.table thead th {
    background: #f7fbf5 !important;
    border-bottom: 2px solid #d4ddd2 !important;
    color: #1a2e1a !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    padding: 0.75rem !important;
}

.table td {
    padding: 0.75rem !important;
    border-color: #e2e8e0 !important;
    vertical-align: middle !important;
}

/* --- FAQ --- */
.faq-box,
.card {
    border: 1px solid #e2e8e0 !important;
    border-radius: 12px !important;
    margin-bottom: 0.75rem !important;
    overflow: hidden;
}

.card-header {
    background: #f7fbf5 !important;
    border-bottom: 1px solid #e2e8e0 !important;
    padding: 1rem 1.25rem !important;
}

.card-header a,
.card-header button {
    color: #1a2e1a !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
}

.card-body {
    padding: 1.25rem !important;
    font-size: 0.9rem !important;
    color: #1a2e1a !important;
    line-height: 1.6 !important;
}

/* --- Loading Overlay --- */
#shopButtonOverlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(255,255,255,0.85) !important;
    z-index: 9999 !important;
    display: none;
    align-items: center;
    justify-content: center;
}

.shopButtonT {
    text-align: center !important;
    font-family: var(--font-body) !important;
    color: #1a2e1a !important;
    font-size: 0.9rem !important;
}

/* --- Search Page --- */
.urun-ara-main {
    max-width: 1320px !important;
    margin: 0 auto !important;
    padding: 2rem 1rem !important;
}

/* --- Alert Messages --- */
.alert-success {
    background: #f0fdf4 !important;
    border: 1px solid #bbf7d0 !important;
    color: #166534 !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
}

.alert-danger,
.alert-error {
    background: #fef2f2 !important;
    border: 1px solid #fecaca !important;
    color: #991b1b !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
}

.alert-warning {
    background: #fffbeb !important;
    border: 1px solid #fde68a !important;
    color: #92400e !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
}

.alert-info {
    background: #eff6ff !important;
    border: 1px solid #bfdbfe !important;
    color: #1e40af !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
}

/* --- Pre-loader --- */
.pre-loader-main {
    background: #fff !important;
}

/* --- 404 Page --- */
.error-page-main {
    text-align: center;
    padding: 4rem 1rem !important;
}

/* --- Tooltip --- */
.tooltip {
    font-family: var(--font-body) !important;
    font-size: 0.8rem !important;
}

/* --- Siparis Takip --- */
.siparis-takip-main {
    max-width: 700px !important;
    margin: 2rem auto !important;
    background: #fff !important;
    border: 1px solid #e2e8e0 !important;
    border-radius: 12px !important;
    padding: 2rem !important;
}

/* --- Generic Links --- */
a {
    color: var(--primary);
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-dark);
}

/* --- Badge overrides --- */
.badge-success {
    background: var(--primary) !important;
}

.badge-primary {
    background: var(--primary) !important;
}

.badge-info {
    background: var(--primary-light) !important;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================
   CATEGORY DETAIL PAGE - Premium Design
   ========================================== */

/* Hero Section */
.cd-hero {
    position: relative;
    background: linear-gradient(135deg, #1B7A3D 0%, #145C2E 100%);
    padding: 7rem 2rem 3.5rem;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    margin-top: 0 !important;
}

.cd-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.cd-hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cd-hero-deco-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    border: 1px solid rgba(255,255,255,0.08);
}

.cd-hero-deco-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -60px;
    border: 1px solid rgba(255,255,255,0.06);
}

.cd-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

/* Breadcrumb */
.cd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.cd-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.cd-breadcrumb a:hover {
    color: #fff;
}

.cd-breadcrumb a i {
    margin-right: 4px;
    font-size: 0.7rem;
}

.cd-bc-sep {
    color: rgba(255,255,255,0.4);
    font-size: 0.55rem;
    margin: 0 0.6rem;
}

.cd-bc-active {
    color: #1B7A3D;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Hero title */
.cd-hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.75rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: none;
}

.cd-hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
    max-width: 600px;
}

.cd-hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cd-hero-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(27,122,61,0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cd-hero-count i {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* Container */
.cd-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

/* Sort Bar */
.cd-sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-bottom: 1px solid #e2e8e0;
    margin-bottom: 2rem;
}

.cd-sort-left {}

.cd-result-text {
    color: #7a9174;
    font-size: 0.85rem;
    font-weight: 500;
}

.cd-sort-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cd-sort-label {
    color: #5f7a5a;
    font-size: 0.85rem;
    font-weight: 600;
}

.cd-sort-select {
    border: 1.5px solid #d4ddd2;
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
    font-size: 0.85rem;
    font-family: var(--font-body);
    color: #1a2e1a;
    background: #fff;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
    -webkit-appearance: auto;
}

.cd-sort-select:focus {
    border-color: var(--primary);
}

/* Product Grid */
.cd-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Product Card */
.cd-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e8ede6;
    transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s cubic-bezier(.22,1,.36,1);
    display: flex;
    flex-direction: column;
}

.cd-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(27,122,61,0.1), 0 4px 12px rgba(0,0,0,0.06);
}

/* Card image */
.cd-card-img-link {
    display: block;
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
    background: #f7fbf5;
}

.cd-card-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(.22,1,.36,1);
}

.cd-card:hover .cd-card-img-link img {
    transform: scale(1.08);
}

.cd-card-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d0d8ce;
    font-size: 2.5rem;
}

/* Video hover */
.cd-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.cd-card:hover .cd-card-video {
    opacity: 1;
}

/* Hover overlay */
.cd-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,31,13,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.cd-card:hover .cd-card-overlay {
    opacity: 1;
}

.cd-card-overlay span {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.6rem 1.5rem;
    border: 1.5px solid rgba(255,255,255,0.7);
    border-radius: 30px;
    transition: background 0.2s, border-color 0.2s;
}

.cd-card-overlay span:hover {
    background: rgba(255,255,255,0.15);
}

.cd-card-overlay span i {
    margin-right: 6px;
    font-size: 0.75rem;
}

/* Badges */
.cd-badge-discount {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #e53e3e;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    z-index: 3;
    letter-spacing: 0.02em;
}

.cd-badge-new {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Card body */
.cd-card-body {
    padding: 1.1rem 1.15rem 1.15rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cd-card-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a2e1a;
    line-height: 1.4;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
    margin-bottom: 0.65rem;
    transition: color 0.2s;
}

.cd-card-name:hover {
    color: var(--primary);
}

/* Price */
.cd-card-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
    margin-top: auto;
}

.cd-price-old {
    font-size: 0.78rem;
    color: #b0b0b0;
    text-decoration: line-through;
}

.cd-price-now {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.cd-price-login {
    font-size: 0.78rem;
    color: #aaa;
    font-style: italic;
}

.cd-price-stock {
    font-size: 0.78rem;
    color: #e53e3e;
    font-weight: 600;
    background: #fef2f2;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

/* Card actions */
.cd-card-actions {
    margin-top: 0;
}

.cd-cart-form {
    margin: 0;
}

.cd-btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.7rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    letter-spacing: 0.02em;
}

.cd-btn-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27,122,61,0.25);
}

.cd-btn-cart i {
    font-size: 0.8rem;
}

.cd-btn-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.7rem;
    background: #f0f7ed;
    color: var(--primary);
    border: 1.5px solid #d4e6ce;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.02em;
}

.cd-btn-detail:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-1px);
}

.cd-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.6rem 1rem;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.cd-btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.25);
    text-decoration: none;
}

.cd-btn-whatsapp i {
    font-size: 1rem;
}

/* Pagination */
.cd-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8e0;
}

.cd-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    border: 1.5px solid #d4ddd2;
    border-radius: 10px;
    color: #1a2e1a;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    background: #fff;
}

.cd-page-link:hover {
    background: #f0f7ed;
    border-color: var(--primary);
    color: var(--primary);
}

.cd-page-active {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    font-weight: 700;
}

.cd-page-first,
.cd-page-last,
.cd-page-prev,
.cd-page-next {
    font-size: 0.75rem;
    color: #7a9174;
}

/* No products */
.cd-no-products {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border: 1px solid #e2e8e0;
    border-radius: 16px;
    margin-top: 1rem;
}

.cd-no-products-icon {
    font-size: 3rem;
    color: #d0d8ce;
    margin-bottom: 1.25rem;
}

.cd-no-products h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a2e1a;
    margin: 0 0 0.5rem;
}

.cd-no-products p {
    color: #7a9174;
    font-size: 0.9rem;
    margin: 0 0 1.5rem;
}

.cd-btn-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s, transform 0.2s;
}

.cd-btn-home:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Category Detail Responsive */
@media (max-width: 1100px) {
    .cd-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .cd-hero {
        padding: 6rem 1.25rem 2.5rem;
        min-height: 220px;
    }

    .cd-hero-title {
        font-size: 1.75rem;
    }

    .cd-hero-desc {
        font-size: 0.9rem;
    }

    .cd-container {
        padding: 0 1rem 2rem;
    }

    .cd-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    .cd-sort-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .cd-card-body {
        padding: 0.85rem 0.85rem 0.9rem;
    }

    .cd-card-name {
        font-size: 0.85rem;
    }

    .cd-price-now {
        font-size: 1.1rem;
    }

    .cd-page-link {
        min-width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .cd-hero {
        padding: 5.5rem 1rem 2rem;
        min-height: 200px;
    }

    .cd-hero-title {
        font-size: 1.5rem;
    }

    .cd-breadcrumb {
        margin-bottom: 0.75rem;
    }

    .cd-hero-desc {
        display: none;
    }

    .cd-product-grid {
        gap: 0.65rem;
    }

    .cd-card-body {
        padding: 0.7rem 0.7rem 0.75rem;
    }

    .cd-btn-cart,
    .cd-btn-detail,
    .cd-btn-whatsapp {
        padding: 0.55rem;
        font-size: 0.78rem;
    }

    .cd-card-overlay {
        display: none;
    }
}

/* --- RESPONSIVE Legacy Overrides --- */
@media (max-width: 1024px) {
    .user_login_register_div,
    .cat-detail-main-div,
    .cart-main-div,
    .urun-detay-main,
    .iletisim-container-main,
    .user_subpage_div {
        width: 100% !important;
        padding: 1.5rem 1rem !important;
    }
}

@media (max-width: 768px) {
    .user_page_login_form {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.5rem !important;
    }

    .user_page_right_text_div {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-top: 1rem !important;
    }

    .page-banner-h {
        font-size: 1.35rem !important;
    }

    .urun-detay-sag-alan-baslik {
        font-size: 1.25rem !important;
    }

    .user_subpage_left_bar_main {
        margin-bottom: 1rem !important;
    }

    .user_subpage_right_content {
        padding: 1rem !important;
    }

    .cat-right-head-text {
        font-size: 1.1rem !important;
    }
}

/* ==========================================
   PRODUCT DETAIL PAGE - Apple-Inspired Design
   Prefix: pd-
   ========================================== */

/* ===== STICKY PRODUCT NAV ===== */
.pd-sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(255,255,255,0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}

.pd-sticky-nav.visible {
    transform: translateY(0);
}

.pd-sticky-nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.pd-sticky-nav-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1d1d1f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
}

.pd-sticky-nav-links {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
}

.pd-sticky-nav-links a {
    font-size: 0.78rem;
    color: #424245;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
}

.pd-sticky-nav-links a:hover {
    color: var(--primary);
}

.pd-sticky-nav-buy {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    background: var(--primary);
    color: #fff !important;
    border-radius: 980px;
    font-size: 0.78rem;
    font-weight: 400;
    text-decoration: none !important;
    flex-shrink: 0;
    transition: background 0.2s;
}

.pd-sticky-nav-buy:hover {
    background: var(--primary-dark);
}

/* ===== HERO SECTION - IMMERSIVE ===== */
.pd-hero {
    position: relative;
    width: 100%;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    margin-top: 0 !important;
    overflow: hidden;
}

/* Background media */
.pd-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pd-hero-bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay gradient */
.pd-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(0deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.05) 100%);
}

.pd-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem 4.5rem;
}

/* Breadcrumb */
.pd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.pd-breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 400;
    transition: color 0.2s;
}

.pd-breadcrumb a:hover {
    color: #fff;
}

.pd-bc-sep {
    color: rgba(255,255,255,0.25);
    font-size: 0.72rem;
    margin: 0 0.4rem;
}

.pd-bc-active {
    color: rgba(255,255,255,0.7);
    font-size: 0.72rem;
    font-weight: 500;
}

/* Hero Text Block */
.pd-hero-text {
    max-width: 620px;
}

/* Hero Eyebrow (brand) */
.pd-hero-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.3rem 0.9rem;
    border-radius: 980px;
}

/* Hero Title */
.pd-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.75rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-family: var(--font-body);
}

.pd-hero-desc {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    line-height: 1.52;
    margin: 0 0 1.75rem;
    max-width: 480px;
    font-weight: 400;
}

/* Hero Actions */
.pd-hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.pd-hero-price {
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
}

.pd-hero-buy {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 2rem;
    background: #fff;
    color: #1d1d1f !important;
    border-radius: 980px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.25s;
    letter-spacing: 0.01em;
}

.pd-hero-buy:hover {
    background: var(--primary);
    color: #fff !important;
}

.pd-hero-soldout {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: scrollFadeIn 1s ease 1.2s both;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 11px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 7px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    animation: scrollWheel 1.8s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===== HIGHLIGHTS STRIP ===== */
.pd-highlights {
    background: linear-gradient(180deg, #f8f6f1 0%, #f1efe9 100%);
    padding: 2.5rem 2rem;
    border-top: 1px solid #e8e4dc;
    border-bottom: 1px solid #e8e4dc;
}

.pd-highlights-inner {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
}

.pd-hl-card {
    text-align: center;
    padding: 1.6rem 1rem 1.4rem;
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid #e8e4dc;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02);
    transition: transform 0.25s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.pd-hl-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.pd-hl-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.03);
}

.pd-hl-card:hover::before {
    opacity: 1;
}

.pd-hl-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(145deg, #0d3d1e, #1B7A3D);
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
    box-shadow: 0 3px 10px rgba(27,122,61,0.2);
    transition: transform 0.25s;
}

.pd-hl-card:hover .pd-hl-icon {
    transform: scale(1.08);
}

.pd-hl-card strong {
    font-size: 0.84rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.pd-hl-card span {
    font-size: 0.72rem;
    color: #888;
    line-height: 1.4;
}

/* ===== BUY / DETAIL SECTION ===== */
.pd-section {
    background: #fff;
    padding: 4rem 0 5rem;
}

.pd-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pd-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* ===== GALLERY ===== */
.pd-gallery {
    position: sticky;
    top: 70px;
}

.pd-gallery-main {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #fafafa;
    position: relative;
    padding-bottom: 100%;
    height: 0;
}

.pd-gallery-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(.25,.1,.25,1);
    cursor: zoom-in;
}

.pd-gallery-main:hover img {
    transform: scale(1.03);
}

.pd-gallery-zoom {
    display: block;
    position: absolute;
    inset: 0;
}

.pd-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.pd-thumb {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s;
    flex-shrink: 0;
    background: #fafafa;
}

.pd-thumb:hover {
    border-color: #d2d2d7;
}

.pd-thumb.active {
    border-color: var(--primary);
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== INFO SECTION ===== */
.pd-info {
    padding-top: 0.5rem;
}

/* Header: brand + fav */
.pd-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.pd-brand-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.pd-brand-tag:hover {
    color: var(--primary-dark);
}

.pd-fav-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background: #f5f5f7;
    color: #86868b;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.pd-fav-btn:hover {
    color: #ef4444;
    background: #fef2f2;
}

.pd-fav-btn.pd-fav-active {
    color: #ef4444;
    background: #fef2f2;
}

/* Title */
.pd-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.15;
    margin: 0 0 0.6rem;
    letter-spacing: -0.025em;
    font-family: var(--font-body);
}

/* Stars + SKU inline row */
.pd-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #d2d2d7;
}

.pd-stars-wrap {
    display: flex;
    align-items: center;
    gap: 0.05rem;
}

.pd-star-on {
    color: #f59e0b;
    font-size: 0.85rem;
}

.pd-star-off {
    color: #d2d2d7;
    font-size: 0.85rem;
}

.pd-review-count {
    margin-left: 0.3rem;
    font-size: 0.75rem;
    color: #86868b;
    text-decoration: none;
}

.pd-meta-sep {
    color: #d2d2d7;
    font-size: 0.8rem;
    margin: 0 0.1rem;
}

/* SKU inline */
.pd-sku {
    font-size: 0.75rem;
    color: #86868b;
}

.pd-sku strong {
    font-weight: 600;
    color: #6e6e73;
}

/* Spot */
.pd-spot {
    font-size: 0.88rem;
    color: #6e6e73;
    line-height: 1.52;
    margin-bottom: 1rem;
}

/* ===== PRICE CARD (Combined) ===== */
.pd-price-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 6px 16px rgba(0,0,0,0.04);
}

.pd-price-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.pd-price-area {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    flex: 1;
}

.pd-price-area .urun-detay-sag-alan-fiyatlar {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    border: none;
}

.pd-price-area .urun-detay-sag-alan-fiyat-sol {
    display: none;
}

.pd-price-area .urun-detay-sag-alan-fiyat-sag {
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    color: #111827 !important;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.pd-price-area .urun-detay-fiyat-durumu {
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    padding: 0.35rem 0.65rem;
    font-size: 0.72rem;
    color: #6e6e73;
    margin: 0.3rem 0 0;
}

.pd-price-area .ribbon3 {
    background: #fef3c7;
    color: #92400e;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    display: inline-block;
    position: static;
    border-left: none;
}

.pd-price-area .kazanc-mobil-div {
    font-size: 0.7rem !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 6px !important;
}

/* Price extras */
.pd-price-extras {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.pd-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 24px;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.pd-stock-badge.pd-in-stock {
    color: #059669;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.pd-stock-badge.pd-out-stock {
    color: #dc2626;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.pd-eft-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: #6b7280;
    background: #f3f4f6;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

/* Low stock */
.pd-low-stock {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #d97706;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.55rem 0.85rem;
    border-radius: 12px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Shipping Info - inside price card */
.pd-shipping-info {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.15rem;
}

.pd-shipping-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 0.7rem 1rem;
    flex: 1;
    transition: border-color 0.2s ease;
}

.pd-shipping-item:hover {
    border-color: #cbd5e1;
}

.pd-ship-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.pd-ship-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.pd-ship-label {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pd-ship-value {
    font-size: 0.82rem;
    color: #1e293b;
    font-weight: 700;
    line-height: 1.2;
}

.pd-shipping-free .pd-ship-icon {
    background: #d1fae5;
    color: #059669;
}

.pd-shipping-free .pd-ship-value {
    color: #059669;
}

@media (max-width: 480px) {
    .pd-shipping-info {
        flex-direction: column;
    }
}

/* ===== NASIL GÖNDERİYORUZ SECTION ===== */
.pd-shipping-explain {
    background: #f9fafb !important;
    border-top: none !important;
}

.pd-howship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.pd-howship-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pd-howship-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.pd-howship-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    color: #0369a1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 1.15rem;
}

.pd-howship-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
}

.pd-howship-card p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 768px) {
    .pd-howship-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .pd-howship-card {
        padding: 1.25rem 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }
    .pd-howship-icon {
        margin: 0;
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
}

/* ===== CART AREA ===== */
.pd-cart-area {
    margin: 0.75rem 0 0;
}

/* Variant selects */
.pd-cart-area .product-detail-variant-div {
    margin-bottom: 0.6rem;
}

.pd-cart-area .product-detail-variant-div label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pd-cart-area .product-detail-variant-div select,
.pd-cart-area .product-detail-variant-div textarea,
.pd-cart-area .product-detail-variant-div input[type="text"] {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
    font-family: var(--font-body);
    color: #1f2937;
    background: #f9fafb;
    transition: all 0.2s;
    outline: none;
}

.pd-cart-area .product-detail-variant-div select:focus,
.pd-cart-area .product-detail-variant-div textarea:focus,
.pd-cart-area .product-detail-variant-div input[type="text"]:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(27,122,61,0.08);
}

/* ===== QUANTITY (pd-qty) ===== */
.pd-qty {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: #f8faf8;
    border: 1.5px solid #e2e8e0;
    border-radius: 14px;
    padding: 0;
    height: 52px;
    overflow: hidden;
    flex-shrink: 0;
}

.pd-qty-btn {
    width: 44px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #4a5a4a;
    cursor: pointer;
    transition: all 0.15s ease;
    font-size: 0.7rem;
    padding: 0;
    box-shadow: none;
}

.pd-qty-btn:first-child {
    border-right: 1.5px solid #e2e8e0;
}

.pd-qty-btn:last-child {
    border-left: 1.5px solid #e2e8e0;
}

.pd-qty-btn:hover {
    background: #e8f5e9;
    color: var(--primary);
    transform: none;
}

.pd-qty-btn:active {
    background: #c8e6c9;
    transform: none;
}

.pd-qty input[type="number"] {
    width: 36px;
    height: 100%;
    text-align: center;
    border: none;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-body);
    color: #1a2e1a;
    background: transparent;
    outline: none;
    padding: 0;
    -moz-appearance: textfield;
}

.pd-qty input[type="number"]::-webkit-outer-spin-button,
.pd-qty input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pd-qty-label {
    font-size: 0.75rem;
    color: #8a9a8a;
    font-weight: 500;
    margin: 0 4px 0 0;
    user-select: none;
    letter-spacing: 0.02em;
    text-transform: lowercase;
}

/* ===== SEPET / SİPARİŞ LAYOUT ===== */
.pd-cart-area {
    margin-top: 0.5rem;
}

.pd-cart-area form#entercancel {
    display: block;
}

.pd-cart-area .urun-detay-sag-alan-sepet {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Adet kutusu */
.pd-cart-area .urun-detay-sag-alan-sepet-box:first-child {
    flex: 0 0 auto;
}

/* Sepete ekle kutusu - kalan alanı doldur */
.pd-cart-area .urun-detay-sag-alan-sepet-box:nth-child(2) {
    flex: 1 1 0;
    min-width: 140px;
}

/* Eski quantity gizle, pd-qty zaten var */
.pd-cart-area .quantity,
.pd-cart-area .quantity-nav {
    display: none !important;
}

/* SEPETE EKLE / SİPARİŞ / TEKLİF butonu */
.pd-cart-area .button-green,
.pd-cart-area .product_detail_submit,
.pd-cart-area .product_detail_submit_2,
.pd-cart-area [name="addtocart"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 52px;
    padding: 0 1.5rem !important;
    background: var(--primary) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 14px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    font-family: var(--font-body) !important;
    cursor: pointer;
    transition: all 0.2s ease !important;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(5,150,105,0.18);
    letter-spacing: 0.01em;
}

.pd-cart-area .button-green:hover,
.pd-cart-area .product_detail_submit:hover,
.pd-cart-area .product_detail_submit_2:hover,
.pd-cart-area [name="addtocart"]:hover {
    background: var(--primary-dark) !important;
    box-shadow: 0 4px 14px rgba(5,150,105,0.25) !important;
    transform: translateY(-1px);
}

.pd-cart-area .button-green:active,
.pd-cart-area [name="addtocart"]:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(5,150,105,0.15) !important;
}

/* WhatsApp butonu - alt satır tam genişlik */
.pd-cart-area .urun-detay-sag-alan-sepet-box-wp {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex: 0 0 100%;
    height: 48px;
    padding: 0 1.5rem;
    background: transparent !important;
    color: #25D366 !important;
    border: 1.5px solid #25D366;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none !important;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pd-cart-area .urun-detay-sag-alan-sepet-box-wp:hover {
    background: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 2px 10px rgba(37,211,102,0.2);
    transform: translateY(-1px);
}

.pd-cart-area .urun-detay-sag-alan-sepet-box-wp i {
    font-size: 1.2rem;
}

.pd-fav-circle {
    display: none !important;
}

/* No stock */
.pd-no-stock {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    border-radius: 16px;
    margin: 0.75rem 0;
}

.pd-no-stock i {
    font-size: 2rem;
    color: #d1d5db;
    display: block;
    margin-bottom: 0.5rem;
}

.pd-no-stock p {
    color: #9ca3af;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
}

/* ===== COMPARE PAGE ===== */
.compare-container-main {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 2rem 1.5rem !important;
    box-sizing: border-box !important;
}

.compare_header_div {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 16px !important;
    padding: 1.25rem 1.5rem !important;
    margin-bottom: 1.25rem !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
}

.compare_header_div .button-red-out {
    background: #fef2f2 !important;
    color: #dc2626 !important;
    border: 1px solid #fecaca !important;
    border-radius: 10px !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
}

.compare_header_div .button-red-out:hover {
    background: #fee2e2 !important;
    border-color: #f87171 !important;
}

.compare-container-table-div {
    background: #fff !important;
    border-radius: 18px !important;
    border: 1px solid #e5e7eb !important;
    overflow: hidden !important;
    overflow-x: auto !important;
}

.compare-container-table-1 {
    width: 100% !important;
    border-collapse: collapse !important;
    border: none !important;
    font-size: 0.88rem !important;
}

.compare-container-table-1 tr {
    border: none !important;
    border-bottom: 1px solid #f3f4f6 !important;
}

.compare-container-table-1 tr:last-child {
    border-bottom: none !important;
}

.compare-container-table-1 tr:nth-child(even) {
    background: #f9fafb !important;
}

.compare-container-table-1 td {
    padding: 1rem 1.25rem !important;
    border: none !important;
    border-right: 1px solid #f3f4f6 !important;
    vertical-align: middle !important;
}

.compare-container-table-1 td:last-child {
    border-right: none !important;
}

.compare-container-table-1 td:first-child {
    font-weight: 700 !important;
    color: #374151 !important;
    background: #f8fafc !important;
    white-space: nowrap !important;
    font-size: 0.82rem !important;
    min-width: 160px !important;
}

.compare-container-table-1-content {
    text-align: center !important;
    font-size: 0.88rem !important;
    color: #1f2937 !important;
    min-width: 180px !important;
}

.compare-container-table-1-content img {
    max-width: 120px !important;
    max-height: 120px !important;
    border-radius: 12px !important;
    object-fit: contain !important;
}

.compare-container-table-1-content .button-blue {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
    background: #059669 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 0.45rem 0.85rem !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: background 0.2s !important;
}

.compare-container-table-1-content .button-blue:hover {
    background: #047857 !important;
}

.compare-container-table-1 tr:first-child td {
    padding: 0.6rem 1.25rem !important;
    background: #fff !important;
}

.compare-container-table-1 tr:first-child td a {
    color: #9ca3af !important;
    transition: color 0.2s !important;
}

.compare-container-table-1 tr:first-child td a:hover {
    color: #ef4444 !important;
}

/* Empty state */
.compare-container-main .iletisim-container-in {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 18px !important;
    padding: 3rem !important;
    text-align: center !important;
}

.compare-container-main .user_subpage_favorites_noitems {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.compare-container-main .user_subpage_favorites_noitems > i {
    font-size: 3rem !important;
    color: #d1d5db !important;
}

.compare-container-main .user_subpage_favorites_noitems_head {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #374151 !important;
}

.compare-container-main .user_subpage_favorites_noitems_s {
    font-size: 0.88rem !important;
    color: #6b7280 !important;
}

@media (max-width: 768px) {
    .compare-container-main {
        padding: 1rem !important;
    }
    .compare_header_div {
        flex-direction: column !important;
        gap: 0.75rem !important;
        text-align: center !important;
    }
}

/* ===== COMPARE ROW ===== */
.pd-compare-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.pd-compare-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.pd-compare-btn:hover {
    color: #0369a1;
    background: #e0f2fe;
    border-color: #7dd3fc;
    text-decoration: none;
}

.pd-compare-btn i {
    font-size: 0.85rem;
}

.pd-compare-btn.pd-compare-active {
    color: #059669;
    background: #ecfdf5;
    border-color: #a7f3d0;
}

.pd-compare-btn.pd-compare-active:hover {
    color: #dc2626;
    background: #fef2f2;
    border-color: #fecaca;
}

.pd-compare-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: #0369a1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.pd-compare-link:hover {
    color: #0284c7;
    text-decoration: underline;
}

/* ===== SHARE ROW ===== */
.pd-share-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #d2d2d7;
}

.pd-share-label {
    font-size: 0.72rem;
    color: #86868b;
    font-weight: 400;
}

.pd-share-btns {
    display: flex;
    gap: 0.4rem;
}

.pd-share-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f7;
    color: #86868b;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.pd-share-btn:hover {
    background: #e8e8ed;
    color: #1d1d1f;
}

.pd-share-btn.pd-share-wp:hover {
    background: #dcfce7;
    color: #16a34a;
}

/* ===== MOBILE STICKY BAR ===== */
.pd-mobile-bar {
    display: none;
}

/* Legacy classes - hide */
.pd-actions-row,
.pd-share,
.pd-total-row,
.pd-shipping,
.pd-payment-banner,
.pd-ship-card {
    display: none !important;
}

/* ===== CONTENT SECTIONS (replacing tabs) ===== */
.pd-content-section {
    background: #fff;
    padding: 4.5rem 0;
    border-top: 1px solid #e8e4dc;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pd-content-section.pd-visible {
    opacity: 1;
    transform: translateY(0);
}

.pd-content-section.pd-section-alt {
    background: linear-gradient(180deg, #f8f6f1 0%, #f3f1ec 100%);
}

.pd-section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin: 0 0 2rem;
    padding-bottom: 1.15rem;
    border-bottom: none;
    position: relative;
    display: inline-block;
}

.pd-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.pd-section-body {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    color: #4a4a4a;
    line-height: 1.85;
    letter-spacing: 0.005em;
}

.pd-section-body p {
    margin-bottom: 1.1rem;
}

.pd-section-body strong,
.pd-section-body b {
    color: #1a1a1a;
    font-weight: 600;
}

.pd-section-body h2,
.pd-section-body h3,
.pd-section-body h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.pd-section-body h2 { font-size: 1.3rem; }
.pd-section-body h3 { font-size: 1.1rem; }
.pd-section-body h4 { font-size: 1rem; }

.pd-section-body ul,
.pd-section-body ol {
    padding-left: 1.25rem;
    margin-bottom: 1.1rem;
}

.pd-section-body li {
    margin-bottom: 0.4rem;
}

.pd-section-body img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin: 1rem 0;
}

.pd-section-body a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.pd-section-body a:hover {
    color: var(--primary-dark);
}

/* Features Table */
.pd-features-table {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8e4dc;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.pd-section-alt .pd-features-table {
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border-color: #e2ded6;
}

.pd-feature-row {
    display: flex;
    border-bottom: 1px solid #efecea;
    transition: background 0.2s;
}

.pd-feature-row:last-child {
    border-bottom: none;
}

.pd-feature-row:hover {
    background: rgba(27,122,61,0.02);
}

.pd-feature-label {
    width: 220px;
    flex-shrink: 0;
    padding: 0.95rem 1.25rem;
    background: #f8f6f2;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    color: #1a1a1a;
    border-right: 1px solid #efecea;
    letter-spacing: 0.01em;
}

.pd-section-alt .pd-feature-label {
    background: #f0ede7;
}

.pd-feature-value {
    flex: 1;
    padding: 0.95rem 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.84rem;
    color: #555;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}

.pd-feature-item {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #145C2E;
    padding: 0.22rem 0.65rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

/* Video wrap */
.pd-video-wrap iframe {
    width: 100%;
    height: 500px;
    border-radius: 18px;
    border: none;
}

/* Click-to-play video player */
.pd-video-player {
    position: relative;
    width: 100%;
    max-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.pd-video-poster {
    display: block;
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

.pd-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.pd-video-player:hover .pd-video-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.pd-video-play-btn svg {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* ===== COMMENTS ===== */
.pd-comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e8ede6;
}

.pd-comment-summary {}

.pd-comment-avg {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pd-avg-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a2e1a;
    line-height: 1;
}

.pd-avg-stars {
    display: flex;
    gap: 0.1rem;
}

.pd-avg-count {
    font-size: 0.85rem;
    color: #7a9174;
}

.pd-no-review {
    color: #9ca3af;
    font-size: 0.9rem;
}

.pd-comment-action p {
    font-size: 0.85rem;
    color: #7a9174;
    margin: 0 0 0.75rem;
}

.pd-btn-comment {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s;
}

.pd-btn-comment:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Comment list */
.pd-comment-list {}

.pd-comment-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #f0f4ee;
}

.pd-comment-item:last-child {
    border-bottom: none;
}

.pd-comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    text-transform: uppercase;
}

.pd-comment-body {
    flex: 1;
}

.pd-comment-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.pd-comment-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a2e1a;
}

.pd-comment-date {
    font-size: 0.78rem;
    color: #9ca3af;
}

.pd-comment-stars {
    margin-bottom: 0.4rem;
}

.pd-comment-stars .pd-star-on {
    font-size: 0.85rem;
}

.pd-comment-stars .pd-star-off {
    font-size: 0.85rem;
}

.pd-comment-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a2e1a;
    margin-bottom: 0.25rem;
}

.pd-comment-text {
    font-size: 0.875rem;
    color: #4a5e47;
    line-height: 1.6;
}

.pd-more-comments {
    padding-top: 1rem;
}

.pd-btn-more {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background: #f0f7ed;
    color: var(--primary);
    border: 1px solid #d4e6ce;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.pd-btn-more:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ===== STANDALONE REVIEWS SECTION ===== */
.pd-reviews-section {
    background: #f5f5f7;
    border-top: 1px solid #d2d2d7;
    padding: 5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pd-reviews-section.pd-visible {
    opacity: 1;
    transform: translateY(0);
}

.pd-reviews-section .pd-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pd-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #d2d2d7;
}

.pd-reviews-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1d1d1f;
    font-family: var(--font-body);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pd-reviews-title i {
    color: var(--primary);
    font-size: 1.2rem;
}

.pd-reviews-count {
    font-weight: 400;
    color: #86868b;
    font-size: 1.1rem;
}

.pd-reviews-rating-summary {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pd-reviews-avg {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1;
}

.pd-reviews-stars {
    display: flex;
    gap: 2px;
}

.pd-reviews-stars .pd-star-on {
    color: #f59e0b;
    font-size: 1.1rem;
}

.pd-reviews-stars .pd-star-off {
    color: #ddd;
    font-size: 1.1rem;
}

.pd-reviews-total {
    font-size: 0.85rem;
    color: #86868b;
    margin-left: 0.25rem;
}

/* Review cards */
.pd-reviews-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.pd-review-card {
    background: #fff;
    border: none;
    border-radius: 14px;
    padding: 1.25rem;
    transition: box-shadow 0.2s;
}

.pd-review-card:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.pd-review-card-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.pd-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    text-transform: uppercase;
}

.pd-review-user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pd-review-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1d1d1f;
}

.pd-review-date {
    font-size: 0.78rem;
    color: #9ca3af;
}

.pd-review-stars {
    display: flex;
    gap: 1px;
    flex-shrink: 0;
}

.pd-review-stars .pd-star-on {
    color: #f59e0b;
    font-size: 0.9rem;
}

.pd-review-stars .pd-star-off {
    color: #ddd;
    font-size: 0.9rem;
}

.pd-review-card-title {
    font-weight: 600;
    font-size: 0.92rem;
    color: #1a2e1a;
    margin-bottom: 0.3rem;
}

.pd-review-card-text {
    font-size: 0.88rem;
    color: #4a5e47;
    line-height: 1.6;
}

/* Empty reviews */
.pd-reviews-empty {
    text-align: center;
    padding: 3rem 1rem;
    background: #fafdf8;
    border: 1px dashed #d4ddd2;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.pd-reviews-empty i {
    font-size: 2.5rem;
    color: #c8d6c0;
    margin-bottom: 0.75rem;
}

.pd-reviews-empty p {
    font-size: 1rem;
    color: #4a5e47;
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.pd-reviews-empty span {
    font-size: 0.88rem;
    color: #9ca3af;
}

/* Action button */
.pd-reviews-action {
    text-align: center;
}

.pd-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.8rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 980px;
    font-size: 0.88rem;
    font-weight: 400;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background 0.2s;
}

.pd-reviews-btn:hover {
    background: var(--primary-dark);
    transform: none;
    box-shadow: none;
}

.pd-reviews-btn-all {
    background: #1d1d1f !important;
}

.pd-reviews-btn-all:hover {
    background: #424245 !important;
}

.pd-reviews-btn-outline {
    background: transparent !important;
    color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
}

.pd-reviews-btn-outline:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

.pd-reviews-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ===== ALL REVIEWS MODAL ===== */
.pd-modal-reviews {
    border: none !important;
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2) !important;
}

.pd-modal-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #d2d2d7;
    background: #f5f5f7;
}

.pd-modal-reviews-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.pd-modal-reviews-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a2e1a;
    margin: 0;
    font-family: var(--font-body);
}

.pd-modal-reviews-summary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pd-modal-reviews-avg {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a2e1a;
}

.pd-modal-reviews-stars {
    display: flex;
    gap: 1px;
}

.pd-modal-reviews-stars .pd-star-on {
    color: #f59e0b;
    font-size: 0.9rem;
}

.pd-modal-reviews-stars .pd-star-off {
    color: #ddd;
    font-size: 0.9rem;
}

.pd-modal-reviews-count {
    font-size: 0.82rem;
    color: #7a9174;
}

.pd-modal-reviews-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #e8ede6;
    color: #4a5e47;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pd-modal-reviews-close:hover {
    background: #d4ddd2;
    color: #1a2e1a;
}

.pd-modal-reviews-body {
    padding: 1rem 1.5rem 1.5rem;
    max-height: 65vh;
    overflow-y: auto;
}

.pd-modal-reviews-body::-webkit-scrollbar {
    width: 5px;
}

.pd-modal-reviews-body::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.pd-modal-reviews-body::-webkit-scrollbar-thumb {
    background: #d4ddd2;
    border-radius: 10px;
}

.pd-modal-review-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f4ee;
}

.pd-modal-review-item:last-child {
    border-bottom: none;
}

.pd-modal-review-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .pd-reviews-list {
        grid-template-columns: 1fr;
    }
    .pd-reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .pd-reviews-section .pd-container {
        padding: 0 1rem;
    }
}

/* ===== APPLE-STYLE PRODUCT SCROLLER ===== */
.pd-related-section {
    position: relative;
    background: #f5f5f7;
    padding: 4.5rem 0 5rem;
    overflow: hidden;
}

.pd-discover-wrap {
    position: relative;
    z-index: 1;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 52px;
}

/* Header */
.pd-discover-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.pd-discover-head-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pd-discover-label {
    display: none;
}

.pd-discover-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
    font-family: var(--font-body);
    letter-spacing: -0.02em;
}

/* Paddle Nav - Apple style */
.pd-discover-nav {
    display: flex;
    gap: 0;
}

.pd-discover-arr {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #e8e8ed;
    color: #1d1d1f;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, opacity 0.2s;
    font-size: 0.8rem;
    margin-left: 8px;
}

.pd-discover-arr:hover {
    background: #d2d2d7;
    color: #1d1d1f;
}

.pd-discover-arr.slick-disabled {
    opacity: 0.35;
    cursor: default;
}

/* Scroller */
.pd-discover-slider {
    overflow: visible;
}

.pd-discover-slider .slick-list {
    overflow: visible;
    margin: 0 -6px;
}

.pd-discover-slider .slick-track {
    display: flex;
}

/* Card */
.pd-discover-slide {
    padding: 0 6px;
    height: auto;
}

.pd-discover-card {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit !important;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: #fff;
    height: 100%;
    transition: transform 0.32s cubic-bezier(.25,.1,.25,1), box-shadow 0.32s cubic-bezier(.25,.1,.25,1);
}

.pd-discover-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

/* Card Media - 9:16 aspect ratio */
.pd-discover-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #fafafa;
}

.pd-discover-card-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.25,.1,.25,1);
}

.pd-discover-card:hover .pd-discover-card-media img {
    transform: scale(1.04);
}

/* Video */
.pd-discover-card-media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.pd-discover-card.playing .pd-discover-card-media video {
    opacity: 1;
}

.pd-discover-card.playing .pd-discover-card-media img {
    opacity: 0;
}

/* Play icon */
.pd-discover-play-icon {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    z-index: 3;
    transition: all 0.3s;
}

.pd-discover-card:hover .pd-discover-play-icon {
    background: rgba(0,0,0,0.4);
}

.pd-discover-card.playing .pd-discover-play-icon {
    opacity: 0;
}

/* Badges */
.pd-discover-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 600;
    z-index: 3;
    letter-spacing: 0.2px;
}

.pd-discover-badge-stock {
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    color: #fff;
}

.pd-discover-badge-sale {
    background: #bf4800;
    color: #fff;
}

/* Card Info - bottom overlay */
.pd-discover-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3.5rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
    z-index: 2;
}

.pd-discover-card-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.2rem;
    line-height: 1.3;
    font-family: var(--font-body);
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pd-discover-card-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    margin: 0 0 0.35rem;
    line-height: 1.35;
    font-family: var(--font-body);
}

.pd-discover-card-rating {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-bottom: 0.35rem;
}

.pd-discover-card-rating .pd-star-on {
    color: #ff9500;
    font-size: 0.72rem;
}

.pd-discover-card-rating .pd-star-off {
    color: rgba(255,255,255,0.25);
    font-size: 0.72rem;
}

.pd-discover-card-rc {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
    margin-left: 4px;
}

.pd-discover-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.pd-discover-old {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    text-decoration: line-through;
}

.pd-discover-new {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-body);
}

/* Hide old related product elements */
.pd-related-section .urun-detay-benzer-urunler-main-div {
    display: none !important;
}

/* Right fade edge */
.pd-discover-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 52px;
    background: linear-gradient(to right, transparent, #f5f5f7);
    z-index: 2;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .pd-discover-wrap {
        padding: 0 32px;
    }
    .pd-discover-wrap::after {
        width: 32px;
    }
}

@media (max-width: 768px) {
    .pd-related-section {
        padding: 3rem 0 3.5rem;
    }
    .pd-discover-wrap {
        padding: 0 20px;
    }
    .pd-discover-wrap::after {
        width: 20px;
    }
    .pd-discover-title {
        font-size: 1.35rem;
    }
    .pd-discover-card-info {
        padding: 2.5rem 1rem 1rem;
    }
    .pd-discover-card-name {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .pd-discover-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .pd-discover-wrap {
        padding: 0 16px;
    }
    .pd-discover-wrap::after {
        width: 16px;
    }
}

/* ===== PRODUCT DETAIL MODALS ===== */
.pd-section ~ .modal .modal-content,
.pd-related-section ~ .modal .modal-content,
body > .modal .modal-content {
    border: none !important;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15) !important;
}

body > .modal .modal-content > .close,
.pd-section ~ .modal .modal-content > .close {
    position: absolute !important;
    right: 12px !important;
    top: 8px !important;
    width: 36px;
    height: 36px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    background: #f3f4f6 !important;
    color: #6b7280 !important;
    font-size: 1.25rem !important;
    opacity: 1 !important;
    z-index: 10;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.2s;
    padding: 0 !important;
    line-height: 1 !important;
}

body > .modal .modal-content > .close:hover {
    background: #e5e7eb !important;
    color: #111827 !important;
}

/* Modal body area (the inline-styled divs) */
body > .modal .modal-content > div[style*="padding: 20px"],
body > .modal .modal-content > div[style*="padding:20px"] {
    padding: 2.5rem 2rem 1.5rem !important;
    background: #fff !important;
    text-align: center !important;
    font-family: var(--font-body) !important;
}

/* Modal icons */
body > .modal .modal-content .ion-heart {
    font-size: 3.5rem !important;
    color: #f87171 !important;
    display: block;
    margin-bottom: 0.75rem;
    animation: pdModalPulse 0.6s ease;
}

body > .modal .modal-content .ion-ios-checkmark-outline {
    font-size: 3.5rem !important;
    color: var(--primary) !important;
    display: block;
    margin-bottom: 0.75rem;
    animation: pdModalPulse 0.6s ease;
}

body > .modal .modal-content .ion-ios-information-outline {
    font-size: 3rem !important;
    color: #3b82f6 !important;
    display: block;
    margin-bottom: 0.75rem;
}

body > .modal .modal-content .ion-ios-locked {
    font-size: 3rem !important;
    color: #6366f1 !important;
    display: block;
    margin-bottom: 0.75rem;
}

@keyframes pdModalPulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

/* Modal bold titles */
body > .modal .modal-content div[style*="font-weight: bold"] {
    font-weight: 800 !important;
    font-size: 1.25rem !important;
    color: #111827 !important;
    margin-bottom: 0.5rem !important;
    font-family: var(--font-body) !important;
}

/* Modal footer areas */
body > .modal .category-cart-add-success-modal-footer {
    padding: 1.25rem 1.5rem !important;
    background: #f9fafb !important;
    border-top: 1px solid #f3f4f6 !important;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Footer with inline styles (favori, compare) */
body > .modal .modal-content > div[style*="background-color: #f8f8f8"] {
    padding: 1.25rem 1.5rem !important;
    background: #f9fafb !important;
    border-top: 1px solid #f3f4f6 !important;
}

/* Modal buttons */
body > .modal .button-2x {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100% !important;
    height: 46px;
    padding: 0 1.5rem !important;
    border-radius: 14px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    font-family: var(--font-body) !important;
    text-transform: none !important;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease !important;
    border: none !important;
    text-align: center !important;
    box-sizing: border-box;
}

body > .modal .button-blue {
    background: linear-gradient(135deg, var(--primary), #22883e) !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(27,122,61,0.2);
}

body > .modal .button-blue:hover {
    background: linear-gradient(135deg, #15803d, var(--primary)) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(27,122,61,0.3) !important;
}

body > .modal .button-pink {
    background: linear-gradient(135deg, #f87171, #ef4444) !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(239,68,68,0.2);
}

body > .modal .button-pink:hover {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(239,68,68,0.3) !important;
}

body > .modal .button-green {
    background: linear-gradient(135deg, var(--primary), #22883e) !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(27,122,61,0.2);
}

body > .modal .button-black-out {
    background: #fff !important;
    color: #374151 !important;
    border: 1.5px solid #e5e7eb !important;
    box-shadow: none;
}

body > .modal .button-black-out:hover {
    background: #f9fafb !important;
    border-color: #d1d5db !important;
    transform: translateY(-1px);
}

/* Modal dialog centering fix */
body > .modal .modal-dialog {
    max-width: 420px;
}

body > .modal .modal-dialog.modal-sm {
    max-width: 380px;
}

/* Sepet return modal (larger) */
body > .modal .sepet-return-modal {
    padding: 0 !important;
}

body > .modal .sepet-return-alert {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7) !important;
    color: var(--primary) !important;
    padding: 1rem 1.5rem !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    font-family: var(--font-body) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

body > .modal .sepet-return-alert i {
    font-size: 1.5rem !important;
}

body > .modal .sepet-return-product {
    padding: 1.25rem 1.5rem !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

body > .modal .sepet-return-product-img img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 10px;
    background: #f9fafb;
}

body > .modal .urundetay-cart-add-success-modal-footer {
    padding: 1rem 1.5rem !important;
    background: #f9fafb !important;
    border-top: 1px solid #f3f4f6 !important;
    display: flex;
    gap: 0.5rem;
}

/* Login modal */
body > .modal .modal-in-login {
    padding: 2rem 1.5rem !important;
}

body > .modal .modal-in-login-head-h-text {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #111827 !important;
    font-family: var(--font-body) !important;
}

body > .modal .modal-in-login-head-s {
    color: #6b7280 !important;
    font-size: 0.85rem !important;
    margin-top: 0.25rem !important;
}

body > .modal .modal-in-login-form .form-control {
    border: 1.5px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 0.65rem 0.85rem !important;
    font-family: var(--font-body) !important;
    font-size: 0.88rem !important;
    transition: border-color 0.2s !important;
}

body > .modal .modal-in-login-form .form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(27,122,61,0.08) !important;
}

body > .modal .modal-in-login-foot {
    border-top: 1px solid #f3f4f6 !important;
    padding-top: 1.25rem !important;
    margin-top: 1.25rem !important;
}

/* Comment modal */
body > .modal .modal-in-comment {
    padding: 2rem 1.5rem !important;
}

body > .modal .modal-in-comment-head-h-text {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #111827 !important;
}

body > .modal .modal-in-comment-form .form-control {
    border: 1.5px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 0.65rem 0.85rem !important;
    font-family: var(--font-body) !important;
}

body > .modal .modal-in-comment-form .form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(27,122,61,0.08) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pd-grid {
        gap: 2rem;
    }

    .pd-sticky-nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .pd-hero {
        padding: 2rem 0 0;
    }

    .pd-hero-title {
        font-size: 1.85rem;
    }

    .pd-hero-desc {
        font-size: 0.95rem;
    }

    .pd-hero {
        min-height: 70vh;
    }

    .pd-highlights-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .pd-hl-card {
        padding: 1.15rem 0.75rem 1rem;
    }

    .pd-hl-card:hover {
        transform: none;
    }

    .pd-section {
        padding: 2.5rem 0 3rem;
    }

    .pd-container {
        padding: 0 1.25rem;
    }

    .pd-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pd-gallery {
        position: static;
    }

    .pd-gallery-main {
        border-radius: 0;
    }

    .pd-gallery-thumbs {
        padding: 0.5rem 1rem;
        overflow-x: auto;
    }

    .pd-info {
        padding: 1.25rem 1rem 0;
    }

    .pd-title {
        font-size: 1.3rem;
    }

    .pd-price-area .urun-detay-sag-alan-fiyat-sag {
        font-size: 1.5rem !important;
    }

    .pd-content-section {
        padding: 2.5rem 0;
    }

    .pd-section-heading {
        font-size: 1.25rem;
    }

    .pd-section-body {
        font-size: 0.88rem;
        line-height: 1.75;
    }

    .pd-feature-row {
        flex-direction: column;
    }

    .pd-feature-row:hover {
        background: none;
    }

    .pd-feature-label {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #efecea;
        padding: 0.75rem 1rem;
    }

    .pd-feature-value {
        padding: 0.75rem 1rem;
    }

    .pd-video-wrap iframe {
        height: 260px;
    }

    .pd-video-player,
    .pd-video-poster {
        max-height: 300px;
    }

    .pd-video-play-btn svg {
        width: 48px;
        height: 34px;
    }

    .pd-reviews-section {
        padding: 3rem 0;
    }

    /* Show mobile sticky bar */
    .pd-mobile-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: rgba(255,255,255,0.72);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        border-top: 1px solid rgba(0,0,0,0.08);
        padding: 0.6rem 1rem;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .pd-mobile-bar-price {
        display: flex;
        align-items: baseline;
        gap: 0.2rem;
    }

    .pd-mb-price {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1d1d1f;
    }

    .pd-mb-currency {
        font-size: 0.72rem;
        font-weight: 400;
        color: #86868b;
    }

    .pd-mobile-bar-btn {
        flex: 1;
        max-width: 200px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        background: var(--primary);
        color: #fff;
        border: none;
        border-radius: 980px;
        font-size: 0.85rem;
        font-weight: 400;
        font-family: var(--font-body);
        cursor: pointer;
        transition: background 0.2s;
    }

    .pd-mobile-bar-btn:active {
        background: var(--primary-dark);
    }

    .pd-sticky-nav-links {
        display: none;
    }
}

@media (max-width: 480px) {
    .pd-hero {
        padding: 1.5rem 0 0;
    }

    .pd-hero-title {
        font-size: 1.5rem;
    }

    .pd-hero-desc {
        font-size: 0.85rem;
    }

    .pd-breadcrumb {
        margin-bottom: 0.75rem;
    }

    .pd-hero-actions {
        flex-direction: column;
        gap: 0.6rem;
        margin-bottom: 2rem;
    }

    .pd-hero {
        min-height: 60vh;
    }

    .pd-highlights-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .pd-hl-icon {
        width: 38px;
        height: 38px;
        font-size: 0.88rem;
        border-radius: 11px;
    }

    .pd-gallery-main img {
        object-fit: cover;
    }

    .pd-thumb {
        width: 52px;
        height: 52px;
    }

    .pd-qty {
        height: 48px;
    }

    .pd-qty-btn {
        width: 40px;
    }

    .pd-cart-area .button-green,
    .pd-cart-area .product_detail_submit,
    .pd-cart-area .product_detail_submit_2,
    .pd-cart-area [name="addtocart"] {
        height: 48px;
        font-size: 0.88rem !important;
        padding: 0 1rem !important;
    }

    .pd-price-area .urun-detay-sag-alan-fiyat-sag {
        font-size: 1.35rem !important;
    }

    .pd-title {
        font-size: 1.15rem;
    }

    .pd-meta-sep {
        display: none;
    }

    .pd-section-heading {
        font-size: 1.1rem;
    }

    .pd-section-heading::after {
        width: 36px;
        height: 2px;
    }
}


/* =============================================
   ACCOUNT PAGES - LEGACY CLASS OVERRIDES
   Restyle old wrappers so all subpages match
   ============================================= */

.users_main_div {
    background: #f5f5f7 !important;
    min-height: 100vh;
    padding-top: 2rem;
}

.user_subpage_div {
    max-width: 1100px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 1.5rem;
}

.user_page_header_subpage {
    display: none !important;
}

/* Full-width profile card for subpages */
.ac-profile-header-sub {
    width: 100% !important;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    margin-top: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.ac-profile-header-sub .ac-avatar {
    width: 48px;
    height: 48px;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.ac-profile-header-sub-info {
    flex: 1;
    min-width: 0;
}

.ac-profile-header-sub-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.3;
}

.ac-profile-header-sub-email {
    font-size: 0.78rem;
    color: #86868b;
    margin-top: 0.1rem;
}

.ac-profile-header-sub .ac-profile-type {
    font-size: 0.68rem;
    margin-bottom: 0.15rem;
    display: inline-block;
}

.ac-profile-header-sub .ac-profile-group {
    font-size: 0.7rem;
    margin-top: 0.25rem;
    display: inline-block;
}

.ac-profile-header-sub-logout {
    font-size: 0.78rem;
    color: #86868b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
    padding: 0.4rem 0.85rem;
    border-radius: 980px;
    border: 1px solid #e8e8ed;
    transition: all 0.15s;
}

.ac-profile-header-sub-logout:hover {
    color: #e53e3e;
    border-color: #e53e3e;
    text-decoration: none;
}

@media (max-width: 768px) {
    .ac-profile-header-sub {
        display: none !important;
    }
}

/* Sidebar profile block inside leftbar */
.ac-sidebar-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0.85rem;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0.35rem;
}

.ac-sidebar-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.25;
}

.ac-sidebar-profile-info {
    flex: 1;
    min-width: 0;
}

/* Right content areas - override all variants */
.user_subpage_coupon_content {
    flex: 1 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
}

.user_subpage_right_content,
.user_subpage_favorites_content {
    flex: 1 !important;
    background: #fff !important;
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04) !important;
    padding: 2rem !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
}

/* Left bar visible */

.category-detail-mobile-acc {
    display: none !important;
}

/* Old inner elements */
.user_subpage_account_header,
.user_subpage_account_spot {
    color: #1d1d1f !important;
    letter-spacing: -0.015em;
}

.user_subpage_account_header {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
}

/* Table styling inside account pages */
.user_subpage_coupon_content table,
.user_subpage_right_content table,
.user_subpage_favorites_content table {
    width: 100%;
    border-collapse: collapse;
}

.user_subpage_coupon_content table th,
.user_subpage_right_content table th,
.user_subpage_favorites_content table th {
    background: #f5f5f7 !important;
    color: #1d1d1f !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    padding: 0.65rem 0.85rem !important;
    border: none !important;
    border-bottom: 1px solid #e5e5e7 !important;
    text-align: left;
}

.user_subpage_coupon_content table td,
.user_subpage_right_content table td,
.user_subpage_favorites_content table td {
    font-size: 0.85rem !important;
    color: #1d1d1f !important;
    padding: 0.75rem 0.85rem !important;
    border: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.user_subpage_coupon_content table tr:hover td,
.user_subpage_right_content table tr:hover td,
.user_subpage_favorites_content table tr:hover td {
    background: #fafafa !important;
}

/* Buttons in account pages */
.user_subpage_coupon_content .button-blue,
.user_subpage_right_content .button-blue,
.user_subpage_favorites_content .button-blue,
.user_subpage_coupon_content .button-green,
.user_subpage_right_content .button-green,
.user_subpage_favorites_content .button-green {
    border-radius: 980px !important;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
    padding: 0.6rem 1.5rem !important;
    transition: all 0.2s !important;
}

/* Info boxes */
.user_subpage_info_div_blue,
.user_subpage_info_div_grey {
    border-radius: 10px !important;
    border: none !important;
    font-size: 0.82rem !important;
}

.user_subpage_info_div_blue {
    background: #f0faf3 !important;
    border-left: 3px solid var(--primary) !important;
    border-radius: 0 10px 10px 0 !important;
}

@media (max-width: 768px) {
    .user_subpage_div {
        padding: 0 1rem !important;
        gap: 1rem;
    }

    .ac-nav-mobile {
        width: 100%;
        margin-bottom: 0;
    }

    .user_subpage_coupon_content {
        padding: 0 !important;
        border-radius: 0 !important;
        width: 100% !important;
    }

    .user_subpage_right_content,
    .user_subpage_favorites_content {
        padding: 1.25rem !important;
        border-radius: 14px !important;
        width: 100% !important;
    }

    .ac-card {
        border-radius: 14px !important;
        padding: 1.25rem !important;
    }

    .ac-form-grid {
        grid-template-columns: 1fr !important;
    }

    .ac-form-half {
        grid-column: 1 / -1 !important;
    }
}


/* =============================================
   ACCOUNT INNER CONTENT OVERRIDES
   ============================================= */

/* --- Page Headers --- */
.user_subpage_account_header {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #1d1d1f !important;
    margin-bottom: 1.25rem !important;
    letter-spacing: -0.015em;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.user_subpage_account_spot {
    font-size: 0.82rem !important;
    color: #86868b !important;
    font-weight: 400 !important;
    margin-top: 0.35rem !important;
}

.user_subpage_flex_header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 1rem !important;
    border-bottom: 1px solid #f0f0f0 !important;
    width: 100% !important;
}

.user_subpage_flex_header_h {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #1d1d1f !important;
}

.user_subpage_flex_header_right {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
}

.user_subpage_flex_header_right .form-control {
    border-radius: 10px !important;
    border: 1px solid #d2d2d7 !important;
    font-size: 0.82rem !important;
    padding: 0.5rem 0.75rem !important;
}

.user_subpage_flex_header_right .form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(27,122,61,0.1) !important;
}

.user_subpage_select,
.user_subpage_flex_header_right select {
    border-radius: 10px !important;
    border: 1px solid #d2d2d7 !important;
    font-size: 0.82rem !important;
    padding: 0.5rem 0.75rem !important;
    background: #fff !important;
    color: #1d1d1f !important;
}

/* ===== ADDRESS FORM (New Design) ===== */
.addr-form {
    width: 100%;
}

.addr-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f0f0f0;
}

.addr-page-title {
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin: 0 0 0.25rem !important;
    letter-spacing: -0.02em;
}

.addr-page-subtitle {
    font-size: 0.82rem !important;
    color: #6b7280 !important;
    margin: 0 !important;
}

.addr-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    white-space: nowrap;
    padding: 0.45rem 0.85rem;
    border-radius: 10px;
    background: #f3f4f6;
    transition: all 0.2s;
}

.addr-back-link:hover {
    color: #111827;
    background: #e5e7eb;
    text-decoration: none;
}

/* Default Toggle */
.addr-default-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.15rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

.addr-default-toggle:hover {
    background: #dcfce7;
}

.addr-default-toggle input[type="checkbox"] {
    display: none;
}

.addr-toggle-slider {
    width: 40px;
    height: 22px;
    background: #d1d5db;
    border-radius: 11px;
    position: relative;
    transition: background 0.2s;
    flex-shrink: 0;
}

.addr-toggle-slider::after {
    content: '';
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.addr-default-toggle input:checked ~ .addr-toggle-slider {
    background: #059669;
}

.addr-default-toggle input:checked ~ .addr-toggle-slider::after {
    transform: translateX(18px);
}

.addr-toggle-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f2937;
}

/* Section */
.addr-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.addr-section-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #f3f4f6;
}

.addr-section-header i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 10px;
    font-size: 0.9rem;
}

.addr-section-header h2 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin: 0 !important;
}

/* Grid */
.addr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.addr-field {
    display: flex;
    flex-direction: column;
}

.addr-field.addr-full {
    grid-column: 1 / -1;
}

.addr-field label {
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin-bottom: 0.4rem !important;
    display: block !important;
}

.addr-req {
    color: #ef4444;
}

.addr-field input,
.addr-field select,
.addr-field textarea {
    border: 1px solid #d1d5db !important;
    border-radius: 12px !important;
    padding: 0.7rem 0.9rem !important;
    font-size: 0.88rem !important;
    color: #1f2937 !important;
    background: #fff !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    outline: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    height: auto !important;
    min-height: 46px !important;
    font-family: inherit !important;
}

.addr-field select {
    appearance: auto !important;
}

.addr-field textarea {
    min-height: 80px !important;
    resize: vertical !important;
}

.addr-field input:focus,
.addr-field select:focus,
.addr-field textarea:focus {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1) !important;
}

.addr-field input::placeholder {
    color: #9ca3af !important;
}

/* Input with icon */
.addr-input-icon {
    position: relative;
}

.addr-input-icon i {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.85rem;
    z-index: 1;
}

.addr-input-icon input {
    padding-left: 2.5rem !important;
}

.addr-field-error {
    font-size: 0.75rem;
    color: #ef4444;
    margin-bottom: 0.3rem;
    display: block;
}

/* Invoice Toggle */
.addr-invoice-toggle {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.addr-invoice-option {
    flex: 1;
    cursor: pointer;
    margin: 0;
}

.addr-invoice-option input {
    display: none;
}

.addr-invoice-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    background: #f9fafb;
    transition: all 0.2s;
}

.addr-invoice-option input:checked + .addr-invoice-label {
    border-color: #2563eb;
    color: #2563eb;
    background: #eff6ff;
}

.addr-invoice-fields {
    grid-column: 1 / -1;
}

/* Dynamic fields container */
.addr-dynamic-fields {
    grid-column: 1 / -1;
}

/* Submit */
.addr-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: #059669;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.addr-submit-btn:hover {
    background: #047857;
}

.addr-submit-btn:active {
    transform: scale(0.98);
}

@media (max-width: 640px) {
    .addr-grid {
        grid-template-columns: 1fr;
    }
    .addr-page-header {
        flex-direction: column;
    }
    .addr-section {
        padding: 1rem;
        border-radius: 14px;
    }
    .addr-invoice-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* --- Order Boxes --- */
.user_subpage_siparis_boxes_div {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
}

.user_subpage_siparis_box {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    padding: 1rem 1.25rem !important;
    background: #f9f9fb !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 14px !important;
    transition: all 0.2s !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.user_subpage_siparis_box:hover {
    background: #f0f5f1 !important;
    border-color: var(--primary) !important;
    box-shadow: 0 2px 8px rgba(27,122,61,0.06) !important;
}

.user_subpage_siparis_box_img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.user_subpage_siparis_box_img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
}

.user_subpage_siparis_box_orderno,
.user_subpage_return_box_orderno {
    flex: 1 !important;
    min-width: 0 !important;
    width: auto !important;
}

.user_subpage_siparis_box_orderno-1 {
    font-size: 0.88rem !important;
    color: #1d1d1f !important;
}

.user_subpage_siparis_box_orderno-2 {
    font-size: 0.75rem !important;
    color: #86868b !important;
    margin-top: 0.15rem !important;
}

.user_subpage_siparis_box_status .button-1x,
.user_subpage_siparis_box_status div {
    border-radius: 980px !important;
    font-size: 0.72rem !important;
    padding: 0.25rem 0.75rem !important;
    font-weight: 600 !important;
}

.user_subpage_siparis_box_status_iptal {
    border-radius: 980px !important;
    font-size: 0.72rem !important;
    padding: 0.25rem 0.75rem !important;
    font-weight: 600 !important;
    background: #fef2f2 !important;
    color: #e53e3e !important;
    border: none !important;
}

.user_subpage_siparis_box_end {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
}

.user_subpage_siparis_box_end_amount_1 {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #1d1d1f !important;
}

.user_subpage_siparis_box_end_amount_2 {
    font-size: 0.7rem !important;
    color: #86868b !important;
}

.user_subpage_ticketbox_go {
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: #f0f0f0 !important;
    color: #86868b !important;
    transition: all 0.2s !important;
    text-decoration: none !important;
}

.user_subpage_ticketbox_go:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

/* --- Favorites Grid --- */
.user_subpage_favorites_box_div_out {
    width: 100% !important;
    overflow: visible !important;
}

.user_subpage_favorites_box_div {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.25rem !important;
    width: 100% !important;
    margin-top: 1.5rem !important;
    margin-right: 0 !important;
}

/* When siparis/return/comment boxes are inside favorites grid, force single column */
.user_subpage_favorites_box_div:has(.user_subpage_siparis_box),
.user_subpage_favorites_box_div:has(.user_subpage_comment_box) {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

.user_subpage_favorites_box {
    width: 100% !important;
    background: #fff !important;
    border: 1px solid #e8e8ed !important;
    border-radius: 18px !important;
    padding: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    text-align: center !important;
    transition: all 0.3s cubic-bezier(.25,.1,.25,1) !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
}

.user_subpage_favorites_box:hover {
    border-color: var(--primary, #1B7A3D) !important;
    box-shadow: 0 8px 24px rgba(27,122,61,0.1) !important;
    transform: translateY(-2px) !important;
}

.user_subpage_favorites_box_icon {
    position: absolute !important;
    top: 0.75rem !important;
    right: 0.75rem !important;
    left: auto !important;
    color: #fff !important;
    font-size: 0.85rem !important;
    z-index: 2 !important;
    width: 34px !important;
    height: 34px !important;
    background: rgba(229,62,62,0.85) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.user_subpage_favorites_box_img {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 0 !important;
    background: #f8f8fa !important;
    padding: 1.5rem 1rem !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

.user_subpage_favorites_box_img img {
    width: 100% !important;
    height: 180px !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    transition: transform 0.4s cubic-bezier(.25,.1,.25,1) !important;
}

.user_subpage_favorites_box:hover .user_subpage_favorites_box_img img {
    transform: scale(1.05) !important;
}

.user_subpage_favorites_box_h {
    width: 100% !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    margin-bottom: 0 !important;
    line-height: 1.45 !important;
    padding: 1rem 1rem 0.5rem !important;
    flex: 1 !important;
    box-sizing: border-box !important;
}

.user_subpage_favorites_box_h a {
    color: #1d1d1f !important;
    text-decoration: none !important;
}

.user_subpage_favorites_box:hover .user_subpage_favorites_box_h a {
    color: var(--primary, #1B7A3D) !important;
}

.user_subpage_favorites_box_go {
    margin-top: 0 !important;
    padding: 0 1rem 1rem !important;
    justify-content: center !important;
}

.user_subpage_favorites_box_go a {
    font-size: 0.75rem !important;
    color: #e53e3e !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
    padding: 0.4rem 1rem !important;
    border: 1px solid #fecaca !important;
    border-radius: 980px !important;
    background: #fff !important;
    transition: all 0.2s !important;
}

.user_subpage_favorites_box_go a:hover {
    background: #fef2f2 !important;
    border-color: #e53e3e !important;
}

/* --- Empty States --- */
.user_subpage_favorites_noitems,
.user_subpage_favorites_nologin {
    text-align: center !important;
    padding: 3rem 1.5rem !important;
    width: 100% !important;
}

.user_subpage_favorites_noitems i,
.user_subpage_favorites_nologin i {
    font-size: 2.5rem !important;
    color: #d2d2d7 !important;
    margin-bottom: 0.75rem !important;
}

.user_subpage_favorites_noitems_head,
.user_subpage_favorites_nologin_head {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #1d1d1f !important;
    margin-bottom: 0.35rem !important;
}

.user_subpage_favorites_noitems_s,
.user_subpage_favorites_nologin_s {
    font-size: 0.85rem !important;
    color: #86868b !important;
    margin-bottom: 1rem !important;
}

.user_subpage_favorites_noitems .button-black-out,
.user_subpage_favorites_nologin_buttons a {
    border-radius: 980px !important;
    font-size: 0.82rem !important;
    padding: 0.55rem 1.5rem !important;
    font-weight: 500 !important;
}

/* --- Address Cards --- */
.user_subpage_address_boxes_main {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 1rem !important;
    width: 100% !important;
}

.user_subpage_address_box {
    background: #f9f9fb !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 14px !important;
    padding: 1.25rem !important;
    transition: all 0.2s !important;
}

.user_subpage_address_box:hover {
    border-color: #d2d2d7 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
}

.user_subpage_address_box_name {
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    color: #1d1d1f !important;
    margin-bottom: 0.35rem !important;
}

.user_subpage_address_box_user {
    font-size: 0.82rem !important;
    color: #1d1d1f !important;
    font-weight: 500 !important;
    margin-bottom: 0.5rem !important;
}

.user_subpage_address_box_content {
    font-size: 0.8rem !important;
    color: #86868b !important;
    line-height: 1.5 !important;
    margin-bottom: 0.5rem !important;
}

.user_subpage_address_box_phone {
    font-size: 0.78rem !important;
    color: #86868b !important;
    margin-bottom: 0.5rem !important;
}

.user_subpage_address_box_type {
    font-size: 0.72rem !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 0.75rem !important;
}

.user_subpage_address_box_buttons {
    display: flex !important;
    gap: 0.5rem !important;
    margin-top: 0.75rem !important;
    padding-top: 0.75rem !important;
    border-top: 1px solid #f0f0f0 !important;
}

.user_subpage_address_box_buttons a {
    border-radius: 980px !important;
    font-size: 0.75rem !important;
    padding: 0.35rem 0.85rem !important;
    font-weight: 500 !important;
}

.user_subpage_address_box_added,
.user_subpage_address_box_added_noitem {
    background: #fff !important;
    border: 2px dashed #d2d2d7 !important;
    border-radius: 14px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2rem !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
    min-height: 180px !important;
}

.user_subpage_address_box_added:hover,
.user_subpage_address_box_added_noitem:hover {
    border-color: var(--primary) !important;
    background: #f0faf3 !important;
    text-decoration: none !important;
}

.user_subpage_address_box_added_icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: #f5f5f7 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0.75rem !important;
    transition: all 0.2s !important;
}

.user_subpage_address_box_added:hover .user_subpage_address_box_added_icon,
.user_subpage_address_box_added_noitem:hover .user_subpage_address_box_added_icon {
    background: var(--primary) !important;
}

.user_subpage_address_box_added_icon i {
    font-size: 1.25rem !important;
    color: #86868b !important;
    transition: color 0.2s !important;
}

.user_subpage_address_box_added:hover .user_subpage_address_box_added_icon i,
.user_subpage_address_box_added_noitem:hover .user_subpage_address_box_added_icon i {
    color: #fff !important;
}

.user_subpage_address_box_added_text {
    font-size: 0.82rem !important;
    color: #86868b !important;
    font-weight: 500 !important;
}

.user_subpage_comment_box_status_main {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
    margin-bottom: 0.75rem !important;
}

.user_subpage_comment_box_status {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
    font-size: 0.7rem !important;
    padding: 0.2rem 0.6rem !important;
    border-radius: 980px !important;
    font-weight: 600 !important;
}

/* --- Coupon Boxes --- */
.user_subpage_kupon_box {
    background: #f9f9fb !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 14px !important;
    padding: 1.25rem !important;
    margin-bottom: 0.75rem !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    transition: all 0.2s !important;
}

.user_subpage_kupon_box:hover {
    border-color: #d2d2d7 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
}

.user_subpage_kupon_name_1 {
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    color: #1d1d1f !important;
}

.user_subpage_kupon_name_2 {
    font-size: 0.72rem !important;
    color: #86868b !important;
    margin-top: 0.15rem !important;
}

.user_subpage_kupon_name_3 {
    font-size: 0.78rem !important;
    color: #86868b !important;
    width: 100% !important;
    padding-top: 0.75rem !important;
    border-top: 1px solid #f0f0f0 !important;
}

.user_subpage_kupon_tutar_1 {
    font-size: 0.7rem !important;
    color: #86868b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
}

.user_subpage_kupon_tutar_2 {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
}

.user_subpage_kupon_sdate_1,
.user_subpage_kupon_fdate_1 {
    font-size: 0.7rem !important;
    color: #86868b !important;
}

.user_subpage_kupon_sdate_2,
.user_subpage_kupon_fdate_2 {
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: #1d1d1f !important;
}

.user_subpage_kupon_status_1 {
    font-size: 0.7rem !important;
    color: #86868b !important;
}

/* --- Comment/Review Boxes --- */
.user_subpage_comment_box,
.user_subpage_comment_box2 {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    background: #fff !important;
    border: 1px solid #e8e8ed !important;
    border-radius: 18px !important;
    padding: 1.5rem !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 0.75rem !important;
    transition: all 0.2s !important;
}

.user_subpage_comment_box:hover,
.user_subpage_comment_box2:hover {
    border-color: var(--primary, #1B7A3D) !important;
    box-shadow: 0 8px 24px rgba(27,122,61,0.08) !important;
    transform: translateY(-2px) !important;
}

.user_subpage_comment_box_product {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-bottom: 1rem !important;
    padding-bottom: 1rem !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.user_subpage_comment_box_img {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: #f8f8fa !important;
    margin-right: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.user_subpage_comment_box_img img {
    width: 100% !important;
    height: 72px !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
    border-radius: 0 !important;
}

.user_subpage_comment_box_point {
    flex: 1 !important;
    min-width: 0 !important;
}

.user_subpage_comment_box_product_name {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #1d1d1f !important;
    margin-bottom: 0.3rem !important;
}

.user_subpage_comment_box_product_name a {
    color: #1d1d1f !important;
    text-decoration: none !important;
}

.user_subpage_comment_box:hover .user_subpage_comment_box_product_name a {
    color: var(--primary, #1B7A3D) !important;
}

.user_subpage_comment_box_point_count {
    display: flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
    font-size: 0.78rem !important;
    color: #86868b !important;
}

.user_subpage_comment_box_point_count > div {
    margin-right: 0.3rem !important;
}

.user_subpage_comment_box_point_count span {
    font-size: 1rem !important;
}

.user_subpage_comment_box_text {
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    color: #86868b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    margin-bottom: 0.4rem !important;
}

.user_subpage_comment_box_content {
    font-size: 0.85rem !important;
    color: #424245 !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    max-height: 120px !important;
    overflow-y: auto !important;
}

.user_subpage_comment_box_delete {
    margin-top: auto !important;
    text-align: right !important;
    padding-top: 0.75rem !important;
    border-top: 1px solid #f0f0f0 !important;
}

.user_subpage_comment_box_delete a {
    color: #e53e3e !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
    padding: 0.4rem 1rem !important;
    border: 1px solid #fecaca !important;
    border-radius: 980px !important;
    background: #fff !important;
    transition: all 0.2s !important;
}

.user_subpage_comment_box_delete a:hover {
    background: #fef2f2 !important;
    border-color: #e53e3e !important;
    color: #e53e3e !important;
}

/* --- Ticket/Support Boxes --- */
.user_subpage_ticketbox {
    background: #f9f9fb !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 14px !important;
    padding: 1rem 1.25rem !important;
    margin-bottom: 0.75rem !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.2s !important;
}

.user_subpage_ticketbox:hover {
    border-color: #d2d2d7 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
}

.user_subpage_ticketbox_number {
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: #1d1d1f !important;
}

.user_subpage_ticketbox_h {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    color: #1d1d1f !important;
}

.user_subpage_ticketbox_status {
    font-size: 0.72rem !important;
    border-radius: 980px !important;
    font-weight: 600 !important;
}

/* --- Pagination Override --- */
.pagination {
    gap: 0.25rem !important;
}

.pagination .page-item .page-link {
    border-radius: 8px !important;
    border: 1px solid #d2d2d7 !important;
    color: #1d1d1f !important;
    font-size: 0.8rem !important;
    padding: 0.35rem 0.65rem !important;
    transition: all 0.15s !important;
}

.pagination .page-item .page-link:hover {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
}

.pagination .page-item.active .page-link {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}

/* --- Form Controls Inside Account --- */
.users_main_div .form-control {
    border-radius: 10px !important;
    border: 1px solid #d2d2d7 !important;
    font-size: 0.85rem !important;
    padding: 0.6rem 0.85rem !important;
    color: #1d1d1f !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
}

.users_main_div .form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(27,122,61,0.1) !important;
    outline: none !important;
}

.users_main_div .form-group label {
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: #1d1d1f !important;
}

/* --- Nice Select Override --- */
.users_main_div .nice-select {
    border-radius: 10px !important;
    border: 1px solid #d2d2d7 !important;
    font-size: 0.82rem !important;
    height: auto !important;
    padding: 0.5rem 2rem 0.5rem 0.85rem !important;
    line-height: 1.4 !important;
}

/* --- Search area --- */
.ustsearch_area {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
}

.ustsearch_area .form-control {
    border-radius: 10px 0 0 10px !important;
}

.ustsearch_area button {
    border-radius: 0 10px 10px 0 !important;
    background: var(--primary) !important;
    color: #fff !important;
    border: 1px solid var(--primary) !important;
    padding: 0.55rem 0.85rem !important;
    transition: background 0.2s !important;
}

.ustsearch_area button:hover {
    background: var(--primary-dark) !important;
}

/* --- Mobile adjustments for inner content --- */
@media (max-width: 768px) {
    .user_subpage_siparis_box {
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
        padding: 0.85rem !important;
    }

    .user_subpage_siparis_box_img {
        width: 40px !important;
        height: 40px !important;
    }

    .user_subpage_siparis_box_end {
        width: 100% !important;
        justify-content: space-between !important;
        padding-top: 0.5rem !important;
        border-top: 1px solid #f0f0f0 !important;
    }

    .user_subpage_flex_header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .user_subpage_flex_header_right {
        width: 100% !important;
        flex-wrap: wrap !important;
    }

    .user_subpage_address_boxes_main {
        grid-template-columns: 1fr !important;
    }

    .user_subpage_favorites_box_div {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .user_subpage_favorites_box_img {
        padding: 1rem 0.75rem !important;
    }

    .user_subpage_favorites_box_img img {
        height: 130px !important;
    }

    .user_subpage_favorites_box_h {
        padding: 0.75rem 0.75rem 0.4rem !important;
        font-size: 0.78rem !important;
    }

    .user_subpage_kupon_box {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}


/* =============================================
   ACCOUNT PAGES - APPLE INSPIRED
   ============================================= */

.ac-page {
    background: #f5f5f7;
    min-height: 100vh;
    padding: 6rem 0 4rem;
}

.ac-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Breadcrumb */
.ac-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 0.8rem;
    color: #86868b;
    margin-bottom: 2rem;
}

.ac-breadcrumb a {
    color: #86868b;
    text-decoration: none;
    transition: color 0.2s;
}

.ac-breadcrumb a:hover {
    color: #1d1d1f;
    text-decoration: none;
}

.ac-bc-sep {
    margin: 0 0.5rem;
    color: #d2d2d7;
}

.ac-bc-active {
    color: #1d1d1f;
    font-weight: 500;
}

/* Profile Header */
.ac-profile-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.ac-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.ac-profile-info {
    flex: 1;
    min-width: 0;
}

.ac-profile-type {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.15rem;
}

.ac-profile-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.ac-profile-email {
    font-size: 0.82rem;
    color: #86868b;
    display: block;
    margin-top: 0.15rem;
}

.ac-profile-group {
    display: inline-block;
    font-size: 0.7rem;
    background: var(--primary);
    color: #fff;
    border-radius: 980px;
    padding: 0.15rem 0.65rem;
    font-weight: 600;
    margin-top: 0.4rem;
}

.ac-logout-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: #86868b;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 980px;
    border: 1px solid #d2d2d7;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.ac-logout-btn:hover {
    color: #e53e3e;
    border-color: #e53e3e;
    text-decoration: none;
    background: rgba(229,62,62,0.04);
}

/* Layout */
.ac-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.5rem;
    align-items: start;
}

/* Sidebar */
.ac-sidebar {
    position: sticky;
    top: 6rem;
}

.ac-nav {
    background: #fff;
    border-radius: 14px;
    padding: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.ac-nav-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    color: #1d1d1f;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
}

.ac-nav-item:hover {
    background: #f5f5f7;
    color: #1d1d1f;
    text-decoration: none;
}

.ac-nav-item i {
    font-size: 1.15rem;
    color: #86868b;
    width: 22px;
    text-align: center;
}

.ac-nav-active {
    background: var(--primary) !important;
    color: #fff !important;
}

.ac-nav-active i {
    color: #fff !important;
}

/* Cards */
.ac-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.ac-card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.ac-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.015em;
}

.ac-card-title i {
    color: var(--primary);
    font-size: 1.25rem;
}

.ac-info-banner {
    background: #f0faf3;
    border-left: 3px solid var(--primary);
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    color: #1d1d1f;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

/* Form */
.ac-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ac-form-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    grid-column: 1 / -1;
}

.ac-form-full {
    grid-column: 1 / -1;
}

.ac-form-half {
    grid-column: span 1;
}

.ac-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.ac-input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid #d2d2d7;
    border-radius: 10px;
    font-size: 0.88rem;
    color: #1d1d1f;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    outline: none;
    font-family: inherit;
}

.ac-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27,122,61,0.1);
}

.ac-input-disabled {
    background: #f5f5f7;
    color: #86868b;
    cursor: not-allowed;
}

.ac-input-wrap {
    position: relative;
    width: 100%;
}
.ac-input-wrap .ac-input {
    width: 100%;
    padding-right: 2.75rem;
}

.ac-eye {
    position: absolute;
    right: 0.75rem;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%);
    color: #86868b;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1;
    z-index: 2;
    transition: color 0.2s;
}

.ac-eye:hover {
    color: #1d1d1f;
}

/* Radio */
.ac-radio-group {
    display: flex;
    gap: 1.5rem;
}

.ac-radio {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: #1d1d1f;
    cursor: pointer;
    font-weight: 400;
}

.ac-radio input {
    display: none;
}

.ac-radio-mark {
    width: 18px;
    height: 18px;
    border: 2px solid #d2d2d7;
    border-radius: 50%;
    position: relative;
    transition: border-color 0.2s;
    flex-shrink: 0;
}

.ac-radio input:checked ~ .ac-radio-mark {
    border-color: var(--primary);
}

.ac-radio input:checked ~ .ac-radio-mark::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

/* Checkbox */
.ac-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #1d1d1f;
    cursor: pointer;
    line-height: 1.4;
}

.ac-checkbox input {
    display: none;
}

.ac-checkbox-mark {
    width: 18px;
    height: 18px;
    border: 2px solid #d2d2d7;
    border-radius: 5px;
    position: relative;
    transition: all 0.2s;
    flex-shrink: 0;
    margin-top: 1px;
}

.ac-checkbox input:checked ~ .ac-checkbox-mark {
    background: var(--primary);
    border-color: var(--primary);
}

.ac-checkbox input:checked ~ .ac-checkbox-mark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Buttons */
.ac-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 2rem;
    border-radius: 980px;
    font-size: 0.88rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    letter-spacing: 0.01em;
    width: 100%;
}

.ac-btn-primary {
    background: var(--primary);
    color: #fff;
}

.ac-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27,122,61,0.25);
}

.ac-btn-dark {
    background: #1d1d1f;
    color: #fff;
}

.ac-btn-dark:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Toast Notifications */
.ac-toast {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    max-width: 380px;
    animation: acToastIn 0.35s ease;
    transition: opacity 0.4s;
}

.ac-toast-info {
    border-left: 3px solid #3b82f6;
}

.ac-toast-success {
    border-left: 3px solid var(--primary);
}

.ac-toast-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.ac-toast-info .ac-toast-icon {
    color: #3b82f6;
}

.ac-toast-success .ac-toast-icon {
    color: var(--primary);
}

.ac-toast-content {
    flex: 1;
}

.ac-toast-content strong {
    display: block;
    font-size: 0.88rem;
    color: #1d1d1f;
    margin-bottom: 0.2rem;
}

.ac-toast-content p {
    font-size: 0.8rem;
    color: #86868b;
    margin: 0;
    line-height: 1.4;
}

.ac-toast-close {
    background: none;
    border: none;
    color: #86868b;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0.2rem;
    transition: color 0.2s;
}

.ac-toast-close:hover {
    color: #1d1d1f;
}

@keyframes acToastIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .ac-page {
        padding: 5rem 0 3rem;
    }

    .ac-container {
        padding: 0 1rem;
    }

    .ac-profile-header {
        flex-wrap: wrap;
        padding: 1.25rem 1.25rem;
        gap: 1rem;
    }

    .ac-logout-btn {
        width: 100%;
        justify-content: center;
    }

    .ac-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ac-sidebar {
        position: static;
    }

    .ac-nav {
        display: flex;
        overflow-x: auto;
        padding: 0.35rem;
        gap: 0.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .ac-nav::-webkit-scrollbar {
        display: none;
    }

    .ac-nav-item {
        white-space: nowrap;
        padding: 0.55rem 0.75rem;
        font-size: 0.78rem;
        flex-shrink: 0;
    }

    .ac-nav-item span {
        display: none;
    }

    .ac-nav-item i {
        margin: 0;
        font-size: 1.1rem;
    }

    .ac-card {
        padding: 1.25rem;
        border-radius: 14px;
    }

    .ac-form-grid {
        grid-template-columns: 1fr;
    }

    .ac-form-half {
        grid-column: 1 / -1;
    }

    .ac-form-grid-inner {
        grid-template-columns: 1fr;
    }

    .ac-toast {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}


/* ===================================
   ODEME BILDIRIMI (Payment Notification)
   =================================== */

/* Ana kapsayıcı */
#MainDiv .user_login_register_div {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

/* Sayfa başlığı - sipariş no giriş ekranı */
#MainDiv .user_page_header {
    width: 100% !important;
    max-width: 500px !important;
    border: none !important;
    background: transparent !important;
    padding: 0 0 20px 0 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1B7A3D !important;
    text-align: center !important;
}

/* Sipariş no giriş formu kutusu */
#MainDiv .user_page_login_form {
    width: 100% !important;
    max-width: 500px !important;
    border: none !important;
    background: #fff !important;
    border-radius: 16px !important;
    padding: 36px !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
}

#MainDiv .user_page_login_form .user_subpage_info_div_blue {
    background: #f0faf4 !important;
    color: #1B7A3D !important;
    border: 1px solid #d4edda !important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    margin-bottom: 20px !important;
    margin-top: 0 !important;
}

#MainDiv .user_page_login_form label {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: #334155 !important;
}

#MainDiv .user_page_login_form input.form-control {
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 0.95rem !important;
    background: #f8fafc !important;
    transition: border-color 0.2s !important;
    font-family: 'Inter', sans-serif !important;
}

#MainDiv .user_page_login_form input.form-control:focus {
    border-color: #1B7A3D !important;
    background: #fff !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(27,122,61,0.1) !important;
}

#MainDiv .user_page_login_form .button-blue {
    background: #1B7A3D !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 24px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    font-family: 'Inter', sans-serif !important;
}

#MainDiv .user_page_login_form .button-blue:hover {
    background: #145C2E !important;
}

/* ---- Sipariş bulundu: Ana içerik ---- */

.odeme-bildirim-main-div {
    width: 100% !important;
}

.odeme-bildirim-main-div .user_page_header2 {
    width: 100% !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin-bottom: 8px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
}

.odeme-bildirim-main-div .user_page_header_spot {
    font-size: 0.88rem !important;
    color: #64748b !important;
    font-weight: 400 !important;
    margin-top: 4px !important;
}

/* 3 sütunlu flex düzeni */
.odeme-bildirim-boxes-flex {
    width: 100% !important;
    display: flex !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    margin-top: 24px !important;
    align-items: flex-start !important;
}

.odeme-bildirim-box {
    flex: 1 !important;
    min-width: 280px !important;
    margin: 0 !important;
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
    border: none !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.odeme-bildirim-box:last-child {
    margin-right: 0 !important;
}

/* Kutu başlıkları */
.odeme-bildirim-box-hed {
    border-bottom: 1px solid #f1f5f9 !important;
    padding: 18px 24px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    background: #f8fafc !important;
    margin-bottom: 0 !important;
}

/* Banka hesapları scroll alanı */
.odeme-bildirim-box-account-div {
    padding: 12px !important;
    max-height: 420px !important;
    overflow-y: auto !important;
}

.odeme-bildirim-box-account-div::-webkit-scrollbar {
    width: 5px !important;
}

.odeme-bildirim-box-account-div::-webkit-scrollbar-track {
    background: #f1f5f9 !important;
    border-radius: 10px !important;
}

.odeme-bildirim-box-account-div::-webkit-scrollbar-thumb {
    background: #cbd5e1 !important;
    border-radius: 10px !important;
}

/* Banka radio kartları */
.odeme-bildirim-banka-radio {
    border-bottom: none !important;
    margin-bottom: 8px !important;
}

.odeme-bildirim-banka-radio label {
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 16px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: block !important;
}

.odeme-bildirim-banka-radio label:hover {
    border-color: #1B7A3D !important;
    background: #f0faf4 !important;
}

.odeme-bildirim-banka-radio input {
    display: none !important;
}

.odeme-bildirim-banka-radio input:checked + label {
    border-color: #1B7A3D !important;
    background: #f0faf4 !important;
    box-shadow: 0 0 0 3px rgba(27,122,61,0.12) !important;
}

.odeme-bildirim-banka-radio-hed {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 10px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

.odeme-bildirim-banka-radio-hed-img {
    width: 80px !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f8fafc !important;
    border-radius: 8px !important;
    margin-right: 12px !important;
    flex-shrink: 0 !important;
    border: 1px solid #e2e8f0 !important;
    overflow: hidden !important;
    padding: 4px !important;
}

.odeme-bildirim-banka-radio-hed-img img {
    max-width: 100% !important;
    max-height: 36px !important;
    object-fit: contain !important;
}

.odeme-bildirim-banka-radio-bank {
    flex: 1 !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    font-family: 'Inter', sans-serif !important;
}

.odeme-bildirim-banka-radio-text {
    border-bottom: 1px dashed #f1f5f9 !important;
    font-size: 0.8rem !important;
    padding: 5px 0 !important;
    color: #475569 !important;
    font-family: 'Inter', sans-serif !important;
    word-break: break-all !important;
}

.odeme-bildirim-banka-radio-text:last-child {
    border-bottom: none !important;
}

.odeme-bildirim-banka-radio-text strong {
    color: #334155 !important;
    font-weight: 600 !important;
}

/* Sipariş tutarı bilgi kutusu */
.odeme-bildirim-box .user_subpage_info_div_blue {
    background: #f0faf4 !important;
    color: #1B7A3D !important;
    border: 1px solid #d4edda !important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    margin: 16px 24px !important;
}

/* Form alanı */
.odeme-bildirim-box-form {
    padding: 0 24px 24px 24px !important;
}

.odeme-bildirim-box-form label {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #334155 !important;
}

.odeme-bildirim-box-form .form-control {
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 11px 14px !important;
    font-size: 0.9rem !important;
    background: #f8fafc !important;
    transition: border-color 0.2s !important;
    font-family: 'Inter', sans-serif !important;
}

.odeme-bildirim-box-form .form-control:focus {
    border-color: #1B7A3D !important;
    background: #fff !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(27,122,61,0.1) !important;
}

.odeme-bildirim-box-form select.form-control {
    appearance: auto !important;
    cursor: pointer !important;
}

.odeme-bildirim-box-form .button-blue {
    background: #1B7A3D !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 24px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    font-family: 'Inter', sans-serif !important;
}

.odeme-bildirim-box-form .button-blue:hover {
    background: #145C2E !important;
}

/* Bilgi/talimat kutusu (3. sütun) */
.odeme-bildirim-box-spot {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #334155 !important;
    padding: 20px 24px 12px !important;
    margin-bottom: 0 !important;
    font-family: 'Inter', sans-serif !important;
    width: 100% !important;
}

.odeme-bildirim-box-spotsm {
    font-size: 0.83rem !important;
    font-weight: 400 !important;
    color: #64748b !important;
    padding: 0 24px 24px !important;
    line-height: 1.6 !important;
    font-family: 'Inter', sans-serif !important;
    width: 100% !important;
}

/* ---- Bildirim durumu ekranı ---- */
.odeme-bildirim-uyari {
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 auto !important;
    padding: 60px 40px !important;
    text-align: center !important;
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
}

.odeme-bildirim-uyari-i {
    font-size: 56px !important;
    color: #1B7A3D !important;
    margin-bottom: 16px !important;
}

.odeme-bildirim-uyari .user_subpage_favorites_noitems_head {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    font-family: 'Inter', sans-serif !important;
}

.odeme-bildirim-uyari .user_subpage_favorites_noitems_s {
    font-size: 0.9rem !important;
    color: #64748b !important;
    font-family: 'Inter', sans-serif !important;
    margin-top: 6px !important;
}

.odeme-bildirim-uyari .button-blue-out,
.odeme-bildirim-uyari .button-green-out,
.odeme-bildirim-uyari .button-red-out {
    display: inline-block !important;
    padding: 10px 24px !important;
    border-radius: 10px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    margin-top: 16px !important;
}

.odeme-bildirim-uyari .button-blue-out {
    background: #eef6ff !important;
    color: #2563eb !important;
    border: 1px solid #bfdbfe !important;
}

.odeme-bildirim-uyari .button-green-out {
    background: #f0faf4 !important;
    color: #1B7A3D !important;
    border: 1px solid #d4edda !important;
}

.odeme-bildirim-uyari .button-red-out {
    background: #fef2f2 !important;
    color: #dc2626 !important;
    border: 1px solid #fecaca !important;
}

.odeme-bildirim-uyari .button-blue {
    background: #1B7A3D !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 12px 28px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    display: inline-block !important;
    text-decoration: none !important;
    font-family: 'Inter', sans-serif !important;
    margin-top: 12px !important;
}

.odeme-bildirim-uyari .button-blue:hover {
    background: #145C2E !important;
}

/* Sipariş bulunamadı ekranı */
#MainDiv .iletisim-container-in {
    border: none !important;
    background: transparent !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}

#MainDiv .iletisim-container-in .user_subpage_favorites_noitems {
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
    padding: 60px 40px !important;
    text-align: center !important;
    max-width: 500px !important;
}

#MainDiv .iletisim-container-in .user_subpage_favorites_noitems img {
    max-width: 120px !important;
    opacity: 0.7 !important;
}

#MainDiv .iletisim-container-in .user_subpage_favorites_noitems .button-blue {
    background: #1B7A3D !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 12px 28px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    display: inline-block !important;
    text-decoration: none !important;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .odeme-bildirim-boxes-flex {
        flex-direction: column !important;
    }

    .odeme-bildirim-box {
        min-width: 100% !important;
    }

    #MainDiv .user_login_register_div {
        padding: 24px 16px !important;
    }

    .odeme-bildirim-uyari {
        padding: 40px 24px !important;
    }
}

@media (max-width: 576px) {
    #MainDiv .user_page_login_form {
        padding: 24px 20px !important;
    }

    .odeme-bildirim-box-form {
        padding: 0 16px 16px 16px !important;
    }

    .odeme-bildirim-box .user_subpage_info_div_blue {
        margin: 12px 16px !important;
    }
}

/* ========== HOMEPAGE ABOUT STRIP ========== */
.hp-about {
    background: #f9faf9;
    padding: 3rem 2rem;
}
.hp-about-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}
.hp-about-left { flex: 1; min-width: 0; }
.hp-about-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 0.6rem;
}
.hp-about-title em {
    font-style: normal;
    color: #1B7A3D;
}
.hp-about-desc {
    font-size: 0.88rem;
    color: #888;
    line-height: 1.6;
    margin: 0 0 1.25rem;
}
.hp-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border: 1px solid rgba(27,122,61,0.3);
    color: #1B7A3D;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    background: transparent;
}
.hp-about-btn:hover {
    background: rgba(27,122,61,0.08);
    border-color: #1B7A3D;
    color: #1B7A3D;
    text-decoration: none;
}
.hp-about-btn i { font-size: 0.7rem; transition: transform 0.25s; }
.hp-about-btn:hover i { transform: translateX(3px); }

.hp-about-stats {
    display: flex;
    gap: 2.5rem;
    flex-shrink: 0;
}
.hp-about-stat {
    text-align: center;
}
.hp-about-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
    letter-spacing: -0.03em;
}
.hp-about-stat strong span { color: #1B7A3D; }
.hp-about-stat > span {
    font-size: 0.72rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.3rem;
    display: block;
}

@media (max-width: 768px) {
    .hp-about { padding: 2.5rem 1.25rem; }
    .hp-about-inner { flex-direction: column; text-align: center; gap: 2rem; }
    .hp-about-stats { justify-content: center; }
}
@media (max-width: 480px) {
    .hp-about-stats { gap: 1.5rem; }
    .hp-about-stat strong { font-size: 1.6rem; }
}

/* ========== HTML SAYFA (Gizlilik, Iade vb.) ========== */
#MainDiv:has(.htmlpage-container-main) {
    background-color: #f9faf9 !important;
}
#MainDiv:has(.htmlpage-container-main) .page-banner-main {
    display: none;
}
.htmlpage-container-main {
    width: 100% !important;
    max-width: 1140px;
    margin: 0 auto;
    padding: 2.5rem 2rem !important;
    gap: 2rem;
}
.htmlpage-content-div {
    background: #fff !important;
    border: 1px solid #eef2ec !important;
    border-radius: 20px !important;
    padding: 2.5rem !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
    font-family: Inter, -apple-system, sans-serif !important;
    line-height: 1.8;
    color: #444;
    font-size: 0.92rem;
}
.htmlpage-content-div h1,
.htmlpage-content-div h2,
.htmlpage-content-div h3 {
    color: #1a1a1a;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.htmlpage-content-div h1 { font-size: 1.5rem; }
.htmlpage-content-div h2 { font-size: 1.2rem; }
.htmlpage-content-div h3 { font-size: 1.05rem; }
.htmlpage-content-div p {
    margin-bottom: 1rem;
}
.htmlpage-content-div ol,
.htmlpage-content-div ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0.5rem;
}
.htmlpage-content-div ol > li {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1B7A3D;
    margin-top: 1.5rem;
    margin-bottom: 0.25rem;
    padding-left: 0;
}
.htmlpage-content-div a {
    color: #1B7A3D;
    text-decoration: none;
}
.htmlpage-content-div a:hover {
    text-decoration: underline;
}

/* Sidebar nav */
.subpage-nav-desktop .subpage_navigation {
    width: 240px !important;
    margin-right: 0 !important;
}
.subpage_navigation-box {
    background: #fff !important;
    border: 1px solid #eef2ec !important;
    border-radius: 16px !important;
    padding: 1.25rem !important;
    margin-bottom: 1rem !important;
}
.subpage_navigation_header {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid #f0f2ef !important;
    padding-bottom: 0.75rem !important;
    margin-bottom: 0.75rem !important;
}
.subpage_navigation_a {
    font-size: 0.88rem !important;
    color: #555 !important;
    padding: 0.4rem 0 !important;
    margin-bottom: 0 !important;
    transition: color 0.2s;
}
.subpage_navigation_a:hover {
    color: #1B7A3D !important;
    text-decoration: none !important;
}
@media (max-width: 900px) {
    .htmlpage-container-main { padding: 1.5rem 1rem !important; }
    .htmlpage-content-div { padding: 1.5rem !important; border-radius: 14px !important; }
}

/* Teslimat sozlesme modal fix */
#sozlesmeModal {
    z-index: 10500 !important;
}
#sozlesmeModal .modal-dialog {
    max-width: 700px !important;
}
#sozlesmeModal .modal-content {
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2) !important;
}
#sozlesmeModal .modal-header {
    background: #f9fafb !important;
    border-radius: 16px 16px 0 0 !important;
}
#sozlesmeModal .modal-body {
    max-height: 60vh !important;
    overflow-y: auto !important;
    line-height: 1.7 !important;
}
.modal-backdrop.sozlesme-backdrop {
    z-index: 10499 !important;
}

/* Cart coupon fix */
.cart-right-div-coupon form {
    display: flex !important;
    gap: 0;
}
.cart-right-div-coupon input {
    flex: 1 !important;
    min-width: 0 !important;
}
.cart-right-div-coupon button {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

/* ===================================
   HOMEPAGE SHIPPING SECTION (dark timeline)
   =================================== */
.hp-ship {
    background: linear-gradient(135deg, #1B7A3D 0%, #145C2E 100%);
    padding: 3.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.hp-ship-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 3.5rem;
    position: relative;
    z-index: 1;
}

/* Left: Title */
.hp-ship-left {
    flex-shrink: 0;
    max-width: 260px;
}
.hp-ship-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.6rem;
    line-height: 1.3;
}
.hp-ship-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
    margin: 0;
}

/* Right: Timeline */
.hp-ship-timeline {
    flex: 1;
    display: flex;
    align-items: stretch;
    gap: 1.25rem;
    position: relative;
}
.hp-ship-line {
    display: none;
}
.hp-ship-item {
    flex: 1;
    position: relative;
}
.hp-ship-dot {
    width: 30px;
    height: 30px;
    background: #1B7A3D;
    border: 2px solid #2aa54d;
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    box-shadow: 0 0 12px rgba(42,165,77,0.35);
}
.hp-ship-content {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 1.25rem;
    backdrop-filter: blur(8px);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.hp-ship-content:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.35);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.hp-ship-content i {
    color: #a8f0be;
    font-size: 1.3rem;
    margin-bottom: 0.65rem;
    display: block;
}
.hp-ship-content strong {
    display: block;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.hp-ship-content span {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .hp-ship {
        padding: 2.5rem 1rem;
    }
    .hp-ship-inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .hp-ship-left {
        max-width: 100%;
    }
    .hp-ship-title {
        font-size: 1.35rem;
    }
    .hp-ship-timeline {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    .hp-ship-dot {
        margin: 0 auto 0.65rem;
    }
    .hp-ship-content {
        text-align: center;
    }
}

/* ===================================
   HOMEPAGE REVIEWS SECTION
   =================================== */
.hp-reviews {
    background: #f9faf9;
    padding: 4rem 1.5rem;
}
.hp-reviews-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.hp-reviews-head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.hp-reviews-medal {
    width: 80px;
    height: auto;
    display: block;
    margin: 0 auto 0.75rem;
    animation: medalBounce 3s ease-in-out infinite;
}
@keyframes medalBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hp-reviews-badge {
    display: inline-block;
    background: rgba(27,122,61,0.1);
    color: #1B7A3D;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
}
.hp-reviews-badge i {
    margin-right: 0.3rem;
    font-size: 0.7rem;
}
.hp-reviews-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
}
.hp-reviews-title em {
    font-style: normal;
    color: #1B7A3D;
}
.hp-reviews-sub {
    font-size: 0.95rem;
    color: #777;
    margin: 0;
}

/* Review Cards */
.hp-review-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s, transform 0.3s;
}
.hp-review-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.hp-review-stars {
    margin-bottom: 0.85rem;
    display: flex;
    gap: 2px;
}
.hp-review-stars i {
    color: #F59E0B;
    font-size: 0.85rem;
}
.hp-review-stars i.hp-star-empty {
    color: #ddd;
}
.hp-review-text {
    color: #444;
    font-size: 0.92rem;
    line-height: 1.6;
    flex: 1;
    margin: 0 0 1.25rem;
}
.hp-review-bottom {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}
.hp-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1B7A3D, #2aa54d);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 1px;
}
.hp-review-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.hp-review-go {
    width: 30px;
    height: 30px;
    background: #1B7A3D;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    margin-left: auto;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}
.hp-review-go:hover {
    background: #145e2f;
    transform: scale(1.1);
    color: #fff;
    text-decoration: none;
}
.hp-review-info strong {
    color: #1a1a1a;
    font-size: 0.88rem;
    font-weight: 600;
}
.hp-review-info span {
    color: #999;
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Swiper overrides for reviews */
.hp-reviews-slider {
    overflow: hidden;
    padding-bottom: 2.5rem;
}
.hp-reviews-slider .swiper-slide {
    height: auto;
}
.hp-reviews-pagination {
    text-align: center;
    margin-top: 0.5rem;
}
.hp-reviews-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s;
}
.hp-reviews-pagination .swiper-pagination-bullet-active {
    background: #1B7A3D;
    width: 24px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .hp-reviews {
        padding: 3rem 1rem;
    }
    .hp-reviews-title {
        font-size: 1.4rem;
    }
    .hp-review-card {
        padding: 1.25rem;
    }
}

/* ===================================
   SEARCH RESULTS PAGE - Professional Style
   =================================== */

/* Search page header */
.cat-detail-main-div .page-banner-main {
    background: linear-gradient(135deg, #1B7A3D 0%, #145C2E 100%);
    padding: 2.5rem 0;
}
.cat-detail-main-div .page-banner-h {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.cat-detail-main-div .page-banner-h i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}
.cat-detail-main-div .page-banner-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    transition: color 0.2s;
}
.cat-detail-main-div .page-banner-links a:hover {
    color: #fff;
}

/* Search results container */
.cat-detail-main-div .cat-detail-main-div-in {
    max-width: 1320px;
    padding: 2rem 1.25rem;
}

/* Search result count header */
.cat-detail-main-div .cat-right-header2 {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: 1px solid #e8f0ea;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    margin-bottom: 1.5rem;
}
.cat-detail-main-div .cat-right-head-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2e1f !important;
    margin-bottom: 0;
}

/* Sort/filter bar */
.cat-detail-main-div .cat-right-elements {
    border: 1px solid #e8f0ea;
    border-radius: 10px;
    background: #fff;
    padding: 0.75rem 1rem;
}
.cat-detail-main-div .cat-right-elements-out {
    margin-bottom: 1.5rem;
}

/* Left sidebar styling */
.cat-detail-main-div .cat-left-main {
    border-right: none;
    padding-right: 0;
    margin-right: 2rem;
}
.cat-detail-main-div .cat-left-box-main {
    background: #fff;
    border: 1px solid #e8f0ea;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}
.cat-detail-main-div .cat-left-box-h {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a2e1f;
    text-transform: none;
    letter-spacing: 0;
}
.cat-detail-main-div .cat-left-box-t {
    border-bottom: 1px solid #f0f4f1;
    padding: 0.5rem 0;
}

/* Product cards - 9:16 ratio */
.cat-detail-main-div .cat-detail-products {
    gap: 1rem;
    justify-content: flex-start;
}
.cat-detail-main-div .cat-detail-products-box {
    width: calc(25% - 0.75rem);
    margin: 0;
    padding: 0;
    border-radius: 12px;
    border: 1px solid #e8f0ea;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.cat-detail-main-div .cat-detail-products-box:hover {
    box-shadow: 0 8px 25px rgba(27,122,61,0.12);
    border-color: #c3e6cb;
    transform: translateY(-4px);
}

/* 9:16 image container */
.cat-detail-main-div .cat-detail-products-box-img {
    position: relative;
    width: 100%;
    padding-top: 177.78%; /* 9:16 ratio */
    margin-bottom: 0;
    overflow: hidden;
    background: #f9faf9;
}
.cat-detail-main-div .cat-detail-products-box-img a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-detail-main-div .cat-detail-products-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.cat-detail-main-div .cat-detail-products-box:hover .cat-detail-products-box-img img {
    transform: scale(1.06);
}

/* Free shipping badge */
.cat-detail-main-div .cat-detail-products-box-kargo {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #1B7A3D;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    z-index: 2;
}

/* Product info area */
.cat-detail-main-div .cat-detail-products-box-info {
    padding: 1rem 1rem 0.5rem;
}

/* Star ratings */
.cat-detail-main-div .cat-detail-products-box-stars {
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
}

/* Brand */
.cat-detail-main-div .cat-detail-products-box-marka {
    margin-bottom: 0.25rem;
}
.cat-detail-main-div .cat-detail-products-box-marka a {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: #1B7A3D !important;
}

/* Product title */
.cat-detail-main-div .cat-detail-products-box-h {
    min-height: auto;
    margin-bottom: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 500;
}
.cat-detail-main-div .cat-detail-products-box-h a {
    color: #1a2e1f !important;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Price area */
.cat-detail-main-div .cat-detail-products-box-fiyat {
    padding: 0.5rem 1rem 1rem;
}
.cat-detail-main-div .cat-detail-products-box-fiyat-eski {
    font-size: 0.75rem;
    color: #999 !important;
    text-decoration: line-through;
    margin-bottom: 0.15rem;
}
.cat-detail-main-div .cat-detail-products-box-fiyat-mevcut {
    font-size: 1rem;
    font-weight: 700;
    color: #1B7A3D !important;
}

/* Discount badge */
.cat-detail-main-div .cat-detail-products-box-indirim {
    background: #dc3545;
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

/* Cart action buttons (type 1 - side buttons) */
.cat-detail-main-div .cat-detail-products-box-cart-1 {
    position: absolute;
    right: 0.75rem;
    top: 0.75rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}
.cat-detail-main-div .cat-detail-products-box:hover .cat-detail-products-box-cart-1 {
    opacity: 1;
    transform: translateX(0);
}
.cat-detail-main-div .cat-detail-products-box-cart-1 button,
.cat-detail-main-div .cat-detail-products-box-cart-1 a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e8f0ea;
    color: #1a2e1f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.cat-detail-main-div .cat-detail-products-box-cart-1 button:hover,
.cat-detail-main-div .cat-detail-products-box-cart-1 a:hover {
    background: #1B7A3D;
    color: #fff;
    border-color: #1B7A3D;
}

/* Cart action buttons (type 2 - bottom bar) */
.cat-detail-main-div .cat-detail-products-box-cart-2 {
    border-top: 1px solid #e8f0ea;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cat-detail-main-div .cat-detail-products-box-cart-2 button {
    flex: 1;
    background: #1B7A3D;
    color: #fff;
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.cat-detail-main-div .cat-detail-products-box-cart-2 button:hover {
    background: #145C2E;
}
.cat-detail-main-div .cat-detail-products-box-cart-2 a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f5f7f5;
    color: #1a2e1f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.cat-detail-main-div .cat-detail-products-box-cart-2 a:hover {
    background: #e8f0ea;
    color: #1B7A3D;
}

/* "New" ribbon */
.cat-detail-main-div .ribbon span {
    background: #1B7A3D;
}

/* Out of stock overlay */
.cat-detail-main-div .product-grey-img {
    filter: grayscale(0.5);
    opacity: 0.7;
}

/* No results area */
.cat-detail-main-div .user_subpage_favorites_noitems {
    padding: 4rem 2rem;
}
.cat-detail-main-div .user_subpage_favorites_noitems i {
    font-size: 4rem;
    color: #c3e6cb;
}
.cat-detail-main-div .user_subpage_favorites_noitems_head {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2e1f;
}

/* Filter badges */
.cat-detail-main-div .cat-left-box-out-filterbox-out {
    margin-bottom: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Pagination */
.cat-detail-main-div .category-pagination-out {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8f0ea;
}
.cat-detail-main-div .pagination .page-link {
    border: 1px solid #e8f0ea;
    color: #1a2e1f;
    border-radius: 8px;
    margin: 0 0.15rem;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    transition: all 0.2s;
}
.cat-detail-main-div .pagination .page-item.active .page-link {
    background: #1B7A3D;
    border-color: #1B7A3D;
    color: #fff;
}
.cat-detail-main-div .pagination .page-link:hover {
    background: #e8f5ec;
    color: #1B7A3D;
    border-color: #c3e6cb;
}

/* Search page responsive */
@media (max-width: 1024px) {
    .cat-detail-main-div .cat-detail-products-box {
        width: calc(33.33% - 0.67rem);
    }
}
@media (max-width: 768px) {
    .cat-detail-main-div .cat-detail-main-div-in {
        padding: 1rem 0.75rem;
    }
    .cat-detail-main-div .cat-detail-products-box {
        width: calc(50% - 0.5rem);
    }
    .cat-detail-main-div .cat-detail-products-box-img {
        padding-top: 150%; /* slightly less tall on mobile */
    }
    .cat-detail-main-div .cat-detail-products-box-h {
        font-size: 0.8rem;
    }
    .cat-detail-main-div .cat-detail-products-box-fiyat-mevcut {
        font-size: 0.9rem;
    }
    .cat-detail-main-div .cat-right-header2 {
        border-radius: 8px;
        padding: 1rem;
    }
    .cat-detail-main-div .cat-right-head-text {
        font-size: 0.95rem;
    }
    .cat-detail-main-div .cat-detail-products-box-cart-1 {
        opacity: 1;
        transform: translateX(0);
    }
}
